Eldan Aranye has asked for the wisdom of the Perl Monks concerning the following question:
Hi, all
I have this code that executes a script program:
$genes = $ARGV[3]; $isoforms = $ARGV[4]; $trans = $ARGV[0]; $left = $ARGV[1]; $right = $ARGV[2]; $directory = "/home/applications/galaxy-dist/tools/VELVET-OASES"; $transcript = "$directory/trans.fa"; $left_read = "$directory/left_read.fastq"; $right_read = "$directory/right_read.fastq"; symlink $trans, $transcript; symlink $left, $left_read; symlink $right, $right_read; @out = `perl /home/applications/galaxy-dist/tools/VELVET-OASES/run_rse +m.pl 2>&1`;
It's able to create the symlinks, but it fails to perform the command. Any ideas on why this is happening? I've used this pattern before, and it worked perfectly well. Is there anything wrong with the script?
Thanks in advance for any help!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Command not executing
by toolic (Bishop) on Jun 22, 2012 at 01:31 UTC | |
|
Re: Command not executing
by BrowserUk (Patriarch) on Jun 22, 2012 at 01:43 UTC | |
by Eldan Aranye (Acolyte) on Jun 22, 2012 at 04:08 UTC | |
by BrowserUk (Patriarch) on Jun 22, 2012 at 04:44 UTC |