-
Notifications
You must be signed in to change notification settings - Fork 0
/
structures.h
executable file
·293 lines (247 loc) · 7.66 KB
/
structures.h
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#ifndef STRUCTURES_H
#define STRUCTURES_H
#include <QtGlobal>
#include <QDateTime>
#include <QList>
#include <QSharedPointer>
#include <QString>
#include <QStringList>
#include <QMutex>
#include <QWeakPointer>
struct IntronType;
struct TaxKingdom;
struct TaxGroup1;
struct TaxGroup2;
struct OrthologousGroup;
struct Organism;
struct Chromosome;
struct Sequence;
struct Gene;
struct Isoform;
struct Exon;
struct Intron;
struct RealExon;
struct Range {
quint32 start;
quint32 end;
inline static QList<Range> createList(const QList<quint32> &starts,
const QList<quint32> &ends)
{
Q_ASSERT(starts.size() == ends.size());
QList<Range> result;
for (int i=0; i<starts.size(); ++i) {
Range range;
range.start = starts[i];
range.end = ends[i];
result.push_back(range);
}
return result;
}
inline bool contains(const Range & other) const {
return this->start <= other.start && this->end >= other.end;
}
};
typedef QSharedPointer<IntronType> IntronTypePtr;
typedef QSharedPointer<TaxKingdom> TaxKingdomPtr;
typedef QSharedPointer<TaxGroup1> TaxGroup1Ptr;
typedef QSharedPointer<TaxGroup2> TaxGroup2Ptr;
typedef QSharedPointer<OrthologousGroup> OrthologousGroupPtr;
typedef QSharedPointer<Organism> OrganismPtr;
typedef QSharedPointer<Chromosome> ChromosomePtr;
typedef QSharedPointer<Sequence> SequencePtr;
typedef QSharedPointer<Gene> GenePtr;
typedef QSharedPointer<Isoform> IsoformPtr;
typedef QSharedPointer<Exon> ExonPtr;
typedef QSharedPointer<Intron> IntronPtr;
typedef QSharedPointer<RealExon> RealExonPtr;
typedef QWeakPointer<IntronType> IntronTypeWPtr;
typedef QWeakPointer<TaxKingdom> TaxKingdomWPtr;
typedef QWeakPointer<TaxGroup1> TaxGroup1WPtr;
typedef QWeakPointer<TaxGroup2> TaxGroup2WPtr;
typedef QWeakPointer<OrthologousGroup> OrthologousGroupWPtr;
typedef QWeakPointer<Organism> OrganismWPtr;
typedef QWeakPointer<Chromosome> ChromosomeWPtr;
typedef QWeakPointer<Sequence> SequenceWPtr;
typedef QWeakPointer<Gene> GeneWPtr;
typedef QWeakPointer<Isoform> IsoformWPtr;
typedef QWeakPointer<Exon> CodingExonWPtr;
typedef QWeakPointer<Intron> IntronWPtr;
typedef QWeakPointer<RealExon> RealExonWPtr;
struct IntronType {
QString representation;
};
struct TaxKingdom {
qint32 id = 0;
QString name;
};
struct TaxGroup1 {
qint32 id = 0;
TaxKingdomWPtr kingdomPtr;
QString name;
QString type;
};
struct TaxGroup2 {
qint32 id = 0;
TaxKingdomWPtr kingdomPtr;
TaxGroup1WPtr taxGroup1Ptr;
QString name;
QString type;
};
struct OrthologousGroup {
QString name;
QString fullName;
};
struct Organism
{
QMutex mutex; // for multithreaded processing
qint32 id = 0;
QString name;
QString commonName;
QString refSeqAssemblyId;
QString annotationRelease;
QDate annotationDate;
QString taxonomyXref;
QStringList taxonomyList;
TaxKingdomWPtr kingdom;
TaxGroup1WPtr taxGroup1;
TaxGroup2WPtr taxGroup2;
quint32 realChromosomeCount = 0;
quint32 dbChromosomeCount = 0;
bool realMitochondria = false;
bool dbMitochondria = false;
quint32 unknownSequencesCount = 0;
quint64 totalSequencesLength = 0;
quint32 bGenesCount = 0;
quint32 rGenesCount = 0;
quint32 cdsCount = 0;
quint32 rnaCount = 0;
quint32 unknownProtGenesCount = 0;
quint32 unknownProtCdsCount = 0;
quint32 unknownRnaCdsCount = 0;
quint32 exonsCount = 0;
quint32 intronsCount = 0;
};
struct Chromosome {
qint32 id = 0;
QMutex mutex;
OrganismWPtr organism;
QString name;
quint32 length = 0;
};
struct Sequence {
qint32 id = 0;
QString sourceFileName;
QString refSeqId;
QString version;
QString description;
quint32 length = 0;
OrganismWPtr organism;
ChromosomeWPtr chromosome;
QString originFileName;
QByteArray origin;
QDate gbk_date;
QList<GenePtr> genes;
};
struct Gene {
qint32 id = 0;
SequenceWPtr sequence;
OrthologousGroupWPtr orthologousGroup;
QString name;
QString ncbiGeneId;
QString note;
bool backwardChain = false;
bool isProteinButNotRna = false;
bool isPseudoGene = false;
quint32 start = UINT32_MAX;
quint32 end = 0;
quint32 startCode = UINT32_MAX;
quint32 endCode = 0;
quint32 maxIntronsCount = 0;
QList<IsoformPtr> isoforms;
bool hasCDS = false;
bool hasRNA = false;
};
struct Isoform {
qint32 id = 0;
enum Type {
MRNA = 0, CDS = 1, Other = 255
} type = Other;
GeneWPtr gene;
SequenceWPtr sequence;
QString proteinXref;
QString proteinId;
QString product;
QString note;
quint32 cdsStart = UINT32_MAX;
quint32 cdsEnd = 0;
quint32 mrnaStart = UINT32_MAX;
quint32 mrnaEnd = 0;
quint32 exonsCdsCount = 0;
quint32 exonsMrnaCount = 0;
quint32 exonsLength = 0;
QByteArray startCodon;
QByteArray endCodon;
bool errorInLength = false;
bool warningInIntron = false;
bool warningInCodingExon = false;
bool errorMain = false;
QString errorComment;
bool isMaximumByIntrons = false;
QList<ExonPtr> exons;
QList<IntronPtr> introns;
bool hasCDS = false;
QString translation;
// Fields required to match CDS/mRNA
QList<Range> mRnaRanges;
};
struct Exon {
qint32 id = 0;
IsoformWPtr isoform;
GeneWPtr gene;
SequenceWPtr sequence;
quint32 real_exon_id;
quint32 start = 0;
quint32 end = 0;
enum Type {
OneExon = 0, Start = 1 , End = 2, Inner = 3, Unknown = 4
} type = Unknown;
quint8 startPhase = 0;
quint8 endPhase = 0;
quint8 lengthPhase = 0;
quint32 index = 0;
quint32 revIndex = 0;
QByteArray startCodon;
QByteArray endCodon;
IntronWPtr prevIntron;
IntronWPtr nextIntron;
QByteArray origin;
bool fromMainIsoform = false;
bool stash = false;
bool errorInIsoform = false;
bool warningNInSequence = false;
};
struct Intron {
qint32 id = 0;
IsoformWPtr isoform;
GeneWPtr gene;
SequenceWPtr sequence;
CodingExonWPtr prevExon;
CodingExonWPtr nextExon;
QByteArray startDinucleotide;
QByteArray endDinucleotide;
quint32 start = 0;
quint32 end = 0;
quint32 index = 0;
quint32 revIndex = 0;
quint8 lengthPhase = 0;
quint8 phase = 0;
bool fromMainIsoform = false;
bool warningInStartDinucleotide = false;
bool warningInEndDinucleotide = false;
bool warningNInSequence = false;
bool errorMain = false;
bool errorInIsoform = false;
qint32 intronTypeId = 0;
QByteArray origin;
};
#endif