seqfeat.asn
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:20k
源码类别:

生物技术

开发平台:

C/C++

  1. --
  2. -- ===========================================================================
  3. -- PRODUCTION $Log: seqfeat.asn,v $
  4. -- PRODUCTION Revision 1000.0  2003/10/29 21:33:45  gouriano
  5. -- PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.9
  6. -- PRODUCTION
  7. -- ===========================================================================
  8. --
  9. --$Revision: 1000.0 $
  10. --**********************************************************************
  11. --
  12. --  NCBI Sequence Feature elements
  13. --  by James Ostell, 1990
  14. --  Version 3.0 - June 1994
  15. --
  16. --**********************************************************************
  17. NCBI-Seqfeat DEFINITIONS ::=
  18. BEGIN
  19. EXPORTS Seq-feat, Feat-id, Genetic-code;
  20. IMPORTS Gene-ref FROM NCBI-Gene
  21.         Prot-ref FROM NCBI-Protein
  22.         Org-ref FROM NCBI-Organism
  23.         BioSource FROM NCBI-BioSource
  24.         RNA-ref FROM NCBI-RNA
  25.         Seq-loc, Giimport-id FROM NCBI-Seqloc
  26.         Pubdesc, Numbering, Heterogen FROM NCBI-Sequence
  27.         Rsite-ref FROM NCBI-Rsite
  28.         Txinit FROM NCBI-TxInit
  29.         Pub-set FROM NCBI-Pub
  30.         Object-id, Dbtag, User-object FROM NCBI-General;
  31. --*** Feature identifiers ********************************
  32. --*
  33. Feat-id ::= CHOICE {
  34.     gibb INTEGER ,            -- geninfo backbone
  35.     giim Giimport-id ,        -- geninfo import
  36.     local Object-id ,         -- for local software use
  37.     general Dbtag }           -- for use by various databases
  38. --*** Seq-feat *******************************************
  39. --*  sequence feature generalization
  40. Seq-feat ::= SEQUENCE {
  41.     id Feat-id OPTIONAL ,
  42.     data SeqFeatData ,           -- the specific data
  43.     partial BOOLEAN OPTIONAL ,    -- incomplete in some way?
  44.     except BOOLEAN OPTIONAL ,     -- something funny about this?
  45.     comment VisibleString OPTIONAL ,
  46.     product Seq-loc OPTIONAL ,    -- product of process
  47.     location Seq-loc ,            -- feature made from
  48.     qual SEQUENCE OF Gb-qual OPTIONAL ,  -- qualifiers
  49.     title VisibleString OPTIONAL ,   -- for user defined label
  50.     ext User-object OPTIONAL ,    -- user defined structure extension
  51.     cit Pub-set OPTIONAL ,        -- citations for this feature
  52.     exp-ev ENUMERATED {           -- evidence for existence of feature
  53.         experimental (1) ,        -- any reasonable experimental check
  54.         not-experimental (2) } OPTIONAL , -- similarity, pattern, etc
  55.     xref SET OF SeqFeatXref OPTIONAL ,   -- cite other relevant features
  56.     dbxref SET OF Dbtag OPTIONAL ,  -- support for xref to other databases
  57.     pseudo BOOLEAN OPTIONAL ,     -- annotated on pseudogene?
  58.     except-text VisibleString OPTIONAL } -- explain if except=TRUE
  59. SeqFeatData ::= CHOICE {
  60.     gene Gene-ref ,
  61.     org Org-ref ,
  62.     cdregion Cdregion ,
  63.     prot Prot-ref ,
  64.     rna RNA-ref ,
  65.     pub Pubdesc ,              -- publication applies to this seq 
  66.     seq Seq-loc ,              -- to annotate origin from another seq
  67.     imp Imp-feat ,
  68.     region VisibleString,      -- named region (globin locus)
  69.     comment NULL ,             -- just a comment
  70.     bond ENUMERATED {
  71.         disulfide (1) ,
  72.         thiolester (2) ,
  73.         xlink (3) ,
  74.         thioether (4) ,
  75.         other (255) } ,
  76.     site ENUMERATED {
  77.         active (1) ,
  78.         binding (2) ,
  79.         cleavage (3) ,
  80.         inhibit (4) ,
  81.         modified (5),
  82.         glycosylation (6) ,
  83.         myristoylation (7) ,
  84.         mutagenized (8) ,
  85.         metal-binding (9) ,
  86.         phosphorylation (10) ,
  87.         acetylation (11) ,
  88.         amidation (12) ,
  89.         methylation (13) ,
  90.         hydroxylation (14) ,
  91.         sulfatation (15) ,
  92.         oxidative-deamination (16) ,
  93.         pyrrolidone-carboxylic-acid (17) ,
  94.         gamma-carboxyglutamic-acid (18) ,
  95.         blocked (19) ,
  96.         lipid-binding (20) ,
  97.         np-binding (21) ,
  98.         dna-binding (22) ,
  99.         signal-peptide (23) ,
  100.         transit-peptide (24) ,
  101.         transmembrane-region (25) ,
  102.         other (255) } ,
  103.     rsite Rsite-ref ,       -- restriction site  (for maps really)
  104.     user User-object ,      -- user defined structure
  105.     txinit Txinit ,         -- transcription initiation
  106.     num Numbering ,         -- a numbering system
  107.     psec-str ENUMERATED {   -- protein secondary structure
  108.         helix (1) ,         -- any helix
  109.         sheet (2) ,         -- beta sheet
  110.         turn  (3) } ,       -- beta or gamma turn
  111.     non-std-residue VisibleString ,  -- non-standard residue here in seq
  112.     het Heterogen ,         -- cofactor, prosthetic grp, etc, bound to seq
  113.     biosrc BioSource }
  114. SeqFeatXref ::= SEQUENCE {       -- both optional because can have one or both
  115.     id Feat-id OPTIONAL ,        -- the feature copied
  116.     data SeqFeatData OPTIONAL }  -- the specific data
  117.     
  118. --*** CdRegion ***********************************************
  119. --*
  120. --*  Instructions to translate from a nucleic acid to a peptide
  121. --*    conflict means it's supposed to translate but doesn't
  122. --*
  123. Cdregion ::= SEQUENCE {
  124.     orf BOOLEAN OPTIONAL ,             -- just an ORF ?
  125.     frame ENUMERATED {
  126.         not-set (0) ,                  -- not set, code uses one
  127.         one (1) ,
  128.         two (2) ,
  129.         three (3) } DEFAULT not-set ,      -- reading frame
  130.     conflict BOOLEAN OPTIONAL ,        -- conflict
  131.     gaps INTEGER OPTIONAL ,            -- number of gaps on conflict/except
  132.     mismatch INTEGER OPTIONAL ,        -- number of mismatches on above
  133.     code Genetic-code OPTIONAL ,       -- genetic code used
  134.     code-break SEQUENCE OF Code-break OPTIONAL ,   -- individual exceptions
  135.     stops INTEGER OPTIONAL }           -- number of stop codons on above
  136.                     -- each code is 64 cells long, in the order where
  137.                     -- T=0,C=1,A=2,G=3, TTT=0, TTC=1, TCA=4, etc
  138.                     -- NOTE: this order does NOT correspond to a Seq-data
  139.                     -- encoding.  It is "natural" to codon usage instead.
  140.                     -- the value in each cell is the AA coded for
  141.                     -- start= AA coded only if first in peptide
  142.                     --   in start array, if codon is not a legitimate start
  143.                     --   codon, that cell will have the "gap" symbol for
  144.                     --   that alphabet.  Otherwise it will have the AA
  145.                     --   encoded when that codon is used at the start.
  146. Genetic-code ::= SET OF CHOICE {
  147.     name VisibleString ,               -- name of a code
  148.     id INTEGER ,                       -- id in dbase
  149.     ncbieaa VisibleString ,            -- indexed to IUPAC extended
  150.     ncbi8aa OCTET STRING ,             -- indexed to NCBI8aa
  151.     ncbistdaa OCTET STRING ,           -- indexed to NCBIstdaa
  152.     sncbieaa VisibleString ,            -- start, indexed to IUPAC extended
  153.     sncbi8aa OCTET STRING ,             -- start, indexed to NCBI8aa
  154.     sncbistdaa OCTET STRING }           -- start, indexed to NCBIstdaa
  155. Code-break ::= SEQUENCE {              -- specific codon exceptions
  156.     loc Seq-loc ,                      -- location of exception
  157.     aa CHOICE {                        -- the amino acid
  158.         ncbieaa INTEGER ,              -- ASCII value of NCBIeaa code
  159.         ncbi8aa INTEGER ,              -- NCBI8aa code
  160.         ncbistdaa INTEGER } }           -- NCBIstdaa code
  161. Genetic-code-table ::= SET OF Genetic-code     -- table of genetic codes
  162. --*** Import ***********************************************
  163. --*
  164. --*  Features imported from other databases
  165. --*
  166. Imp-feat ::= SEQUENCE {
  167.     key VisibleString ,
  168.     loc VisibleString OPTIONAL ,         -- original location string
  169.     descr VisibleString OPTIONAL }       -- text description
  170. Gb-qual ::= SEQUENCE {
  171.     qual VisibleString ,
  172.     val VisibleString }
  173. END 
  174. --**********************************************************************
  175. --
  176. --  NCBI Restriction Sites
  177. --  by James Ostell, 1990
  178. --  version 0.8
  179. --
  180. --**********************************************************************
  181. NCBI-Rsite DEFINITIONS ::=
  182. BEGIN
  183. EXPORTS Rsite-ref;
  184. IMPORTS Dbtag FROM NCBI-General;
  185. Rsite-ref ::= CHOICE {
  186.     str VisibleString ,     -- may be unparsable
  187.     db  Dbtag }             -- pointer to a restriction site database
  188. END
  189. --**********************************************************************
  190. --
  191. --  NCBI RNAs
  192. --  by James Ostell, 1990
  193. --  version 0.8
  194. --
  195. --**********************************************************************
  196. NCBI-RNA DEFINITIONS ::=
  197. BEGIN
  198. EXPORTS RNA-ref, Trna-ext;
  199. IMPORTS Seq-loc FROM NCBI-Seqloc;
  200. --*** rnas ***********************************************
  201. --*
  202. --*  various rnas
  203. --*
  204.                          -- minimal RNA sequence
  205. RNA-ref ::= SEQUENCE {
  206.     type ENUMERATED {            -- type of RNA feature
  207.         unknown (0) ,
  208.         premsg (1) ,
  209.         mRNA (2) ,
  210.         tRNA (3) ,
  211.         rRNA (4) ,
  212.         snRNA (5) ,
  213.         scRNA (6) ,
  214.         snoRNA (7) ,
  215.         other (255) } ,
  216.     pseudo BOOLEAN OPTIONAL ,  
  217.     ext CHOICE {
  218.         name VisibleString ,        -- for naming "other" type
  219.         tRNA Trna-ext } OPTIONAL }  -- for tRNAs
  220. Trna-ext ::= SEQUENCE {                 -- tRNA feature extensions
  221.     aa CHOICE {                         -- aa this carries
  222.         iupacaa INTEGER ,
  223.         ncbieaa INTEGER ,
  224.         ncbi8aa INTEGER ,
  225.         ncbistdaa INTEGER } OPTIONAL ,
  226.     codon SET OF INTEGER OPTIONAL ,     -- codon(s) as in Genetic-code
  227. anticodon Seq-loc OPTIONAL }        -- location of anticodon
  228. END
  229. --**********************************************************************
  230. --
  231. --  NCBI Genes
  232. --  by James Ostell, 1990
  233. --  version 0.8
  234. --
  235. --**********************************************************************
  236. NCBI-Gene DEFINITIONS ::=
  237. BEGIN
  238. EXPORTS Gene-ref;
  239. IMPORTS Dbtag FROM NCBI-General;
  240. --*** Gene ***********************************************
  241. --*
  242. --*  reference to a gene
  243. --*
  244. Gene-ref ::= SEQUENCE {
  245.     locus VisibleString OPTIONAL ,        -- Official gene symbol
  246.     allele VisibleString OPTIONAL ,       -- Official allele designation
  247.     desc VisibleString OPTIONAL ,         -- descriptive name
  248.     maploc VisibleString OPTIONAL ,       -- descriptive map location
  249.     pseudo BOOLEAN DEFAULT FALSE ,        -- pseudogene
  250.     db SET OF Dbtag OPTIONAL ,            -- ids in other dbases
  251.     syn SET OF VisibleString OPTIONAL ,   -- synonyms for locus
  252.     locus-tag VisibleString OPTIONAL }    -- systematic gene name (e.g., MI0001, ORF0069)
  253. END
  254. --**********************************************************************
  255. --
  256. --  NCBI Organism
  257. --  by James Ostell, 1994
  258. --  version 3.0
  259. --
  260. --**********************************************************************
  261. NCBI-Organism DEFINITIONS ::=
  262. BEGIN
  263. EXPORTS Org-ref;
  264. IMPORTS Dbtag FROM NCBI-General;
  265. --*** Org-ref ***********************************************
  266. --*
  267. --*  Reference to an organism
  268. --*     defines only the organism.. lower levels of detail for biological
  269. --*     molecules are provided by the Source object
  270. --*
  271. Org-ref ::= SEQUENCE {
  272.     taxname VisibleString OPTIONAL ,   -- preferred formal name
  273.     common VisibleString OPTIONAL ,    -- common name
  274.     mod SET OF VisibleString OPTIONAL , -- unstructured modifiers
  275.     db SET OF Dbtag OPTIONAL ,         -- ids in taxonomic or culture dbases
  276.     syn SET OF VisibleString OPTIONAL ,  -- synonyms for taxname or common
  277.     orgname OrgName OPTIONAL }
  278.     
  279. OrgName ::= SEQUENCE {
  280.     name CHOICE {
  281.         binomial BinomialOrgName ,         -- genus/species type name
  282.         virus VisibleString ,              -- virus names are different
  283.         hybrid MultiOrgName ,              -- hybrid between organisms
  284.         namedhybrid BinomialOrgName ,      -- some hybrids have genus x species name
  285.         partial PartialOrgName } OPTIONAL , -- when genus not known
  286.     attrib VisibleString OPTIONAL ,        -- attribution of name
  287.     mod SEQUENCE OF OrgMod OPTIONAL ,
  288.     lineage VisibleString OPTIONAL ,       -- lineage with semicolon separators
  289.     gcode INTEGER OPTIONAL ,               -- genetic code (see CdRegion)
  290.     mgcode INTEGER OPTIONAL ,              -- mitochondrial genetic code
  291.     div VisibleString OPTIONAL }           -- GenBank division code
  292.     
  293. OrgMod ::= SEQUENCE {
  294.     subtype INTEGER {
  295.         strain (2) ,
  296.         substrain (3) ,
  297.         type (4) ,
  298.         subtype (5) ,
  299.         variety (6) ,
  300.         serotype (7) ,
  301.         serogroup (8) ,
  302.         serovar (9) ,
  303.         cultivar (10) ,
  304.         pathovar (11) ,
  305.         chemovar (12) ,
  306.         biovar (13) ,
  307.         biotype (14) ,
  308.         group (15) ,
  309.         subgroup (16) ,
  310.         isolate (17) ,
  311.         common (18) ,
  312.         acronym (19) ,
  313.         dosage (20) , -- chromosome dosage of hybrid
  314.         nat-host (21) , -- natural host of this specimen
  315.         sub-species (22) ,
  316.         specimen-voucher (23) ,
  317.         authority (24) ,
  318.         forma (25) ,
  319.         forma-specialis (26) ,
  320.         ecotype (27) ,
  321.         synonym (28) ,
  322.         anamorph (29) ,
  323.         teleomorph (30) ,
  324.         breed (31) ,
  325.         gb-acronym (32) ,       -- used by taxonomy database
  326.         gb-anamorph (33) ,      -- used by taxonomy database
  327.         gb-synonym (34) ,       -- used by taxonomy database
  328.         old-lineage (253) ,
  329.         old-name (254) ,
  330.         other (255) } ,         -- ASN5: old-name (254) will be added to next spec
  331.     subname VisibleString ,
  332.     attrib VisibleString OPTIONAL }  -- attribution/source of name
  333. BinomialOrgName ::= SEQUENCE {
  334.     genus VisibleString ,               -- required
  335.     species VisibleString OPTIONAL ,    -- species required if subspecies used
  336.     subspecies VisibleString OPTIONAL }
  337. MultiOrgName ::= SEQUENCE OF OrgName   -- the first will be used to assign division
  338. PartialOrgName ::= SEQUENCE OF TaxElement  -- when we don't know the genus
  339. TaxElement ::= SEQUENCE {
  340.     fixed-level INTEGER {
  341.        other (0) ,                     -- level must be set in string
  342.        family (1) ,
  343.        order (2) ,
  344.        class (3) } ,
  345.     level VisibleString OPTIONAL ,
  346.     name VisibleString }
  347. END
  348. --**********************************************************************
  349. --
  350. --  NCBI BioSource
  351. --  by James Ostell, 1994
  352. --  version 3.0
  353. --
  354. --**********************************************************************
  355. NCBI-BioSource DEFINITIONS ::=
  356. BEGIN
  357. EXPORTS BioSource;
  358. IMPORTS Org-ref FROM NCBI-Organism;
  359. --********************************************************************
  360. --
  361. -- BioSource gives the source of the biological material
  362. --   for sequences
  363. --
  364. --********************************************************************
  365. BioSource ::= SEQUENCE {
  366.     genome INTEGER {  -- biological context
  367.         unknown (0) ,
  368.         genomic (1) ,
  369.         chloroplast (2) ,
  370.         chromoplast (3) ,
  371.         kinetoplast (4) ,
  372.         mitochondrion (5) ,
  373.         plastid (6) ,
  374.         macronuclear (7) ,
  375.         extrachrom (8) ,
  376.         plasmid (9) ,
  377.         transposon (10) ,
  378.         insertion-seq (11) ,
  379.         cyanelle (12) ,
  380.         proviral (13) ,
  381.         virion (14) ,
  382.         nucleomorph (15) ,
  383.         apicoplast (16) ,
  384.         leucoplast (17) ,
  385.         proplastid (18) ,
  386.         endogenous-virus (19)
  387.       } DEFAULT unknown ,
  388.                                        -- 4 more genome values coming
  389.                                        -- nucleomorph (15)
  390.                                        -- apicoplast (16)
  391.                                        -- leucoplast (17)
  392.                                        -- proplastid (18)
  393.     origin INTEGER {
  394.       unknown (0) ,
  395.       natural (1) ,                    -- normal biological entity
  396.       natmut (2) ,                     -- naturally occurring mutant
  397.       mut (3) ,                        -- artificially mutagenized
  398.       artificial (4) ,                 -- artificially engineered
  399.       synthetic (5) ,                  -- purely synthetic
  400.       other (255) } DEFAULT unknown , 
  401.     org Org-ref ,
  402.     subtype SEQUENCE OF SubSource OPTIONAL ,
  403.     is-focus NULL OPTIONAL }   -- to distinguish biological focus
  404. SubSource ::= SEQUENCE {
  405.     subtype INTEGER {
  406.         chromosome (1) ,
  407.         map (2) ,
  408.         clone (3) ,
  409.         subclone (4) ,
  410.         haplotype (5) ,
  411.         genotype (6) ,
  412.         sex (7) ,
  413.         cell-line (8) ,
  414.         cell-type (9) ,
  415.         tissue-type (10) ,
  416.         clone-lib (11) ,
  417.         dev-stage (12) ,
  418.         frequency (13) ,
  419.         germline (14) ,
  420.         rearranged (15) ,
  421.         lab-host (16) ,
  422.         pop-variant (17) ,
  423.         tissue-lib (18) ,
  424.         plasmid-name (19) ,
  425.         transposon-name (20) ,
  426.         insertion-seq-name (21) ,
  427.         plastid-name (22) ,
  428.         country (23) ,
  429.         segment (24) ,
  430.         endogenous-virus-name (25) ,
  431.         transgenic (26) ,
  432.         environmental-sample (27) ,
  433.         isolation-source (28) ,
  434.         other (255) } ,
  435.     name VisibleString ,
  436.     attrib VisibleString OPTIONAL }    -- attribution/source of this name
  437.         
  438. END
  439. --**********************************************************************
  440. --
  441. --  NCBI Protein
  442. --  by James Ostell, 1990
  443. --  version 0.8
  444. --
  445. --**********************************************************************
  446. NCBI-Protein DEFINITIONS ::=
  447. BEGIN
  448. EXPORTS Prot-ref;
  449. IMPORTS Dbtag FROM NCBI-General;
  450. --*** Prot-ref ***********************************************
  451. --*
  452. --*  Reference to a protein name
  453. --*
  454. Prot-ref ::= SEQUENCE {
  455.     name SET OF VisibleString OPTIONAL ,      -- protein name
  456.     desc VisibleString OPTIONAL ,      -- description (instead of name)
  457.     ec SET OF VisibleString OPTIONAL , -- E.C. number(s)
  458.     activity SET OF VisibleString OPTIONAL ,  -- activities
  459.     db SET OF Dbtag OPTIONAL ,         -- ids in other dbases
  460.     processed ENUMERATED {             -- processing status
  461.        not-set (0) ,
  462.        preprotein (1) ,
  463.        mature (2) ,
  464.        signal-peptide (3) ,
  465.        transit-peptide (4) } DEFAULT not-set }
  466. END 
  467. --********************************************************************
  468. --
  469. --  Transcription Initiation Site Feature Data Block
  470. --  James Ostell, 1991
  471. --  Philip Bucher, David Ghosh
  472. --  version 1.1
  473. --
  474. --  
  475. --
  476. --********************************************************************
  477. NCBI-TxInit DEFINITIONS ::=
  478. BEGIN
  479. EXPORTS Txinit;
  480. IMPORTS Gene-ref FROM NCBI-Gene
  481.         Prot-ref FROM NCBI-Protein
  482.         Org-ref FROM NCBI-Organism;
  483. Txinit ::= SEQUENCE {
  484.     name VisibleString ,    -- descriptive name of initiation site
  485.     syn SEQUENCE OF VisibleString OPTIONAL ,   -- synonyms
  486.     gene SEQUENCE OF Gene-ref OPTIONAL ,  -- gene(s) transcribed
  487.     protein SEQUENCE OF Prot-ref OPTIONAL ,   -- protein(s) produced
  488.     rna SEQUENCE OF VisibleString OPTIONAL ,  -- rna(s) produced
  489.     expression VisibleString OPTIONAL ,  -- tissue/time of expression
  490.     txsystem ENUMERATED {       -- transcription apparatus used at this site
  491.         unknown (0) ,
  492.         pol1 (1) ,      -- eukaryotic Pol I
  493.         pol2 (2) ,      -- eukaryotic Pol II
  494.         pol3 (3) ,      -- eukaryotic Pol III
  495.         bacterial (4) ,
  496.         viral (5) ,
  497.         rna (6) ,       -- RNA replicase
  498.         organelle (7) ,
  499.         other (255) } ,
  500.     txdescr VisibleString OPTIONAL ,   -- modifiers on txsystem
  501.     txorg Org-ref OPTIONAL ,  -- organism supplying transcription apparatus
  502.     mapping-precise BOOLEAN DEFAULT FALSE ,  -- mapping precise or approx
  503.     location-accurate BOOLEAN DEFAULT FALSE , -- does Seq-loc reflect mapping
  504.     inittype ENUMERATED {
  505.         unknown (0) ,
  506.         single (1) ,
  507.         multiple (2) ,
  508.         region (3) } OPTIONAL ,
  509.     evidence SET OF Tx-evidence OPTIONAL }
  510. Tx-evidence ::= SEQUENCE {
  511.     exp-code ENUMERATED {
  512.         unknown (0) ,    
  513.         rna-seq (1) ,   -- direct RNA sequencing
  514.         rna-size (2) ,  -- RNA length measurement
  515.         np-map (3) ,    -- nuclease protection mapping with homologous sequence ladder
  516.         np-size (4) ,   -- nuclease protected fragment length measurement
  517.         pe-seq (5) ,    -- dideoxy RNA sequencing 
  518.         cDNA-seq (6) ,  -- full-length cDNA sequencing
  519.         pe-map (7) ,    -- primer extension mapping with homologous sequence ladder    
  520.         pe-size (8) ,   -- primer extension product length measurement
  521.         pseudo-seq (9) , -- full-length processed pseudogene sequencing
  522.         rev-pe-map (10) ,   -- see NOTE (1) below
  523.         other (255) } ,
  524.     expression-system ENUMERATED {
  525.         unknown (0) ,
  526.         physiological (1) ,
  527.         in-vitro (2) ,
  528.         oocyte (3) ,
  529.         transfection (4) ,
  530.         transgenic (5) ,
  531.         other (255) } DEFAULT physiological ,
  532.     low-prec-data BOOLEAN DEFAULT FALSE ,
  533.     from-homolog BOOLEAN DEFAULT FALSE }     -- experiment actually done on
  534.                                              --  close homolog
  535.     -- NOTE (1) length measurement of a reverse direction primer-extension
  536.     --          product (blocked  by  RNA  5'end)  by  comparison with
  537.     --          homologous sequence ladder (J. Mol. Biol. 199, 587)
  538.     
  539. END