Skip to content

Commit

Permalink
-tax option for ktGetTaxIDFromGI
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Ondov committed Aug 25, 2015
1 parent 7784300 commit 09c65ca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion KronaTools/scripts/GetTaxIDFromGI.pl
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,22 @@
my $totalMag;
my $prepend;
my $append;
my $tax;

GetOptions
(
'h' => \$help,
'help' => \$help,
'p' => \$prepend,
'a' => \$append
'a' => \$append,
'tax=s' => \$tax
);

if ( defined $tax )
{
setOption('taxonomy', $tax);
}

if ( $help )
{
print '
Expand Down

0 comments on commit 09c65ca

Please sign in to comment.