/usr/lib/emboss/include/enscoordsystem.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 | #ifdef __cplusplus
extern "C"
{
#endif
#ifndef enscoordsystem_h
#define enscoordsystem_h
#include "ensdatabaseadaptor.h"
#include "enstable.h"
/* @data EnsPCoordsystemadaptor ***********************************************
**
** Ensembl Coordinate System Adaptor
**
** @alias EnsSCoordsystemadaptor
** @alias EnsOCoordsystemadaptor
**
** @cc Bio::EnsEMBL::DBSQL::BaseAdaptor
** @attr Adaptor [EnsPDatabaseadaptor] Ensembl Database Adaptor
** cc Bio::EnsEMBL::DBSQL::CoordSystemAdaptor
** @attr CacheByIdentifier [AjPTable] Database identifier cache
** @attr CacheByName [AjPTable] Name cache
** @attr CacheByRank [AjPTable] Rank cache
** @attr CacheByDefault [AjPTable] Default Ensembl Coordinate Systems
** @attr MappingPaths [AjPTable] Mapping paths between coordinate systems
** @attr ExternalToInternal [AjPTable] External to internal Sequence Regions
** @attr InternalToExternal [AjPTable] Internal to external Sequence Regions
** @attr SeqLevel [void*] Sequence-level Ensembl Coordinate System
** @attr TopLevel [void*] Top-level Ensembl Coordinate System
** @@
******************************************************************************/
typedef struct EnsSCoordsystemadaptor
{
EnsPDatabaseadaptor Adaptor;
AjPTable CacheByIdentifier;
AjPTable CacheByName;
AjPTable CacheByRank;
AjPTable CacheByDefault;
AjPTable MappingPaths;
AjPTable ExternalToInternal;
AjPTable InternalToExternal;
void *SeqLevel;
void *TopLevel;
} EnsOCoordsystemadaptor;
#define EnsPCoordsystemadaptor EnsOCoordsystemadaptor*
/* @data EnsPCoordsystem ******************************************************
**
** Ensembl Coordinate System
**
** @alias EnsSCoordsystem
** @alias EnsOCoordsystem
**
** @attr Use [ajuint] Use counter
** @cc Bio::EnsEMBL::Storable
** @attr Identifier [ajuint] Internal SQL database identifier (primary key)
** @attr Adaptor [EnsPCoordsystemadaptor] Ensembl Coordinate System Adaptor
** @cc Bio::EnsEMBL::CoordSystem
** @attr Name [AjPStr] Coordinate System name
** @attr Version [AjPStr] Coordinate System version
** @attr Default [AjBool] Default Coordinate System version of this name
** @attr SequenceLevel [AjBool] Sequence-level attribute
** @attr TopLevel [AjBool] Top-level attribute
** @attr Rank [ajuint] Coordinate System rank
** @@
******************************************************************************/
typedef struct EnsSCoordsystem
{
ajuint Use;
ajuint Identifier;
EnsPCoordsystemadaptor Adaptor;
AjPStr Name;
AjPStr Version;
AjBool Default;
AjBool SequenceLevel;
AjBool TopLevel;
ajuint Rank;
} EnsOCoordsystem;
#define EnsPCoordsystem EnsOCoordsystem*
/*
** Prototype definitions
*/
/* Ensembl Coordinate System */
EnsPCoordsystem ensCoordsystemNew(EnsPCoordsystemadaptor csa,
ajuint identifier,
AjPStr name,
AjPStr version,
ajuint rank,
AjBool deflt,
AjBool toplvl,
AjBool seqlvl);
EnsPCoordsystem ensCoordsystemNewObj(EnsPCoordsystem object);
EnsPCoordsystem ensCoordsystemNewRef(EnsPCoordsystem cs);
void ensCoordsystemDel(EnsPCoordsystem* Pcs);
EnsPCoordsystemadaptor ensCoordsystemGetAdaptor(const EnsPCoordsystem cs);
ajuint ensCoordsystemGetIdentifier(const EnsPCoordsystem cs);
const AjPStr ensCoordsystemGetName(const EnsPCoordsystem cs);
const AjPStr ensCoordsystemGetVersion(const EnsPCoordsystem cs);
AjBool ensCoordsystemGetDefault(const EnsPCoordsystem cs);
#define ensCoordsystemIsDefault ensCoordsystemGetDefault
AjBool ensCoordsystemGetSeqLevel(const EnsPCoordsystem cs);
#define ensCoordsystemIsSeqLevel ensCoordsystemGetSeqLevel
AjBool ensCoordsystemGetTopLevel(const EnsPCoordsystem cs);
#define ensCoordsystemIsTopLevel ensCoordsystemGetTopLevel
ajuint ensCoordsystemGetRank(const EnsPCoordsystem cs);
AjBool ensCoordsystemSetAdaptor(EnsPCoordsystem cs,
EnsPCoordsystemadaptor csa);
AjBool ensCoordsystemSetIdentifier(EnsPCoordsystem cs, ajuint identifier);
AjBool ensCoordsystemTrace(const EnsPCoordsystem cs, ajuint level);
AjBool ensCoordsystemMappingPathTrace(const AjPList css, ajuint level);
AjBool ensCoordsystemMatch(const EnsPCoordsystem cs1,
const EnsPCoordsystem cs2);
ajulong ensCoordsystemGetMemsize(const EnsPCoordsystem cs);
AjPStr ensCoordsystemGetSpecies(EnsPCoordsystem cs);
/* Ensembl Coordinate System Adaptor */
EnsPCoordsystemadaptor ensRegistryGetCoordsystemadaptor(
EnsPDatabaseadaptor dba);
EnsPCoordsystemadaptor ensCoordsystemadaptorNew(
EnsPDatabaseadaptor dba);
void ensCoordsystemadaptorDel(EnsPCoordsystemadaptor* Pcsa);
EnsPDatabaseadaptor ensCoordsystemadaptorGetDatabaseadaptor(
const EnsPCoordsystemadaptor csa);
AjBool ensCoordsystemadaptorFetchAll(
const EnsPCoordsystemadaptor csa,
AjPList css);
AjBool ensCoordsystemadaptorFetchAllByName(
const EnsPCoordsystemadaptor csa,
const AjPStr name,
AjPList css);
AjBool ensCoordsystemadaptorFetchByIdentifier(
const EnsPCoordsystemadaptor csa,
ajuint identifier,
EnsPCoordsystem *Pcs);
AjBool ensCoordsystemadaptorFetchByName(
const EnsPCoordsystemadaptor csa,
const AjPStr name,
const AjPStr version,
EnsPCoordsystem *Pcs);
AjBool ensCoordsystemadaptorFetchByRank(
const EnsPCoordsystemadaptor csa,
ajuint rank,
EnsPCoordsystem *Pcs);
AjBool ensCoordsystemadaptorFetchSeqLevel(
const EnsPCoordsystemadaptor csa,
EnsPCoordsystem *Pcs);
AjBool ensCoordsystemadaptorFetchTopLevel(
const EnsPCoordsystemadaptor csa,
EnsPCoordsystem *Pcs);
const AjPList ensCoordsystemadaptorGetMappingPath(
const EnsPCoordsystemadaptor csa,
EnsPCoordsystem cs1,
EnsPCoordsystem cs2);
ajuint ensCoordsystemadaptorGetExternalSeqregionIdentifier(
const EnsPCoordsystemadaptor csa,
ajuint srid);
ajuint ensCoordsystemadaptorGetInternalSeqregionIdentifier(
const EnsPCoordsystemadaptor csa,
ajuint srid);
/*
** End of prototype definitions
*/
#endif /* enscoordsystem_h */
#ifdef __cplusplus
}
#endif
|