Mercurial > repos > devteam > samtools_split
annotate samtools_split.xml @ 2:51390195d350 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/samtools/samtools_split commit de7140295cce07e1bc1697e51dab4271c8d7a8a6
author | devteam |
---|---|
date | Fri, 18 Dec 2015 19:46:52 -0500 |
parents | 76449db9ee44 |
children | ac469d103b51 |
rev | line source |
---|---|
1
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
1 <tool id="samtools_split" name="Split" version="1.1"> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
2 <description>BAM dataset on readgroups</description> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
3 <macros> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
4 <import>macros.xml</import> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
5 </macros> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
6 <expand macro="requirements"></expand> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
7 <expand macro="stdio"></expand> |
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
8 <expand macro="version_command"></expand> |
0 | 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> | |
1
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
19 <param name="input_bam" type="data" format="bam" label="BAM file" /> |
0 | 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 | |
1
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
40 Splits BAM files on readgroups. |
0 | 41 |
1
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
42 This tool is based on ``samtools split`` command. It will generate multiple output datasets for each redagroup from the input dataset. |
0 | 43 |
44 </help> | |
1
76449db9ee44
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
45 <expand macro="citations"></expand> |
0 | 46 </tool> |
47 |