changeset 0:480c9d4c8957 draft default tip

planemo upload for repository https://github.com/biod/sambamba commit 13ed0b409cf2c5de007e0a6fa93391cbbb21795d
author bgruening
date Wed, 12 Jun 2024 15:01:11 +0000
parents
children
files Sambamba_merge.xml macros.xml test-data/1.bam test-data/1.coord.sorted.bam test-data/1.qname.sorted.bam test-data/2.bam test-data/2.markdup.bam test-data/2.markdup_removed.bam test-data/coordinate_sorted.bam test-data/coordinate_sorted_merged.bam test-data/qname_sorted.bam test-data/qname_sorted_merged.bam
diffstat 12 files changed, 61 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sambamba_merge.xml	Wed Jun 12 15:01:11 2024 +0000
@@ -0,0 +1,44 @@
+<tool id="sambamba_merge" name="Sambamba merge" version="@TOOL_VERSION@+galaxy@SUFFIX_VERSION@" profile="23.2" license="MIT">
+    <description>Merge several BAM files into one</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements"/>
+    <command><![CDATA[
+        sambamba merge
+            -l $compression_level
+            '${output}'
+            #for $infile in $input_bam:
+                '${infile}'
+            #end for
+            --nthreads \${GALAXY_SLOTS:-8}
+    ]]></command>
+    <inputs>
+        <param name="input_bam" type="data" format="qname_sorted.bam,bam" multiple="true" label="Input BAM files to be merged" help="Please note that the sorting order of all input files must be the same"/>
+        <param argument="--compression-level" type="integer" value="5" min="0" max="9" label="Level of compression for merged BAM file, number from 0 to 9"/>
+    </inputs>
+    <outputs>
+        <data name="output" format_source="input_files"/>
+    </outputs>
+    <tests>
+        <test expect_num_outputs="1">
+            <param name="input_bam" value="qname_sorted.bam,qname_sorted.bam"/>
+            <param name="compression_level" value="5"/> 
+            <output name="output" file="qname_sorted_merged.bam" lines_diff="4"/>
+        </test>
+        <test expect_num_outputs="1">
+            <param name="input_bam" value="coordinate_sorted.bam,coordinate_sorted.bam"/>
+            <param name="compression_level" value="5"/>  
+            <output name="output" file="coordinate_sorted_merged.bam" lines_diff="4"/>
+        </test>
+    </tests>
+    <help>
+<![CDATA[
+
+sambamba_merge is used to merge several sorted BAM files into one. The sorting order of all the files must be the same, and it is maintained in the output file.
+
+SAM headers are merged automatically like in Picard merging tool.
+]]>
+    </help>
+    <expand macro="citations" />
+</tool>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml	Wed Jun 12 15:01:11 2024 +0000
@@ -0,0 +1,17 @@
+<macros>
+    <token name="@TOOL_VERSION@">1.0.1</token>
+    <token name="@SUFFIX_VERSION@">1</token>
+    <xml name="requirements">
+        <requirements>
+            <requirement type="package" version="1.0.1">sambamba</requirement>
+            <yield/>
+        </requirements>
+    </xml>
+    
+    <xml name="citations">
+        <citations>
+            <citation type="doi">10.1093/bioinformatics/btv098</citation>
+            <yield />
+        </citations>
+    </xml>
+</macros>
Binary file test-data/1.bam has changed
Binary file test-data/1.coord.sorted.bam has changed
Binary file test-data/1.qname.sorted.bam has changed
Binary file test-data/2.bam has changed
Binary file test-data/2.markdup.bam has changed
Binary file test-data/2.markdup_removed.bam has changed
Binary file test-data/coordinate_sorted.bam has changed
Binary file test-data/coordinate_sorted_merged.bam has changed
Binary file test-data/qname_sorted.bam has changed
Binary file test-data/qname_sorted_merged.bam has changed