Commit 0d3a5b7 1 parent b25b6e2 commit 0d3a5b7 Copy full SHA for 0d3a5b7
File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ use Path::Tiny; # bundled in $APPDIR/perl5/
17
17
# ..............................................................................
18
18
# Globals
19
19
20
- my $VERSION = " 2.13 " ;
20
+ my $VERSION = " 2.14 " ;
21
21
my $EXE = just_filename( $FindBin::RealScript );
22
22
my $AUTHOR = ' Torsten Seemann' ;
23
23
my $URL = ' https://github.com/tseemann/mlst' ;
@@ -209,9 +209,13 @@ exit(0);
209
209
210
210
sub find_mlst {
211
211
my ($fname ) = @_ ;
212
+
213
+ # https://github.com/tseemann/mlst/issues/69
214
+ my $culling = $scheme ? 10 : 1;
215
+
212
216
my $cmd = " blastn -query \Q $fname \E -db \Q $blastdb \E -num_threads $threads "
213
217
." -ungapped -dust no -word_size 32 -max_target_seqs 10000"
214
- ." -perc_identity $minid -evalue 1E-20 -culling_limit 1 "
218
+ ." -perc_identity $minid -evalue 1E-20 -culling_limit $culling "
215
219
." -outfmt '6 sseqid slen length nident qseqid qstart qend qseq'" ;
216
220
msg(" Running: $cmd " ) if $debug ;
217
221
You can’t perform that action at this time.
0 commit comments