-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deprecated refilter and updated verison number
- Loading branch information
jwala
committed
May 15, 2023
1 parent
6630e9f
commit cee0b61
Showing
3 changed files
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ static const char *SVABA_USAGE_MESSAGE = | |
"Usage: svaba <command> [options]\n\n" | ||
"Commands:\n" | ||
" run Run SvABA SV and Indel detection on BAM(s)\n" | ||
" refilter Refilter the SvABA breakpoints with additional/different criteria to created filtered VCF and breakpoints file.\n" | ||
"\nReport bugs to [email protected] \n\n"; | ||
|
||
int main(int argc, char** argv) { | ||
|
@@ -39,10 +38,9 @@ int main(int argc, char** argv) { | |
return 0; | ||
} else if (command == "run") { | ||
runsvaba(argc -1, argv + 1); | ||
} else if (command == "refilter") { | ||
runRefilterBreakpoints(argc-1, argv+1); | ||
} | ||
else { | ||
/* } else if (command == "refilter") { | ||
runRefilterBreakpoints(argc-1, argv+1); */ | ||
} else { | ||
std::cerr << SVABA_USAGE_MESSAGE; | ||
return 0; | ||
} | ||
|