0
|
1 <tool id="samtools_split" name="Split" version="1.1">
|
|
2 <description>BAM dataset on readgroups</description>
|
|
3 <macros>
|
|
4 <import>macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements"></expand>
|
|
7 <expand macro="stdio"></expand>
|
|
8 <expand macro="version_command"></expand>
|
|
9 <command><![CDATA[
|
|
10 samtools split -f 'Read_Group_%!.bam'
|
|
11 #if $header:
|
|
12 -u "${output}":"${header}"
|
|
13 #else:
|
|
14 -u "${output}"
|
|
15 #end if
|
|
16 "${input_bam}"
|
|
17 ]]></command>
|
|
18 <inputs>
|
|
19 <param name="input_bam" type="data" format="bam" label="BAM file" />
|
|
20 <param name="header" type="data" format="bam,sam" label="Replace header in output file" optional="True" />
|
|
21 </inputs>
|
|
22 <outputs>
|
|
23 <data format="bam" name="output" label="${tool.name} on ${on_string}">
|
|
24 <discover_datasets pattern="Read_Group_(?P<designation>.+)\.bam" ext="bam" visible="true" directory="" />
|
|
25 </data>
|
|
26 </outputs>
|
|
27 <tests>
|
|
28 <test>
|
|
29 <param name="input_bam" value="phiX.bam" ftype="bam" />
|
|
30 <output name="output" file="samtools_split_out.bam">
|
|
31 <discovered_dataset designation="Mouse" ftype="bam" file="phiX_Mouse.bam" />
|
|
32 <discovered_dataset designation="Elephant" ftype="bam" file="phiX_Elephant.bam" />
|
|
33 <discovered_dataset designation="Human" ftype="bam" file="phiX_Human.bam" />
|
|
34 </output>
|
|
35 </test>
|
|
36 </tests>
|
|
37 <help>
|
|
38 **What it does**
|
|
39
|
|
40 Splits BAM files on readgroups.
|
|
41
|
|
42 This tool is based on ``samtools split`` command. It will generate multiple output datasets for each redagroup from the input dataset.
|
|
43
|
|
44 </help>
|
|
45 <expand macro="citations"></expand>
|
|
46 </tool>
|
|
47
|