~ubuntu-branches/ubuntu/warty/ncbi-tools6/warty

« back to all changes in this revision

Viewing changes to network/medarch/server/medfield.h

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2002-04-04 22:13:09 UTC
  • Revision ID: james.westby@ubuntu.com-20020404221309-vfze028rfnlrldct
Tags: upstream-6.1.20011220a
ImportĀ upstreamĀ versionĀ 6.1.20011220a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
        medline.h               Process Medline database fields
 
3
 
 
4
        MODULE: medline
 
5
        FILES:  medline.c and medline.h (this one).
 
6
 
 
7
        The procedures in module medline support the decoding of the
 
8
        data the Medline database elements.  These are rather general
 
9
        extraction methods as opposed to more complex extractions
 
10
        which are highly field specific (such as the Comment field).
 
11
 
 
12
        Edit History:
 
13
            16 August 1991 - Rand S. Huntzinger
 
14
                Added GetCharsetErrors();
 
15
 
 
16
        Work started: 25 July 1991 - Rand S. Huntzinger, NLM/NCBI.
 
17
*
 
18
*
 
19
* RCS Modification History:
 
20
* $Log: medfield.h,v $
 
21
* Revision 6.0  1997/08/25 18:36:31  madden
 
22
* Revision changed to 6.0
 
23
*
 
24
* Revision 1.2  1995/05/17 17:55:08  epstein
 
25
* add RCS log revision history
 
26
*
 
27
*/
 
28
 
 
29
#ifndef DEFS_MODULE_MEDLINE
 
30
#define DEFS_MODULE_MEDLINE
 
31
 
 
32
/* Define the Medline unit record field element types */
 
33
 
 
34
#define MEDLINE_DA      100     /* DATE OF ENTRY                     */
 
35
#define MEDLINE_RO      101     /* RECORD ORIGINATOR                 */
 
36
#define MEDLINE_LR      102     /* LAST REVISION DATE                */
 
37
#define MEDLINE_CU      103     /* CLASSUP DATE                      */
 
38
#define MEDLINE_RN      261     /* CAS REGISTRY NUMBER               */
 
39
#define MEDLINE_IS      301     /* INTL STAND SER NO                 */
 
40
#define MEDLINE_TA      305     /* TITLE ABBREVIATION                */
 
41
#define MEDLINE_LA      306     /* LANGUAGE                          */
 
42
#define MEDLINE_ZN      308     /* MESH Z TREE NUMBER                */
 
43
#define MEDLINE_JC      320     /* JOURNAL TITLE CODE                */
 
44
#define MEDLINE_PY      323     /* INDEXING PRIORITY                 */
 
45
#define MEDLINE_SB      324     /* JOURNAL SUBSET                    */
 
46
#define MEDLINE_GS      328     /* GENE SYMBOL                       */
 
47
#define MEDLINE_LI      329     /* SPECIAL LIST IND                  */
 
48
#define MEDLINE_UI      350     /* UNIQUE IDENTIFIER                 */
 
49
#define MEDLINE_MH      351     /* MESH HEADING                      */
 
50
#define MEDLINE_TI      352     /* TITLE                             */
 
51
#define MEDLINE_PG      353     /* PAGINATION                        */
 
52
#define MEDLINE_DP      354     /* DATE OF PUBLICATION               */
 
53
#define MEDLINE_PT      360     /* PUBLICATION TYPE                  */
 
54
#define MEDLINE_MRI     368     /* MACHINE-READABLE ID               */
 
55
#define MEDLINE_NP      369     /* NOT FOR PUBLICATION               */
 
56
#define MEDLINE_AB      370     /* ABSTRACT                          */
 
57
#define MEDLINE_AA      371     /* ABSTRACT AUTHOR                   */
 
58
#define MEDLINE_AU      372     /* AUTHOR                            */
 
59
#define MEDLINE_IP      373     /* ISSUE/PART/SUPP                   */
 
60
#define MEDLINE_NI      376     /* NO-AUTHOR INDICATOR               */
 
61
#define MEDLINE_RF      377     /* NUMBER OF REFS                    */
 
62
#define MEDLINE_AD      378     /* ADDRESS                           */
 
63
#define MEDLINE_PS      379     /* PERSONAL NAME AS SUBJECT          */
 
64
#define MEDLINE_TT      380     /* TRANSLIT/VERNAC TITLE             */
 
65
#define MEDLINE_VI      381     /* VOLUME/ISSUE                      */
 
66
#define MEDLINE_EA      382     /* ENGLISH ABSTRACT INDEX            */
 
67
#define MEDLINE_EM      383     /* ENTRY MONTH                       */
 
68
#define MEDLINE_CM      440     /* COMMENTS                          */
 
69
#define MEDLINE_CA      525     /* CALL NUMBER                       */
 
70
#define MEDLINE_SI      606     /* SECONDARY SOURCE ID               */
 
71
#define MEDLINE_ID      640     /* ID NUMBER                         */
 
72
 
 
73
/* Define the codes specific to identifying Monographs in the JC/TA fields */
 
74
 
 
75
#define MEDLINE_MONOGRAPH_JC    "IDM"
 
76
#define MEDLINE_MONOGRAPH_TA    "(Monograph)"
 
77
 
 
78
#endif  /* DEFS_MODULE_MEDLINE */