Mercurial > repos > devteam > picard
comparison picard_QualityScoreDistribution.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 |
comparison
equal
deleted
inserted
replaced
11:efc56ee1ade4 | 12:05087b27692a |
---|---|
2 <description>chart quality score distribution</description> | 2 <description>chart quality score distribution</description> |
3 <macros> | 3 <macros> |
4 <import>picard_macros.xml</import> | 4 <import>picard_macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="requirements"> | 6 <expand macro="requirements"> |
7 <requirement type="package" version="3.1.2">R</requirement> | 7 <requirement type="package" version="3.3.1">r</requirement> |
8 </expand> | 8 </expand> |
9 <command> | 9 <command detect_errors="exit_code"><![CDATA[ |
10 @java_options@ | 10 @java_options@ |
11 ##set up input files | 11 ##set up input files |
12 | 12 |
13 #set $reference_fasta_filename = "localref.fa" | 13 #set $reference_fasta_filename = "localref.fa" |
14 | 14 |
15 #if str( $reference_source.reference_source_selector ) == "history": | 15 #if str( $reference_source.reference_source_selector ) == "history": |
16 ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" && | 16 ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" && |
17 #else: | 17 #else: |
18 #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) | 18 #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) |
19 #end if | 19 #end if |
20 | 20 |
21 java -jar \$JAVA_JAR_PATH/picard.jar | 21 picard |
22 QualityScoreDistribution | 22 QualityScoreDistribution |
23 INPUT="${inputFile}" | 23 INPUT="${inputFile}" |
24 OUTPUT="${outFile}" | 24 OUTPUT="${outFile}" |
25 CHART_OUTPUT="${pdfFile}" | 25 CHART_OUTPUT="${pdfFile}" |
26 REFERENCE_SEQUENCE="${reference_fasta_filename}" | 26 REFERENCE_SEQUENCE="${reference_fasta_filename}" |
32 | 32 |
33 VALIDATION_STRINGENCY="${validation_stringency}" | 33 VALIDATION_STRINGENCY="${validation_stringency}" |
34 QUIET=true | 34 QUIET=true |
35 VERBOSITY=ERROR | 35 VERBOSITY=ERROR |
36 | 36 |
37 </command> | 37 ]]></command> |
38 <inputs> | 38 <inputs> |
39 <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"/> | 39 <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"/> |
40 <conditional name="reference_source"> | 40 <conditional name="reference_source"> |
41 <param name="reference_source_selector" type="select" label="Load reference genome from"> | 41 <param name="reference_source_selector" type="select" label="Load reference genome from"> |
42 <option value="cached">Local cache</option> | 42 <option value="cached">Local cache</option> |
78 <param name="inputFile" value="picard_QualityScoreDistribution.bam" ftype="bam" /> | 78 <param name="inputFile" value="picard_QualityScoreDistribution.bam" ftype="bam" /> |
79 <output name="outFile" file="picard_QualityScoreDistribution_test1.tab" ftype="tabular" lines_diff="4"/> | 79 <output name="outFile" file="picard_QualityScoreDistribution_test1.tab" ftype="tabular" lines_diff="4"/> |
80 </test> | 80 </test> |
81 </tests> | 81 </tests> |
82 | 82 |
83 <stdio> | |
84 <exit_code range="1:" level="fatal"/> | |
85 </stdio> | |
86 | 83 |
87 <help> | 84 <help> |
88 | 85 |
89 .. class:: infomark | 86 .. class:: infomark |
90 | 87 |