This file is indexed.

/usr/lib/emboss/include/ajresource.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
#ifdef __cplusplus
extern "C"
{
#endif

#ifndef ajresource_h
#define ajresource_h




/* @data AjPResource **********************************************************
**
** Ajax data resource object
**
** Describes a standard public data resource
**
** AjPResource is implemented as a pointer to a C data structure.
**
** @alias AjSResource
** @alias AjOResource
**
** @attr Id [AjPStr] Standard identifier of resource
** @attr Otherids [AjPList] Alternative identifiers for this resource
** @attr Name [AjPStr] Name, usually the ID in full
** @attr Desc [AjPStr] Description
** @attr Server [AjPStr] Resource web server
** @attr Category [AjPStr] Database category
** @attr Edamrefs [AjPList] EDAM ontology references for the data resource
** @attr Links [AjPList] Database cross-reference link details
** @attr Linknote [AjPStr] Notes on the database cross-reference links
** @attr Queries [AjPList] Formatted query definitions
** @attr Examples [AjPList] Formatted query examples
** @attr Contact [AjPStr] Resource contact name
** @attr Email [AjPStr] Resource contact email address
** @attr Notes [AjPStr] Notes on resource entry
** @attr Status [AjPStr] Status of resource (controlled vocabulary)
** @@
******************************************************************************/

typedef struct AjSResource
{
    AjPStr Id;
    AjPList Otherids;
    AjPStr Name;
    AjPStr Desc;
    AjPStr Server;
    AjPStr Category;
    AjPList Edamrefs;
    AjPList Links;
    AjPStr Linknote;
    AjPList Queries;
    AjPList Examples;
    AjPStr Contact;
    AjPStr Email;
    AjPStr Notes;
    AjPStr Status;
} AjOResource;

#define AjPResource AjOResource*



/*
** Prototype definitions
*/

void         ajResourceParse(AjPFile dbfile, const char* validations);

/*
** End of prototype definitions
*/


#endif

#ifdef __cplusplus
}
#endif