Mercurial > repos > devteam > picard
annotate picard_CollectBaseDistributionByCycle.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="CollectBaseDistributionByCycle" id="picard_CollectBaseDistributionByCycle" version="@TOOL_VERSION@.0"> |
5 | 2 <description>charts the nucleotide distribution per cycle in a SAM or 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:
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 CollectBaseDistributionByCycle |
23 INPUT="${inputFile}" | |
24 OUTPUT="${outFile}" | |
25 CHART_OUTPUT="${pdfFile}" | |
26 ALIGNED_READS_ONLY="${aligned_reads_only}" | |
27 PF_READS_ONLY="${pf_reads_only}" | |
28 REFERENCE_SEQUENCE="${reference_fasta_filename}" | |
29 ASSUME_SORTED="${assume_sorted}" | |
30 | |
31 VALIDATION_STRINGENCY="${validation_stringency}" | |
32 QUIET=true | |
33 VERBOSITY=ERROR | |
34 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
35 ]]></command> |
5 | 36 <inputs> |
37 <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."/> | |
38 <conditional name="reference_source"> | |
39 <param name="reference_source_selector" type="select" label="Load reference genome from"> | |
40 <option value="cached">Local cache</option> | |
41 <option value="history">History</option> | |
42 </param> | |
43 <when value="cached"> | |
44 <param name="ref_file" type="select" label="Using reference genome" help="REFERENCE_SEQUENCE"> | |
45 <options from_data_table="all_fasta"> | |
46 </options> | |
47 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> | |
48 </param> | |
49 </when> | |
50 <when value="history"> | |
51 <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" /> | |
52 </when> | |
53 </conditional> | |
54 <param name="aligned_reads_only" type="boolean" label="Calculate the base distribution over aligned reads only" checked="true" truevalue="true" falsevalue="false" help="ALIGNED_READS_ONLY"/> | |
55 <param name="pf_reads_only" type="boolean" label="Calculate the base distribution over PF (passing filtering) reads only" checked="true" truevalue="true" falsevalue="false" help="PF_READS_ONLY"/> | |
56 <param name="assume_sorted" type="boolean" label="Assume the input file is already sorted" checked="true" truevalue="true" falsevalue="false" help="ASSUME_SORTED"/> | |
57 | |
58 <expand macro="VS" /> | |
59 | |
60 </inputs> | |
61 | |
62 <outputs> | |
63 <data format="tabular" name="outFile"/> | |
64 <data format="pdf" name="pdfFile"/> | |
65 </outputs> | |
66 | |
67 <tests> | |
68 <test> | |
69 <param name="aligned_reads_only" value="true" /> | |
70 <param name="pf_reads_only" value="true" /> | |
71 <param name="assume_sorted" value="true" /> | |
72 <param name="reference_source_selector" value="history" /> | |
73 <param name="ref_file" value="picard_CollectBaseDistributionByCycle_ref.fa" /> | |
74 <param name="inputFile" value="picard_CollectBaseDistributionByCycle.bam" ftype="bam" /> | |
75 <output name="outFile" file="picard_CollectBaseDistributionByCycle_test1.tab" ftype="tabular" lines_diff="4"/> | |
76 </test> | |
77 </tests> | |
78 | |
79 | |
80 <help> | |
81 | |
82 .. class:: infomark | |
83 | |
84 **Purpose** | |
85 | |
86 Program to chart the nucleotide distribution per cycle in a SAM or BAM file. | |
87 | |
88 @dataset_collections@ | |
89 | |
90 @description@ | |
91 | |
92 ALIGNED_READS_ONLY=Boolean If set to true, calculate the base distribution over aligned reads only. Default value: | |
93 false. This option can be set to 'null' to clear the default value. Possible values: | |
94 {true, false} | |
95 | |
96 PF_READS_ONLY=Boolean If set to true calculate the base distribution over PF reads only. Default value: false. | |
97 This option can be set to 'null' to clear the default value. Possible values: {true, | |
98 false} | |
99 | |
100 REFERENCE_SEQUENCE=File | |
101 R=File Reference sequence fasta Default value: null. | |
102 | |
103 ASSUME_SORTED=Boolean | |
104 AS=Boolean If true (default), then the sort order in the header file will be ignored. Default | |
105 | |
106 @more_info@ | |
107 | |
108 </help> | |
109 </tool> | |
110 | |
111 |