/usr/lib/emboss/include/ensgene.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 | #ifdef __cplusplus
extern "C"
{
#endif
#ifndef ensgene_h
#define ensgene_h
#include "ensdata.h"
#include "ensfeature.h"
/*
** Prototype definitions
*/
/* Ensembl Gene */
EnsPGene ensGeneNew(EnsPGeneadaptor ga,
ajuint identifier,
EnsPFeature feature,
EnsPDatabaseentry displaydbe,
AjPStr description,
AjPStr source,
AjPStr biotype,
EnsEGeneStatus status,
AjBool current,
ajuint cantrcid,
AjPStr canann,
AjPStr stableid,
ajuint version,
AjPStr cdate,
AjPStr mdate,
AjPList transcripts);
EnsPGene ensGeneNewObj(const EnsPGene object);
EnsPGene ensGeneNewRef(EnsPGene gene);
void ensGeneDel(EnsPGene* Pgene);
EnsPGeneadaptor ensGeneGetAdaptor(const EnsPGene gene);
ajuint ensGeneGetIdentifier(const EnsPGene gene);
EnsPFeature ensGeneGetFeature(const EnsPGene gene);
EnsPDatabaseentry ensGeneGetDisplayReference(const EnsPGene gene);
AjPStr ensGeneGetDescription(const EnsPGene gene);
AjPStr ensGeneGetSource(const EnsPGene gene);
AjPStr ensGeneGetBioType(const EnsPGene gene);
EnsEGeneStatus ensGeneGetStatus(const EnsPGene gene);
AjBool ensGeneGetCurrent(const EnsPGene gene);
AjPStr ensGeneGetCanonicalAnnotation(const EnsPGene gene);
ajuint ensGeneGetCanonicalTranscriptIdentifier(const EnsPGene gene);
AjPStr ensGeneGetStableIdentifier(const EnsPGene gene);
ajuint ensGeneGetVersion(const EnsPGene gene);
AjPStr ensGeneGetCreationDate(const EnsPGene gene);
AjPStr ensGeneGetModificationDate(const EnsPGene gene);
const AjPList ensGeneGetAttributes(EnsPGene gene);
const AjPList ensGeneGetDatabaseEntries(EnsPGene gene);
const AjPList ensGeneGetTranscripts(EnsPGene gene);
AjBool ensGeneSetAdaptor(EnsPGene gene, EnsPGeneadaptor ga);
AjBool ensGeneSetIdentifier(EnsPGene gene, ajuint identifier);
AjBool ensGeneSetFeature(EnsPGene gene, EnsPFeature feature);
AjBool ensGeneSetDisplayReference(EnsPGene gene, EnsPDatabaseentry dbe);
AjBool ensGeneSetDescription(EnsPGene gene, AjPStr description);
AjBool ensGeneSetSource(EnsPGene gene, AjPStr source);
AjBool ensGeneSetBioType(EnsPGene gene, AjPStr biotype);
AjBool ensGeneSetStatus(EnsPGene gene, EnsEGeneStatus status);
AjBool ensGeneSetCurrent(EnsPGene gene, AjBool current);
AjBool ensGeneSetCanonicalTranscript(EnsPGene gene, ajuint cantrcid);
AjBool ensGeneSetCanonicalAnnotation(EnsPGene gene, AjPStr canann);
AjBool ensGeneSetStableIdentifier(EnsPGene gene, AjPStr stableid);
AjBool ensGeneSetVersion(EnsPGene gene, ajuint version);
AjBool ensGeneSetCreationDate(EnsPGene gene, AjPStr cdate);
AjBool ensGeneSetModificationDate(EnsPGene gene, AjPStr mdate);
AjBool ensGeneTrace(const EnsPGene gene, ajuint level);
ajulong ensGeneGetMemsize(const EnsPGene gene);
AjBool ensGeneAddAttribute(EnsPGene gene, EnsPAttribute attribute);
AjBool ensGeneAddDatabaseentry(EnsPGene gene, EnsPDatabaseentry dbe);
AjBool ensGeneAddTranscript(EnsPGene gene, EnsPTranscript transcript);
EnsEGeneStatus ensGeneStatusFromStr(const AjPStr status);
const char* ensGeneStatusToChar(EnsEGeneStatus status);
AjBool ensGeneCalculateCoordinates(EnsPGene gene);
AjBool ensGeneFetchAllAttributes(EnsPGene gene,
const AjPStr code,
AjPList attributes);
AjBool ensGeneFetchAllDatabaseEntries(EnsPGene gene,
const AjPStr name,
EnsEExternaldatabaseType type,
AjPList dbes);
AjBool ensGeneFetchAllExons(EnsPGene gene, AjPList exons);
AjBool ensGeneFetchCanonicalTranscript(EnsPGene gene,
EnsPTranscript *Ptranscript);
EnsPGene ensGeneTransform(EnsPGene gene,
const AjPStr csname,
const AjPStr csversion);
EnsPGene ensGeneTransfer(EnsPGene gene, EnsPSlice slice);
AjBool ensGeneSortByStartAscending(AjPList genes);
AjBool ensGeneSortByStartDescending(AjPList genes);
/* Ensembl Gene Adaptor */
EnsPGeneadaptor ensRegistryGetGeneadaptor(
EnsPDatabaseadaptor dba);
EnsPGeneadaptor ensGeneadaptorNew(
EnsPDatabaseadaptor dba);
void ensGeneadaptorDel(EnsPGeneadaptor *Pga);
EnsPFeatureadaptor ensGeneadaptorGetFeatureadaptor(const EnsPGeneadaptor ga);
EnsPDatabaseadaptor ensGeneadaptorGetDatabaseadaptor(const EnsPGeneadaptor ga);
AjBool ensGeneadaptorFetchAll(const EnsPGeneadaptor ga,
AjPList genes);
AjBool ensGeneadaptorFetchAllByBiotype(EnsPGeneadaptor ga,
const AjPStr biotype,
AjPList genes);
AjBool ensGeneadaptorFetchAllBySlice(EnsPGeneadaptor ga,
EnsPSlice slice,
const AjPStr anname,
const AjPStr source,
const AjPStr biotype,
AjBool loadtranscripts,
AjPList genes);
AjBool ensGeneadaptorFetchAllByStableIdentifier(EnsPGeneadaptor ga,
const AjPStr stableid,
AjPList genes);
AjBool ensGeneadaptorFetchByIdentifier(EnsPGeneadaptor ga,
ajuint identifier,
EnsPGene *Pgene);
AjBool ensGeneadaptorFetchByStableIdentifier(EnsPGeneadaptor ga,
const AjPStr stableid,
ajuint version,
EnsPGene *Pgene);
AjBool ensGeneadaptorFetchByDisplayLabel(EnsPGeneadaptor ga,
const AjPStr label,
EnsPGene *Pgene);
AjBool ensGeneadaptorFetchAllIdentifiers(const EnsPGeneadaptor ga,
AjPList identifiers);
AjBool ensGeneadaptorFetchAllStableIdentifiers(const EnsPGeneadaptor ga,
AjPList identifiers);
/*
** End of prototype definitions
*/
#endif /* ensgene_h */
#ifdef __cplusplus
}
#endif
|