summaryrefslogtreecommitdiff
path: root/asn/seq.asn
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2005-03-23 20:49:08 +0000
committerAaron M. Ucko <ucko@debian.org>2005-03-23 20:49:08 +0000
commitee1ab2cbbf85d439732174f321efc1114f19f749 (patch)
tree4c803451e8507be875a478b39bdd31702f0ea281 /asn/seq.asn
parentc36b9906c3ef791147b3643f9e485cc02568819f (diff)
Load ncbi (6.1.20020828) into ncbi-tools6/branches/upstream/current.
Diffstat (limited to 'asn/seq.asn')
-rw-r--r--asn/seq.asn12
1 files changed, 10 insertions, 2 deletions
diff --git a/asn/seq.asn b/asn/seq.asn
index 49c55d0d..0c397967 100644
--- a/asn/seq.asn
+++ b/asn/seq.asn
@@ -1,4 +1,4 @@
---$Revision: 6.5 $
+--$Revision: 6.6 $
--**********************************************************************
--
-- NCBI Sequence elements
@@ -127,13 +127,21 @@ MolInfo ::= SEQUENCE {
other (255) } -- use Source.techexp
DEFAULT unknown ,
techexp VisibleString OPTIONAL , -- explanation if tech not enough
+ --
+ -- Completeness is not indicated in most records. For genomes, assume
+ -- the sequences are incomplete unless specifically marked as complete.
+ -- For mRNAs, assume the ends are not known exactly unless marked as
+ -- having the left or right end.
+ --
completeness INTEGER {
unknown (0) ,
complete (1) , -- complete biological entity
partial (2) , -- partial but no details given
- no-left (3), -- missing 5' or NH3 end
+ no-left (3) , -- missing 5' or NH3 end
no-right (4) , -- missing 3' or COOH end
no-ends (5) , -- missing both ends
+ has-left (6) , -- 5' or NH3 end present
+ has-right (7) , -- 3' or COOH end present
other (255) } DEFAULT unknown }