Mercurial > repos > devteam > picard
annotate picard_AddCommentsToBam.xml @ 15:00fe2ff64467 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit f65b40f4eb3c3431b8d9213f86238deebfd6bc29
author | devteam |
---|---|
date | Thu, 08 Dec 2016 06:43:38 -0500 |
parents | 465cbb0cf2eb |
children | 5053a18d9bc8 |
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 name="AddCommentsToBam" id="picard_AddCommentsToBam" version="@TOOL_VERSION@.0"> |
5 | 2 <description>add comments to 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" /> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
5 | 8 @java_options@ |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
9 @symlink_element_identifier@ |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
10 picard |
5 | 11 AddCommentsToBam |
14
465cbb0cf2eb
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 74ee0f0b594075fab7f707aaffb4a7f9dac35f2f
devteam
parents:
13
diff
changeset
|
12 INPUT='$escaped_element_identifier' |
5 | 13 OUTPUT="${outFile}" |
14 #for $element in $comments: | |
15 COMMENT="${element.comment}" | |
16 #end for | |
17 QUIET=true | |
18 VERBOSITY=ERROR | |
19 VALIDATION_STRINGENCY=${validation_stringency} | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
20 ]]></command> |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
21 |
5 | 22 <inputs> |
23 <param format="bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset" /> | |
24 <repeat name="comments" title="Comment" min="1" help="You can provide multiple comments"> | |
9
5eaa8a968300
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 1869970193a1878acbc0f8a79b81dd02b37f1dc1
devteam
parents:
8
diff
changeset
|
25 <param name="comment" type="text" label="Add this comment to BAM dataset" help="COMMENT"/> |
5 | 26 </repeat> |
27 | |
28 <expand macro="VS" /> | |
29 | |
30 </inputs> | |
31 | |
32 <outputs> | |
33 <data name="outFile" format="bam" label="${tool.name} on ${on_string}: BAM with comments"/> | |
34 </outputs> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
35 |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
36 |
5 | 37 <tests> |
38 <test> | |
39 <param name="inputFile" value="picard_AddCommentsToBam.bam" /> | |
40 <param name="comment" value="test1" /> | |
41 <param name="validation_stringency" value="LENIENT" /> | |
42 <output name="outFile" file="picard_AddCommentsToBam_test1.bam" ftype="bam" /> | |
43 </test> | |
44 </tests> | |
45 <help> | |
46 | |
47 .. class:: infomark | |
48 | |
49 **Purpose** | |
50 | |
51 Adds one or more comments (@CO) to the header of a specified BAM dataset. | |
52 | |
53 @dataset_collections@ | |
54 | |
55 @description@ | |
56 | |
57 COMMENT=String | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
9
diff
changeset
|
58 C=String Comments to add to the BAM file This option may be specified 0 or more times. |
5 | 59 |
60 @more_info@ | |
61 </help> | |
62 </tool> | |
63 | |
64 | |
65 | |
66 | |
67 | |
68 | |
69 | |
70 | |
71 | |
72 | |
73 | |
74 | |
75 |