in reply to quoting issue with system command
You probably intended to interpolate those variables (single quotes don't):
my $command = qq(c:\\blast\\bin\\blastall -p blastn -d "$hu_seq $hd_se +q" -i $contig -o $alignment);
OTOH, interpolating the file handle $alignment doesn't make much sense... (so what is that -o $alignment supposed to achieve?)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: quoting issue with system command
by lomSpace (Scribe) on May 12, 2009 at 23:07 UTC | |
by almut (Canon) on May 12, 2009 at 23:15 UTC |