-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathType.h
44 lines (39 loc) · 913 Bytes
/
Type.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
#ifndef _TYPE_H_
#define _TYPE_H_
typedef enum {
SNP = 0,
INS,
DEL,
MIXED,
SV,
NO_VARIATION, // monomorphic site
UNKNOWN = 99
} VARIATION_TYPE;
typedef enum {
STRUCTURE_VARIATION = 0,
STOP_GAIN,
STOP_LOSS,
START_GAIN,
START_LOSS,
FRAME_SHIFT, /* Indel length is not divisible by 3 */
CODON_GAIN, /* Insertion length is divisible by 3 */
CODON_LOSS, /* Deletion length is divisible by 3 */
CODON_REGION, /* Just say the variant is in the Coding Region, used in Structrual Varition*/
INSERTION,
DELETION,
NONSYNONYMOUS,
SYNONYMOUS,
ESSENTIAL_SPLICE_SITE,
NORMAL_SPLICE_SITE,
UTR5,
UTR3,
EXON,
INTRON,
UPSTREAM,
DOWNSTREAM,
SNV, /*SNV contains the following 6 types, it appears when there is no reference.*/
NONCODING,
INTERGENIC,
MONOMORPHIC
} AnnotationType;
#endif /* _TYPE_H_ */