Mercurial > repos > devteam > picard
annotate picard_CollectAlignmentSummaryMetrics.xml @ 19:5053a18d9bc8 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 7036343b9ac0a0ffc2ce4f6db465b9298ef05e73
author | iuc |
---|---|
date | Mon, 16 Apr 2018 21:27:29 -0400 |
parents | 465cbb0cf2eb |
children | 2a17c789e0a5 |
rev | line source |
---|---|
19
5053a18d9bc8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 7036343b9ac0a0ffc2ce4f6db465b9298ef05e73
iuc
parents:
14
diff
changeset
|
1 <tool name="Collect Alignment Summary Metrics" id="picard_CASM" version="@TOOL_VERSION@.@WRAPPER_VERSION@"> |
5 | 2 <description>writes a file containing summary alignment metrics</description> |
3 <macros> | |
4 <import>picard_macros.xml</import> | |
19
5053a18d9bc8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 7036343b9ac0a0ffc2ce4f6db465b9298ef05e73
iuc
parents:
14
diff
changeset
|
5 <token name="@WRAPPER_VERSION@">0</token> |
5 | 6 </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
|
7 <expand macro="requirements" /> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
10
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
5 | 9 @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
|
10 @symlink_element_identifier@ |
5 | 11 ##set up input files |
12 | |
13 #set $reference_fasta_filename = "localref.fa" | |
10
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
14 |
19
5053a18d9bc8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 7036343b9ac0a0ffc2ce4f6db465b9298ef05e73
iuc
parents:
14
diff
changeset
|
15 @handle_reference_source@ |
10
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
16 |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
10
diff
changeset
|
17 picard |
5 | 18 CollectAlignmentSummaryMetrics |
14
465cbb0cf2eb
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 74ee0f0b594075fab7f707aaffb4a7f9dac35f2f
devteam
parents:
13
diff
changeset
|
19 INPUT='$escaped_element_identifier' |
5 | 20 OUTPUT="${outFile}" |
21 MAX_INSERT_SIZE=${maxinsert} | |
22 #for $sequence in $adapters: | |
23 ADAPTER_SEQUENCE="${sequence.adapter}" | |
24 #end for | |
10
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
25 #for $level in str($metric_accumulation_level).split(','): |
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
26 METRIC_ACCUMULATION_LEVEL="${level}" |
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
27 #end for |
5 | 28 IS_BISULFITE_SEQUENCED="${bisulphite}" |
10
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
29 |
5 | 30 REFERENCE_SEQUENCE="${reference_fasta_filename}" |
10
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
31 |
5 | 32 ASSUME_SORTED="${assume_sorted}" |
33 | |
34 VALIDATION_STRINGENCY="${validation_stringency}" | |
35 QUIET=true | |
36 VERBOSITY=ERROR | |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
37 |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
10
diff
changeset
|
38 ]]></command> |
5 | 39 <inputs> |
40 <param format="sam,bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset."/> | |
41 <conditional name="reference_source"> | |
42 <param name="reference_source_selector" type="select" label="Load reference genome from"> | |
43 <option value="cached">Local cache</option> | |
44 <option value="history">History</option> | |
45 </param> | |
46 <when value="cached"> | |
47 <param name="ref_file" type="select" label="Using reference genome" help="REFERENCE_SEQUENCE"> | |
48 <options from_data_table="all_fasta"> | |
49 </options> | |
50 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> | |
51 </param> | |
52 </when> | |
53 <when value="history"> | |
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 <param name="ref_file" type="data" format="fasta" label="Use the following dataset as the reference sequence" help="REFERENCE_SEQUENCE; You can upload a FASTA sequence to the history and use it as reference" /> |
5 | 55 </when> |
56 </conditional> | |
57 <param name="metric_accumulation_level" type="select" label="The level(s) at which to accumulate metrics" multiple="true" help="METRIC_ACCUMULATION_LEVEL"> | |
58 <option value="ALL_READS" selected="True">All reads</option> | |
59 <option value="SAMPLE">Sample</option> | |
60 <option value="LIBRARY">Library</option> | |
61 <option value="READ_GROUP">Read group</option> | |
62 </param> | |
63 <param name="assume_sorted" type="boolean" label="Assume the input file is already sorted" checked="true" truevalue="true" falsevalue="false" help="ASSUME_SORTED"/> | |
64 <param name="bisulphite" type="boolean" label="Input file contains Bisulphite sequenced reads" checked="false" falsevalue="false" truevalue="true" help="IS_BISULFITE_SEQUENCED"/> | |
65 <repeat name="adapters" title="Adapter" min="0" help="You can provide multiple adaptor sequences"> | |
9
5eaa8a968300
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 1869970193a1878acbc0f8a79b81dd02b37f1dc1
devteam
parents:
8
diff
changeset
|
66 <param name="adapter" type="text" label="Use this adaptor sequence" help="ADAPTER_SEQUENCE"/> |
5 | 67 </repeat> |
9
5eaa8a968300
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 1869970193a1878acbc0f8a79b81dd02b37f1dc1
devteam
parents:
8
diff
changeset
|
68 <param name="maxinsert" value="100000" type="integer" label="Larger paired end reads and inter-chromosomal pairs considered chimeric" help="MAX_INSERT_SIZE"/> |
5 | 69 <expand macro="VS" /> |
10
777ccdd1d6e4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
9
diff
changeset
|
70 |
5 | 71 </inputs> |
72 <outputs> | |
73 <data format="tabular" name="outFile" label="${tool.name} on ${on_string}: Summary stats"/> | |
74 </outputs> | |
75 <tests> | |
76 <test> | |
77 <param name="bisulphite" value="false" /> | |
78 <param name="sorted" value="true" /> | |
79 <param name="adaptors" value="" /> | |
80 <param name="maxinsert" value="100000" /> | |
81 <param name="reference_source_selector" value="history" /> | |
82 <param name="ref_file" value="picard_CASM_ref.fa" /> | |
83 <param name="inputFile" value="picard_CASM.bam" ftype="bam" /> | |
84 <output name="outFile" file="picard_CASM_test1.tab" ftype="tabular" lines_diff="4"/> | |
85 </test> | |
86 </tests> | |
87 <help> | |
88 | |
89 .. class:: infomark | |
90 | |
91 **Purpose** | |
92 | |
93 Reads a SAM or BAM file and writes a file containing summary alignment metrics. | |
94 | |
95 @dataset_collections@ | |
96 | |
97 @description@ | |
98 | |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
99 MAX_INSERT_SIZE=Integer Paired end reads above this insert size will be considered chimeric along with |
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
100 inter-chromosomal pairs. Default value: 100000. |
5 | 101 |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
102 ADAPTER_SEQUENCE=String List of adapter sequences to use when processing the alignment metrics This option may |
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
103 be specified 0 or more times. |
5 | 104 |
105 METRIC_ACCUMULATION_LEVEL=MetricAccumulationLevel | |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
106 LEVEL=MetricAccumulationLevel The level(s) at which to accumulate metrics. Possible values: {ALL_READS, SAMPLE, |
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
107 LIBRARY, READ_GROUP} This option may be specified 0 or more times. |
5 | 108 |
109 IS_BISULFITE_SEQUENCED=Boolean | |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
110 BS=Boolean Whether the SAM or BAM file consists of bisulfite sequenced reads. |
5 | 111 |
112 | |
113 REFERENCE_SEQUENCE=File | |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
114 R=File Reference sequence fasta Default value: null. |
5 | 115 |
116 ASSUME_SORTED=Boolean | |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
117 AS=Boolean If true (default), then the sort order in the header file will be ignored. |
5 | 118 |
119 @more_info@ | |
120 | |
121 </help> | |
19
5053a18d9bc8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 7036343b9ac0a0ffc2ce4f6db465b9298ef05e73
iuc
parents:
14
diff
changeset
|
122 <expand macro="citations" /> |
5 | 123 </tool> |