Skip to content

Commit

Permalink
genbank_ref_extractor: changed default assembly regex
Browse files Browse the repository at this point in the history
  • Loading branch information
carandraug committed Sep 28, 2011
1 parent 1a1dc62 commit d314c39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/Bio-DB-EUtilities/bp_genbank_ref_extractor.pl
Expand Up @@ -55,9 +55,9 @@ =head1 OPTIONS
When retrieving the sequence, a specific assemly can be defined. The value expected
is a regex that will be case-insensitive. If it matches more than one assembly, it will
use the first match. It defauls to C<reference (primary )?assembly>.
use the first match. It defauls to C<(primary|reference) assembly>.
=cut
my $assembly_regex = 'reference (primary )?assembly';
my $assembly_regex = '(primary|reference) assembly';

=item B<--debug>
Expand Down

0 comments on commit d314c39

Please sign in to comment.