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

生物技术

开发平台:

C/C++

  1. --
  2. -- ===========================================================================
  3. -- PRODUCTION $Log: proj.asn,v $
  4. -- PRODUCTION Revision 1000.0  2003/10/29 21:25:17  gouriano
  5. -- PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.3
  6. -- PRODUCTION
  7. -- ===========================================================================
  8. --
  9. --$Revision: 1000.0 $
  10. --****************************************************************
  11. --
  12. --  NCBI Project Definition Module
  13. --  by Jim Ostell and Jonathan Kans, 1998
  14. --
  15. --****************************************************************
  16. NCBI-Project DEFINITIONS ::=
  17. BEGIN
  18. EXPORTS Project, Project-item;
  19. IMPORTS Date FROM NCBI-General
  20.         PubMedId FROM NCBI-Biblio
  21.         Seq-id, Seq-loc FROM NCBI-Seqloc
  22.         Seq-annot, Pubdesc FROM NCBI-Sequence
  23.         Seq-entry FROM NCBI-Seqset
  24.         Pubmed-entry FROM NCBI-PubMed;
  25. Project ::= SEQUENCE {
  26.     descr Project-descr OPTIONAL ,
  27.     data Project-item }
  28. Project-item ::= CHOICE {
  29.     pmuid SET OF INTEGER ,
  30.     protuid SET OF INTEGER ,
  31.     nucuid SET OF INTEGER ,
  32.     sequid SET OF INTEGER ,
  33.     genomeuid SET OF INTEGER ,
  34.     structuid SET OF INTEGER ,
  35.     pmid SET OF PubMedId ,
  36.     protid SET OF Seq-id ,
  37.     nucid SET OF Seq-id ,
  38.     seqid SET OF Seq-id ,
  39.     genomeid SET OF Seq-id ,
  40.     structid NULL ,
  41.     pment SET OF Pubmed-entry ,
  42.     protent SET OF Seq-entry ,
  43.     nucent SET OF Seq-entry ,
  44.     seqent SET OF Seq-entry ,
  45.     genomeent SET OF Seq-entry ,
  46.     structent NULL ,
  47.     seqannot SET OF Seq-annot ,
  48.     loc SET OF Seq-loc ,
  49.     proj SET OF Project
  50. }
  51. Project-descr ::= SEQUENCE {
  52.     id SET OF Project-id ,
  53.     name VisibleString OPTIONAL ,
  54.     descr SET OF Projdesc OPTIONAL }
  55. Projdesc ::= CHOICE {
  56.     pub Pubdesc ,
  57.     date Date ,
  58.     comment VisibleString ,
  59.     title VisibleString
  60. }
  61. Project-id ::= VisibleString
  62. END