You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main.cpp
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,12 @@ int main(int argc, char* argv[]){
22
22
cmd.add<string>("fusion", 'f', "fusion file name, in CSV format", true, "");
23
23
cmd.add<string>("ref", 'r', "reference fasta file name", true, "");
24
24
cmd.add<int>("unique", 'u', "specify the least supporting read number is required to report a fusion, default is 2", false, 2);
25
-
cmd.add<int>("deletion", 'd', "specify the least deletion length of a intra-gene deletion to report, default is 50", false, 50);
26
25
cmd.add<string>("html", 'h', "file name to store HTML report, default is genefuse.html", false, "genefuse.html");
27
26
cmd.add<string>("json", 'j', "file name to store JSON report, default is genefuse.json", false, "genefuse.json");
28
27
cmd.add<int>("thread", 't', "worker thread number, default is 4", false, 4);
28
+
cmd.add<int>("deletion", 'd', "specify the least deletion length of a intra-gene deletion to report, default is 50", false, 50);
29
+
cmd.add("output_deletions", 'D', "long deletions are not output by default, enable this option to output them");
30
+
cmd.add("output_untranslated_fusions", 'U', "the fusions that cannot be transcribed or translated are not output by default, enable this option to output them");
29
31
cmd.parse_check(argc, argv);
30
32
string r1file = cmd.get<string>("read1");
31
33
string r2file = cmd.get<string>("read2");
@@ -36,9 +38,13 @@ int main(int argc, char* argv[]){
0 commit comments