Mercurial > repos > devteam > picard
annotate picard_CleanSam.xml @ 12:05087b27692a draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
author | devteam |
---|---|
date | Sun, 27 Nov 2016 15:11:50 -0500 |
parents | 3a3234d7a2e8 |
children | 7e6fd3d0f16e |
rev | line source |
---|---|
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
1 <tool id="picard_CleanSam" name="CleanSam" version="@TOOL_VERSION@.0"> |
5 | 2 <description>perform SAM/BAM grooming</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" /> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
5 | 8 @java_options@ |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
9 picard |
5 | 10 CleanSam |
11 INPUT="${inputFile}" | |
12 OUTPUT="${outFile}" | |
13 QUIET=true | |
14 VERBOSITY=ERROR | |
15 VALIDATION_STRINGENCY=${validation_stringency} | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
16 ]]></command> |
5 | 17 |
18 <inputs> | |
19 <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"/> | |
20 | |
21 <expand macro="VS" /> | |
22 | |
23 </inputs> | |
24 | |
25 <outputs> | |
26 <data name="outFile" format="bam" label="${tool.name} on ${on_string}: cleaned BAM dataset"> | |
27 </data> | |
28 </outputs> | |
29 | |
30 | |
31 <tests> | |
32 <test> | |
33 <param name="inputFile" ftype="bam" value="picard_CleanSam.bam" /> | |
34 <output name="outFile" file="picard_CleanSam_test1.bam" ftype="bam" /> | |
35 </test> | |
36 </tests> | |
37 | |
38 <help> | |
39 | |
40 .. class:: infomark | |
41 | |
42 **Purpose** | |
43 | |
44 Read SAM/BAM and perform various fix-ups. Currently, the only fix-ups are: | |
45 | |
46 1. to soft-clip an alignment that hangs off the end of its reference sequence. | |
47 2. to set MAPQ to 0 if a read is unmapped. | |
48 | |
49 @dataset_collections@ | |
50 | |
51 @more_info@ | |
52 | |
53 </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
|
54 </tool> |