# HG changeset patch # User artbio # Date 1507716075 14400 # Node ID 5f4fbba31b6a38df6bac1f192b8dae49ac7a27a6 # Parent de9cd399857131ff25e7d3e8248c00efb3788da3 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 2dac5b5f1ed589f4c8a3c6d64696b842ece8edd2 diff -r de9cd3998571 -r 5f4fbba31b6a sRbowtie.xml --- a/sRbowtie.xml Sat Sep 02 10:52:05 2017 -0400 +++ b/sRbowtie.xml Wed Oct 11 06:01:15 2017 -0400 @@ -1,4 +1,4 @@ - + for small RNA short reads bowtie @@ -6,7 +6,7 @@ /dev/null && ln -s -f '$refGenomeSource.ownFile' genome.fa && #set index_path = 'genome' #else: @@ -48,11 +48,11 @@ ## run the bowtie alignement #if $output_format == "tabular": - bowtie -p \${GALAXY_SLOTS:-4} $method_postfix --suppress 6,7,8 $index_path $format '$input' > $output + bowtie -p \${GALAXY_SLOTS:-4} $method_postfix --suppress 6,7,8 $index_path $format '$input' 2>&1 > $output #elif $output_format == "sam": - bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input' > '$output' + bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input' 2>&1 > '$output' #elif $output_format == "bam": - bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input' | samtools view -u - | samtools sort -@ "\${GALAXY_SLOTS:-4}" -T tmp -O bam -o $output + bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input'| samtools view -u - | samtools sort -@ "\${GALAXY_SLOTS:-4}" -T tmp -O bam -o $output 2>&1 #end if ##### | samtools view -uS ]]>