-
Notifications
You must be signed in to change notification settings - Fork 1
/
ShoreMap_annotate.h
executable file
·49 lines (42 loc) · 1.42 KB
/
ShoreMap_annotate.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
/* this function annotates given SNPs(, Indels) according to gene annotation file */
/*
Usage: SHOREmap annotate
Mandatory:
--snp STRING Point mutation file
--chrom STRING Chromosome of target region
--start INT Start of target region
--end INT End of target region
Functional annotation:
--genome STRING Reference sequence file
--gff STRING Gene annotation in GFF format
Optional:
--referr STRING Reference sequence errors
--del STRING Deletion file // TODO 2013-03-26
--ins STRING Insertion file // TODO 2013-03-26
*/
void ShoreMap_annotate(int argc, char* argv[]);
/*
std::string ecotype = "";
std::string chromosome = "";
unsigned long position = 0;
std::string stype = "intergeneric";
std::string gene_id = "NA";
unsigned long gene_pos=0;
unsigned long cds_pos=0;
unsigned long codon_pos = 0;
unsigned long ns_change = 0;
unsigned long new_stop = 0;
unsigned long lost_stop = 0;
unsigned long splicechange = 0;
std::string ref_base="";
std::string new_base="";
std::string ref_aa ="";
std::string new_aa="";
//map<std::string, std::string>domain_change;
unsigned long support = 0;
double concordance = 0;
double quality = 0;
unsigned long peak_distance = 999999999;
double marker_ratio = 0;
std::string source = "IlluminaGA2";
*/