Mercurial > repos > devteam > picard
annotate picard_CollectInsertSizeMetrics.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 name="CollectInsertSizeMetrics" id="picard_CollectInsertSizeMetrics" version="@TOOL_VERSION@.0"> |
5 | 2 <description>plots distribution of insert sizes</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 <requirement type="package" version="3.3.1">r</requirement> |
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
8 </expand> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
5 | 10 @java_options@ |
11 ##set up input files | |
12 | |
13 #set $reference_fasta_filename = "localref.fa" | |
14 | |
15 #if str( $reference_source.reference_source_selector ) == "history": | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
16 ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" && |
5 | 17 #else: |
18 #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) | |
19 #end if | |
20 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
21 picard |
5 | 22 CollectInsertSizeMetrics |
23 INPUT="${inputFile}" | |
24 OUTPUT="${outFile}" | |
25 HISTOGRAM_FILE="${histFile}" | |
26 DEVIATIONS="${deviations}" | |
27 | |
28 #if str( $hist_width ): | |
29 HISTOGRAM_WIDTH="${hist_width}" | |
30 #end if | |
31 | |
32 MINIMUM_PCT="${min_pct}" | |
33 REFERENCE_SEQUENCE="${reference_fasta_filename}" | |
34 ASSUME_SORTED="${assume_sorted}" | |
35 METRIC_ACCUMULATION_LEVEL="${metric_accumulation_level}" | |
36 | |
37 VALIDATION_STRINGENCY="${validation_stringency}" | |
38 QUIET=true | |
39 VERBOSITY=ERROR | |
40 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
41 ]]></command> |
5 | 42 <inputs> |
43 <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."/> | |
44 <conditional name="reference_source"> | |
45 <param name="reference_source_selector" type="select" label="Load reference genome from"> | |
46 <option value="cached">Local cache</option> | |
47 <option value="history">History</option> | |
48 </param> | |
49 <when value="cached"> | |
50 <param name="ref_file" type="select" label="Using reference genome" help="REFERENCE_SEQUENCE"> | |
51 <options from_data_table="all_fasta"> | |
52 </options> | |
53 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> | |
54 </param> | |
55 </when> | |
56 <when value="history"> | |
57 <param name="ref_file" type="data" format="fasta" label="Use the folloing dataset as the reference sequence" help="REFERENCE_SEQUENCE; You can upload a FASTA sequence to the history and use it as reference" /> | |
58 </when> | |
59 </conditional> | |
60 <param name="deviations" type="float" value="10.0" label="Generate mean, sd and plots by trimming the data down to MEDIAN + DEVIATIONS*MEDIAN_ABSOLUTE_DEVIATION" help="DEVIATIONS; This option is offered because insert size data typically includes enough anomalous values from chimeras and other artifacts to make the mean and SD grossly misleading regarding the real distribution. default=10.0"/> | |
61 <param name="hist_width" type="integer" optional="True" label="Explicitly sets the Histogram width, overriding automatic truncation of Histogram tail" help="HISTOGRAM_WIDTH; optional"/> | |
62 <param name="min_pct" type="float" value="0.05" label="When generating the Histogram, discard any data categories (out of FR, TANDEM, RF) that have fewer than this percentage of overall reads" help="MINIMUM_PCT; (Range: 0 to 1). default=0.05. "/> | |
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="metric_accumulation_level" type="select" label="The level(s) at which to accumulate metrics" multiple="true" help="METRIC_ACCUMULATION_LEVEL"> | |
65 <option value="ALL_READS" selected="True">All reads</option> | |
66 <option value="SAMPLE">Sample</option> | |
67 <option value="LIBRARY">Library</option> | |
68 <option value="READ_GROUP">Read group</option> | |
69 </param> | |
70 | |
71 <expand macro="VS" /> | |
72 | |
73 </inputs> | |
74 | |
75 <outputs> | |
76 <data format="tabular" name="outFile"/> | |
77 <data format="pdf" name="histFile"/> | |
78 </outputs> | |
79 | |
80 <tests> | |
81 <test> | |
82 <param name="metric_accumulation_level" value="ALL_READS"/> | |
83 <param name="deviations" value="10.0" /> | |
84 <param name="hist_width" value="500" /> | |
85 <param name="min_pct" value="0.05" /> | |
86 <param name="assume_sorted" value="true" /> | |
87 <param name="reference_source_selector" value="history" /> | |
88 <param name="ref_file" value="picard_CollectInsertSizeMetrics_ref.fa" /> | |
89 <param name="inputFile" value="picard_CollectInsertSizeMetrics.bam" ftype="bam" /> | |
90 <output name="outFile" file="picard_CollectInsertSizeMetrics_test1.tab" ftype="tabular" lines_diff="4"/> | |
91 </test> | |
92 </tests> | |
93 | |
94 | |
95 <help> | |
96 | |
97 .. class:: infomark | |
98 | |
99 **Purpose** | |
100 | |
101 Reads a SAM or BAM dataset and writes a file containing metrics about the statistical distribution of insert size (excluding duplicates) and generates a Histogram plot. | |
102 | |
103 @dataset_collections@ | |
104 | |
105 @description@ | |
106 | |
107 | |
108 DEVIATIONS=Double Generate mean, sd and plots by trimming the data down to MEDIAN + | |
109 DEVIATIONS*MEDIAN_ABSOLUTE_DEVIATION. This is done because insert size data typically | |
110 includes enough anomalous values from chimeras and other artifacts to make the mean and | |
111 sd grossly misleading regarding the real distribution. Default value: 10.0. | |
112 | |
113 HISTOGRAM_WIDTH=Integer | |
114 W=Integer Explicitly sets the Histogram width, overriding automatic truncation of Histogram tail. | |
115 Also, when calculating mean and standard deviation, only bins <= Histogram_WIDTH will be | |
116 included. Default value: not set. | |
117 | |
118 MINIMUM_PCT=Float | |
119 M=Float When generating the Histogram, discard any data categories (out of FR, TANDEM, RF) that | |
120 have fewer than this percentage of overall reads. (Range: 0 to 1). Default value: 0.05. | |
121 | |
122 METRIC_ACCUMULATION_LEVEL=MetricAccumulationLevel | |
123 LEVEL=MetricAccumulationLevel The level(s) at which to accumulate metrics. Possible values: {ALL_READS, SAMPLE, | |
124 LIBRARY, READ_GROUP} This option may be specified 0 or more times. | |
125 | |
126 ASSUME_SORTED=Boolean | |
127 AS=Boolean If true (default), then the sort order in the header file will be ignored. Default | |
128 value: true. This option can be set to 'null' to clear the default value. Possible | |
129 values: {true, false} | |
130 | |
131 @more_info@ | |
132 | |
133 </help> | |
134 </tool> | |
135 | |
136 |