This file is indexed.

/usr/lib/emboss/include/ajtax.h is in emboss-lib 6.3.1-6ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#ifdef __cplusplus
extern "C"
{
#endif

#ifndef ajtax_h
#define ajtax_h

#include "ajax.h"




/* @data AjPTax ***************************************************************
**
** NCBI taxonomy node
**
** @alias AjSTax
** @alias AjOTax
**
** @attr Taxid            [ajuint]  Taxon node id
** @attr Parent           [ajuint]  Parent taxid
** @attr Divid            [unsigned char]  Division id
** @attr Gencode          [unsigned char]  Genetic code id
** @attr Mitocode         [unsigned char]  Mitochondrial genetic code id
** @attr Padchar          [unsigned char]  Padding to alignment boundary
** @attr Flags            [ajuint]  Flags:
**                            if node inherits division from parent
**                            if node inherits genetic code from parent
**                            if node inherits mito gencode from parent
**                            if name is suppressed in GB entry lineage
**                            if this subtree has no sequence data yet
** @attr Rank             [AjPStr]  Rank in taxomony hierarchy
** @attr Emblcode         [AjPStr]  EMBL locus name prefix (not unique)
** @attr Comment          [AjPStr]  Comment
** @attr Namelist         [AjPList] Names list
** @attr Citations        [AjPList] Citation id list
**
******************************************************************************/

typedef struct AjSTax
{
    ajuint Taxid;
    ajuint Parent;
    unsigned char Divid;
    unsigned char Gencode;
    unsigned char Mitocode;
    unsigned char Padchar;
    ajuint Flags;
    AjPStr Rank;
    AjPStr Emblcode;
    AjPStr Comment;
    AjPList Namelist;
    AjPList Citations;
} AjOTax;
#define AjPTax AjOTax*




/* @data AjPTaxName *********************************************************
**
** NCBI taxonomy node name, listed within AjPTax
**
** @alias AjSTaxName
** @alias AjOTaxName
**
** @attr Name          [AjPStr] Name of taxon node
** @attr UniqueName    [AjPStr] Unique name of taxon node
** @attr NameClass     [AjPStr] Synonym, common name, etc.
**
******************************************************************************/

typedef struct AjSTaxName
{
    AjPStr Name;
    AjPStr UniqueName;
    AjPStr NameClass;
} AjOTaxName;
#define AjPTaxName AjOTaxName*




/* @data AjPTaxDiv *********************************************************
**
** NCBI taxonomy division
**
** @alias AjSTaxDiv
** @alias AjOTaxDiv
**
** @attr GbCode       [AjPStr] GenBank division code (three characters)
** @attr GbName       [AjPStr] GenBank division name
** @attr Comments     [AjPStr] Comments
** @attr Divid        [ajuint] Taxonomy division id
** @attr Padding      [ajuint] Padding to alignment boundary
**
******************************************************************************/

typedef struct AjSTaxDiv
{
    AjPStr GbCode;
    AjPStr GbName;
    AjPStr Comments;
    ajuint Divid;
    ajuint Padding;
} AjOTaxDiv;
#define AjPTaxDiv AjOTaxDiv*




/* @data AjPTaxCode *********************************************************
**
** NCBI taxonomy genetic code
**
** @alias AjSTaxCode
** @alias AjOTaxCode
**
** @attr Abbrev     [AjPStr] Genetic code name abbreviation
** @attr Name       [AjPStr] Genetic code full name
** @attr Trans      [AjPStr] Amino acids for each codon
** @attr Starts     [AjPStr] Start codons
** @attr Gencode    [ajuint]  NCBI genetic code id
** @attr Padding    [ajuint]  Padding to alignment boundary
**
******************************************************************************/

typedef struct AjSTaxCode
{

    AjPStr Abbrev;
    AjPStr Name;
    AjPStr Trans;
    AjPStr Starts;
    ajuint Gencode;
    ajuint Padding;
} AjOTaxCode;
#define AjPTaxCode AjOTaxCode*




/* @data AjPTaxDel *********************************************************
**
** NCBI taxonomy deleted node
**
** @alias AjSTaxDel
** @alias AjOTaxDel
**
** @attr Taxid            [ajuint]  Taxon node id
**
******************************************************************************/

typedef struct AjSTaxDel
{
    ajuint Taxid;
} AjOTaxDel;
#define AjPTaxDel AjOTaxDel*




/* @data AjPTaxMerge *********************************************************
**
** NCBI taxonomy mergednode
**
** @alias AjSTaxMerge
** @alias AjOTaxMerge
**
** @attr Taxid            [ajuint]  Oldaxon node id
** @attr Mergeid          [ajuint]  Merged taxon node id
**
******************************************************************************/

typedef struct AjSTaxMerge
{
    ajuint Taxid;
    ajuint Mergeid;
} AjOTaxMerge;
#define AjPTaxMerge AjOTaxMerge*




/* @data AjPTaxCit *********************************************************
**
** NCBI taxonomy citation, listed within AjPTax
**
** @alias AjSTaxCit
** @alias AjOTaxCit
**
** @attr Citid      [ajuint] Taxonomy citation id
** @attr Pubmed     [ajuint] PubMed id (0 if not found)
** @attr Medline    [ajuint] Medline id (0 if not found)
** @attr Refcount   [ajuint] Reference count
** @attr Key      [AjPStr] Citation key
** @attr Url [AjPStr] Url associated with citation
** @attr Text [AjPStr] Text, usually article name and authors
**
******************************************************************************/

typedef struct AjSTaxCit
{
    ajuint Citid;
    ajuint Pubmed;
    ajuint Medline;
    ajuint Refcount;
    AjPStr Key;
    AjPStr Url;
    AjPStr Text;
} AjOTaxCit;
#define AjPTaxCit AjOTaxCit*




/*
** Prototype definitions
*/

AjPTax       ajTaxNew(void);
AjPTaxCit    ajTaxCitNew(void);
AjPTaxCode   ajTaxCodeNew(void);
AjPTaxDel    ajTaxDelNew(void);
AjPTaxDiv    ajTaxDivNew(void);
AjPTaxMerge  ajTaxMergeNew(void);
AjPTaxName   ajTaxNameNew(void);
void         ajTaxDel(AjPTax *Ptax);
AjBool       ajTaxParse(AjPFile taxfile);
AjBool       ajTaxLoad(const AjPDir taxdir);

/*
** End of prototype definitions
*/

#endif

#ifdef __cplusplus
}
#endif