0
|
1 <tool id="bamsort" name="Sort BAM file">
|
|
2 <description>Sort a BAM file by coordinates (or names) of the mapped reads</description>
|
2
|
3 <macros>
|
|
4 <import>toolshed_macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements"/>
|
0
|
7 <version_command>mimodd version -q</version_command>
|
|
8 <command>
|
|
9 mimodd sort "$inputfile" -o "$output" --oformat $oformat $by_name
|
|
10 </command>
|
|
11
|
|
12 <inputs>
|
|
13 <param name="inputfile" type="data" format="bam" label="Input file to sort" />
|
|
14 <param name="by_name" type="boolean" truevalue = "-n" falsevalue ="" label="Sort by read names instead of coordinates" checked = "false" help="A less common option, but necessary, e.g., if you want to re-align sorted output from a previous run of the Snap Align Tool." />
|
|
15 <param name="oformat" type="boolean" truevalue = "sam" falsevalue = "bam" label = "Output in uncompressed SAM format" checked = "false" />
|
|
16 </inputs>
|
|
17
|
|
18 <outputs>
|
|
19 <data name="output" format="bam" label="Sorted output from MiModd ${tool.name} on ${on_string}">
|
|
20 <change_format>
|
|
21 <when input="oformat" value="sam" format="sam" />
|
|
22 </change_format>
|
|
23 </data>
|
|
24 </outputs>
|
|
25
|
|
26 <help>
|
|
27 .. class:: infomark
|
|
28
|
|
29 **What it does**
|
|
30
|
|
31 The tool sorts a BAM file of aligned reads, typically by the reference genome coordinates that the reads have been mapped to.
|
|
32
|
|
33 Coordinate-sorted input files are expected by most downstream MiModD tools, but note that the *SNAP Read Alignment* produces coordinate-sorted output by default and it is only necessary to sort files that come from other sources or from *SNAP Read Alignment* jobs with a custom sort order.
|
|
34
|
|
35 The option *Sort by read names instead of coordinates* is useful if you want to re-align coordinate-sorted paired-end data. In *paired-end mode*, the *SNAP Read Alignment* tool expects the reads in the input file to be arranged in read pairs, i.e., the forward read information of a pair must be followed immediately by its reverse mate information, which is typically not the case in coordinate-sorted files. Resorting such files by read names fixes this problem.
|
|
36
|
|
37 </help>
|
|
38 </tool>
|
|
39
|