Skip to content

Commit

Permalink
Put module search path before 'use'
Browse files Browse the repository at this point in the history
  • Loading branch information
tseemann committed Mar 25, 2018
1 parent 026f742 commit 545e1ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/prokka
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

use strict;
use warnings;
use FindBin;
use lib "$FindBin::RealBin/../perl5"; # for bundled Perl modules
use File::Copy;
use Time::Piece;
use Time::Seconds;
Expand All @@ -34,8 +36,6 @@ use Bio::Seq;
use Bio::SeqFeature::Generic;
use Bio::Tools::GFF;
use Bio::Tools::GuessSeqFormat;
use FindBin;
use lib "$FindBin::RealBin/../perl5"; # for bundled Perl modules

# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
# global variables
Expand Down

0 comments on commit 545e1ab

Please sign in to comment.