Mercurial > repos > devteam > picard
annotate picard_CollectGcBiasMetrics.xml @ 17:fc288950c3b7 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit a55cff7dfc145ed17ec2ee9f6a70d51c6f9d74b6
author | iuc |
---|---|
date | Thu, 13 Apr 2017 19:09:24 -0400 |
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="CollectGcBiasMetrics" id="picard_CollectGcBiasMetrics" version="@TOOL_VERSION@.0"> |
5 | 2 <description>charts the GC bias metrics</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@ |
13
7e6fd3d0f16e
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
devteam
parents:
12
diff
changeset
|
11 @symlink_element_identifier@ |
5 | 12 ##set up input files |
13 | |
14 #set $reference_fasta_filename = "localref.fa" | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
15 |
5 | 16 #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
|
17 ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" && |
5 | 18 #else: |
19 #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) | |
20 #end if | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
21 |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
22 picard |
5 | 23 CollectGcBiasMetrics |
14
465cbb0cf2eb
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 74ee0f0b594075fab7f707aaffb4a7f9dac35f2f
devteam
parents:
13
diff
changeset
|
24 INPUT='$escaped_element_identifier' |
5 | 25 OUTPUT="${outFile}" |
26 CHART_OUTPUT="${pdfFile}" | |
27 SUMMARY_OUTPUT="${summaryFile}" | |
28 WINDOW_SIZE="${window_size}" | |
29 MINIMUM_GENOME_FRACTION="${minimum_genome_fraction}" | |
30 IS_BISULFITE_SEQUENCED="${is_bisulfite_sequenced}" | |
31 REFERENCE_SEQUENCE="${reference_fasta_filename}" | |
32 ASSUME_SORTED="${assume_sorted}" | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
33 |
5 | 34 VALIDATION_STRINGENCY="${validation_stringency}" |
35 QUIET=true | |
36 VERBOSITY=ERROR | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
37 |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
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"> | |
54 <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" /> | |
55 </when> | |
56 </conditional> | |
57 <param name="window_size" type="integer" value="100" label="The size of windows on the genome that are used to bin reads" help="WINDOW_SIZE; default=100"/> | |
58 <param name="minimum_genome_fraction" type="float" value="0.00005" label="For summary metrics, exclude GC windows that include less than this fraction of the genome" help="MINIMUM_GENOME_FRACTION; default=0.0005"/> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
59 <param name="is_bisulfite_sequenced" type="boolean" label="Calculate the base distribution over PF (passing filtering) reads only" checked="true" truevalue="true" falsevalue="false" help="PF_READS_ONLY"/> |
5 | 60 <param name="assume_sorted" type="boolean" label="Assume the input file is already sorted" checked="true" truevalue="true" falsevalue="false" help="ASSUME_SORTED"/> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
61 |
5 | 62 <expand macro="VS" /> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
63 |
5 | 64 </inputs> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
65 |
5 | 66 <outputs> |
67 <data format="tabular" name="summaryFile" label="${tool.name} on ${on_string}: Summary stats"/> | |
68 <data format="tabular" name="outFile" label="${tool.name} on ${on_string}: Summary data"/> | |
69 <data format="pdf" name="pdfFile" label="${tool.name} on ${on_string}: Chart PDF"/> | |
70 </outputs> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
71 |
5 | 72 <tests> |
73 <test> | |
74 <param name="window_size" value="100" /> | |
75 <param name="minimum_genome_fraction" value="0.00005" /> | |
76 <param name="assume_sorted" value="true" /> | |
77 <param name="is_bisulfite_sequenced" value="true" /> | |
78 <param name="reference_source_selector" value="history" /> | |
79 <param name="ref_file" value="picard_CollectGcBiasMetrics_ref.fa" /> | |
80 <param name="inputFile" value="picard_CollectGcBiasMetrics.bam" ftype="bam" /> | |
81 <output name="outFile" file="picard_CollectGcBiasMetrics_test1.tab" ftype="tabular" lines_diff="4"/> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
82 </test> |
5 | 83 </tests> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
84 |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
85 |
5 | 86 <help> |
87 | |
88 .. class:: infomark | |
89 | |
90 **Purpose** | |
91 | |
92 Program to chart the nucleotide distribution per cycle in a SAM or BAM file. | |
93 | |
94 @dataset_collections@ | |
95 | |
96 @description@ | |
97 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
98 ALIGNED_READS_ONLY=Boolean If set to true, calculate the base distribution over aligned reads only. Default value: |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
99 false. Possible values: {true, false} |
5 | 100 |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
101 PF_READS_ONLY=Boolean If set to true calculate the base distribution over PF reads only. Default value: false. |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
102 This option can be set to 'null' to clear the default value. Possible values: {true, |
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
103 false} |
5 | 104 |
105 ASSUME_SORTED=Boolean | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
106 AS=Boolean If true (default), then the sort order in the header file will be ignored. Default: True |
5 | 107 |
108 @more_info@ | |
109 | |
110 </help> | |
111 </tool> | |
112 | |
113 |