tinyseq.asn

来自「ncbi源码」· ASN 代码 · 共 44 行

ASN
44
字号
---- ===========================================================================-- PRODUCTION $Log: tinyseq.asn,v $-- PRODUCTION Revision 1000.0  2003/10/29 21:40:15  gouriano-- PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.1-- PRODUCTION-- ===========================================================================----$Revision: 1000.0 $--**********************************************************************----  ASN.1 for a tiny Bioseq in XML--    basically a structured FASTA file with a few extras--    in this case we drop all modularity of components--      All ids are Optional - simpler structure, less checking--      Components of organism are hard coded - can't easily add or change--      sequence is just string whether DNA or protein--  by James Ostell, 2000----**********************************************************************NCBI-TSeq DEFINITIONS ::=BEGINTSeq ::= SEQUENCE {	seqtype ENUMERATED {		nucleotide (1),		protein (2) },	gi INTEGER OPTIONAL,	accver VisibleString OPTIONAL,	sid VisibleString OPTIONAL,	local VisibleString OPTIONAL,	taxid INTEGER OPTIONAL,	orgname VisibleString OPTIONAL,	defline VisibleString,	length INTEGER,	sequence VisibleString }TSeqSet ::= SEQUENCE OF TSeq    -- a bunch of themEND

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?