Skip to content

Commit

Permalink
Removed unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Sep 10, 2017
1 parent 79eb24e commit cfa43fa
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions scripts/kraken
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ my $paired = 0;
my $check_names = 0;
my $only_classified_output = 0;
my $unclassified_out;
my $unclassified_out_prefix;
my $classified_out;
my $classified_out_prefix;
my $output_format = "legacy";
my $outfile;

Expand All @@ -72,9 +70,7 @@ GetOptions(
"quick" => \$quick,
"min-hits=i" => \$min_hits,
"unclassified-out=s" => \$unclassified_out,
"unclassified-out-prefix=s" => \$unclassified_out_prefix,
"classified-out=s" => \$classified_out,
"classified-out-prefix=s" => \$classified_out_prefix,
"out-fmt=s" => \$output_format,
"output=s" => \$outfile,
"preload" => \$preload,
Expand Down Expand Up @@ -150,9 +146,7 @@ push @flags, "-m", $min_hits if $min_hits > 1;
push @flags, "-f", if $fastq_input;
push @flags, "-F", if $fastq_output;
push @flags, "-U", $unclassified_out if defined $unclassified_out;
push @flags, "-r", $unclassified_out_prefix if defined $unclassified_out_prefix;
push @flags, "-C", $classified_out if defined $classified_out;
push @flags, "-p", $classified_out_prefix if defined $classified_out_prefix;
push @flags, "-O", $output_format if defined $output_format;
push @flags, "-o", $outfile if defined $outfile;
push @flags, "-c", if $only_classified_output;
Expand Down

0 comments on commit cfa43fa

Please sign in to comment.