Skip to content

Commit

Permalink
Added input option to prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
gkarthik committed Sep 2, 2020
1 parent d1d2491 commit f09c306
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/ivar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ void print_consensus_usage(){
" -k If '-k' flag is added, regions with depth less than minimum depth will not be added to the consensus sequence. Using '-k' will override any option specified using -n \n"
" -n (N/-) Character to print in regions with less than minimum coverage(Default: N)\n\n"
"Output Options Description\n"
" -p (Required) Prefix for the output fasta file and quality file\n";
" -p (Required) Prefix for the output fasta file and quality file\n"
" -i (Optional) Name of fasta header. By default, the prefix is used to create the fasta header in the following format, Consensus_<prefix>_threshold_<frequency-threshold>_quality_<minimum-quality>\n";
}

void print_removereads_usage(){
Expand Down Expand Up @@ -326,8 +327,8 @@ int main(int argc, char* argv[]){
g_args.min_threshold = atof(optarg);
break;
case 'i':
g_args.seq_id = optarg;
break;
g_args.seq_id = optarg;
break;
case 'p':
g_args.prefix = optarg;
break;
Expand Down

0 comments on commit f09c306

Please sign in to comment.