Skip to content

Commit

Permalink
Add option for extracting duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
morispi committed May 10, 2021
1 parent 7bc5e23 commit 5e05568
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/subcommands/extract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ void subcommandExtract(int argc, char* argv[]) {
BamRegion r;

const struct option longopts[] = {
{"bam", required_argument, 0, 'b'},
{"region", required_argument, 0, 'r'},
{"all", no_argument, 0, 'a'},
{"output", required_argument, 0, 'o'},
{"bam", required_argument, 0, 'b'},
{"region", required_argument, 0, 'r'},
{"all", no_argument, 0, 'a'},
{"duplicates", no_argument, 0, 'd'},
{"output", required_argument, 0, 'o'},
{0, 0, 0, 0},
};
int index;
Expand Down

0 comments on commit 5e05568

Please sign in to comment.