Re: [galaxy-dev] Unable to set BAM Metadata

2012-05-01 Thread Ciara Ledero
Thanks for the reply! I'll try that one. I'll come back if the problem still persists. Cheers, CL ___ Please keep all replies on the list by using reply all in your mail client. To manage your subscriptions to this and other Galaxy lists,

Re: [galaxy-dev] Unable to set BAM Metadata

2012-04-30 Thread Nate Coraor
On Apr 29, 2012, at 9:19 PM, Ciara Ledero wrote: This is my code for running a samtools command internally, via Galaxy: open INP, $ARGV[0] or die Cannot open file: $!; $file = $ARGV[1]; open OUT, $file or die Cannot open file: $!; @out =

Re: [galaxy-dev] Unable to set BAM Metadata

2012-04-30 Thread Nate Coraor
On Apr 29, 2012, at 9:19 PM, Ciara Ledero wrote: This is my code for running a samtools command internally, via Galaxy: open INP, $ARGV[0] or die Cannot open file: $!; $file = $ARGV[1]; open OUT, $file or die Cannot open file: $!; @out =

[galaxy-dev] Unable to set BAM Metadata

2012-04-29 Thread Ciara Ledero
This is my code for running a samtools command internally, via Galaxy: open INP, $ARGV[0] or die Cannot open file: $!; $file = $ARGV[1]; open OUT, $file or die Cannot open file: $!; @out = `/home/applications/samtools-0.1.7a/samtools view -bS $ARGV[0] 21`; print OUT @out;