medlars.asn
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
- --
- -- ===========================================================================
- -- PRODUCTION $Log: medlars.asn,v $
- -- PRODUCTION Revision 1000.0 2003/10/29 21:18:15 gouriano
- -- PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.0
- -- PRODUCTION
- -- ===========================================================================
- --
- --$Revision: 1000.0 $
- --**********************************************************************
- --
- -- MEDLARS data definitions
- -- Grigoriy Starchenko, 1997
- --
- --**********************************************************************
- NCBI-Medlars DEFINITIONS ::=
- BEGIN
- EXPORTS Medlars-entry, Medlars-record;
- IMPORTS PubMedId FROM NCBI-Biblio;
- Medlars-entry ::= SEQUENCE { -- a MEDLARS entry
- pmid PubMedId, -- All entries in PubMed must have it
- muid INTEGER OPTIONAL, -- Medline(OCCS) id
- recs SET OF Medlars-record -- List of Medlars records
- }
- Medlars-record ::= SEQUENCE {
- code INTEGER, -- Unit record field type integer form
- abbr VisibleString OPTIONAL, -- Unit record field type abbreviation form
- data VisibleString -- Unit record data
- }
- END