|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/asn/pubmed.asn |
source navigation diff markup identifier search freetext search file search |
1 --$Revision: 6.0 $
2 --**********************************************************************
3 --
4 -- PUBMED data definitions
5 --
6 --**********************************************************************
7
8 NCBI-PubMed DEFINITIONS ::=
9 BEGIN
10
11 EXPORTS Pubmed-entry, Pubmed-url;
12
13 IMPORTS PubMedId FROM NCBI-Biblio
14 Medline-entry FROM NCBI-Medline;
15
16 Pubmed-entry ::= SEQUENCE { -- a PubMed entry
17 -- PUBMED records must include the PubMedId
18 pmid PubMedId,
19
20 -- Medline entry information
21 medent Medline-entry OPTIONAL,
22
23 -- Publisher name
24 publisher VisibleString OPTIONAL,
25
26 -- List of URL to publisher cite
27 urls SET OF Pubmed-url OPTIONAL,
28
29 -- Publisher's article identifier
30 pubid VisibleString OPTIONAL
31 }
32
33 Pubmed-url ::= SEQUENCE {
34 location VisibleString OPTIONAL, -- Location code
35 url VisibleString -- Selected URL for location
36 }
37
38 END
|
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |