Hii
I integrate the SoftSearch tool in galaxy project it will generate .vcf file but i want to generate new random .vcf file after execution of SoftSearch tool.
if I execute by command prompt it will generate random file successfully. command used
$n=$RANDOM | perl ./SoftSearch.pl -b Small_test.bam -f chr1.small.fa -o $n.vcf
But when I execute it by GUI in xml file it will generate the error..
rand: unknown option -- '.vcf'
Can't write files here!
here is my xml command.
<command> samtools index $bam_file ; samtools faidx $fasta_file ; /home/Data/2.4/src/SoftSearch.pl -b $bam_file -f $fasta_file -o /home/Data/galaxy-dist/database/files/000/ | rand .vcf </command>
so please tell me solution on this.
Thanks...