-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstructures_schemas.h
78 lines (72 loc) · 1.39 KB
/
structures_schemas.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
/*
These structures file it supposed to be created
automatically from schemas on the repository.
*/
typedef struct {
char** alternateBases;
//wrong type
int calls;
int created;
long end;
char * id;
//wrong type
char** info_key;
char** info_value;
char** names;
char* referenceBases;
char* referenceName;
long start;
int updated;
char * variantSetId;
} Variant;
typedef struct {
char* id;
char* readGroupId;
char* fragmentName;
char properPlacement;
char duplicateFragment;
int numberReads;
int fragmentLength;
int readNumber;
char failedVendorQualityChecks;
char secondaryAlignment;
char supplementaryAlignment;
char* alignedSequence;
char* alignedQuality;
char** info;
//GALinearAlignment
char* referenceName;
int mappingQuality;
//GAPosition
unsigned long long position;
unsigned long long nextMatePosition;
char* nextMateReferenceName;
//Cigar
char* operation;
int* lengthOperation;
}read_alignment;
typedef struct {
char* name;
char* referenceName;
long int start;
long int end;
int pageSize;
char* pageToken;
char** callSetIds;
char** variantSetIds;
}search_variant_request;
typedef struct {
char **variantSetIds;
char* name;
int pageSize;
char* pageToken;
}search_callSets_request;
typedef struct {
char** readGroupIds;
char* referenceName;
char* referenceId;
long int start;
long int end;
int pageSize;
char* pageToken;
}search_reads_request;