Mercurial > repos > devteam > picard
annotate picard_SortSam.xml @ 11:efc56ee1ade4 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author | devteam |
---|---|
date | Wed, 11 Nov 2015 12:23:17 -0500 |
parents | 3a3234d7a2e8 |
children | 05087b27692a |
rev | line source |
---|---|
11
efc56ee1ade4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
8
diff
changeset
|
1 <tool id="picard_SortSam" name="SortSam" version="@TOOL_VERSION@.1"> |
5 | 2 <description>sort SAM/BAM dataset</description> |
3 <macros> | |
4 <import>picard_macros.xml</import> | |
5 </macros> | |
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
6 <expand macro="requirements" /> |
5 | 7 <command> |
8 @java_options@ | |
9 java -jar \$JAVA_JAR_PATH/picard.jar | |
10 SortSam | |
11 INPUT="${inputFile}" | |
12 OUTPUT="${outFile}" | |
13 SORT_ORDER="${sort_order}" | |
14 QUIET=true | |
15 VERBOSITY=ERROR | |
16 VALIDATION_STRINGENCY=${validation_stringency} | |
17 </command> | |
18 | |
19 <inputs> | |
20 <param name="inputFile" type="data" format="sam,bam" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset"/> | |
21 <param name="sort_order" type="select" display="radio" label="Sort order" help="SORT_ORDER; default=coordinate"> | |
22 <option value="coordinate" selected="True">Coordinate</option> | |
23 <option value="queryname">Queryname</option> | |
24 </param> | |
25 <expand macro="VS" /> | |
26 </inputs> | |
27 | |
28 <outputs> | |
29 <data name="outFile" format="bam" label="${tool.name} on ${on_string}: BAM sorted in ${sort_order} order"> | |
30 </data> | |
31 </outputs> | |
32 | |
33 <stdio> | |
34 <exit_code range="1:" level="fatal"/> | |
35 </stdio> | |
36 | |
37 <tests> | |
38 <test> | |
39 <param name="inputFile" ftype="bam" value="picard_SortSam.bam" /> | |
40 <param name="sort_order" value="queryname"/> | |
41 <output name="outFile" file="picard_SortSam_test1.bam" ftype="bam" lines_diff="2"/> | |
42 </test> | |
43 </tests> | |
44 | |
45 <help> | |
46 | |
47 .. class:: infomark | |
48 | |
49 **Purpose** | |
50 | |
51 Sorts the input SAM or BAM. | |
52 | |
53 @dataset_collections@ | |
54 | |
55 @description@ | |
56 | |
57 SORT_ORDER=SortOrder | |
11
efc56ee1ade4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
8
diff
changeset
|
58 SO=SortOrder Sort order of output file. You can either sort by queryname or by coordinate. |
5 | 59 |
60 @more_info@ | |
61 | |
62 </help> | |
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
63 </tool> |