1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: update kalign invocation arguments.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/1129866
Forwarded: no
Last-Update: 2026-03-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- bioperl-run.orig/lib/Bio/Tools/Run/Alignment/Kalign.pm
+++ bioperl-run/lib/Bio/Tools/Run/Alignment/Kalign.pm
@@ -464,7 +464,7 @@
undef $tfh;
$self->outfile_name($outfile);
}
- $param_string .= " -out ".$self->outfile_name;
+ $param_string .= " -i - -o ".$self->outfile_name;
if ($self->quiet() || $self->verbose < 0) {
my $null = ($^O =~ m/mswin/i) ? 'NUL' : '/dev/null';
|