Mercurial > repos > devteam > picard
diff picard_CollectAlignmentSummaryMetrics.xml @ 4:2589e6207cb4 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
author | devteam |
---|---|
date | Tue, 13 Oct 2015 12:27:49 -0400 |
parents | 52fdfc45590a |
children | 08f69add4d06 |
line wrap: on
line diff
--- a/picard_CollectAlignmentSummaryMetrics.xml Thu Jul 16 15:32:31 2015 -0400 +++ b/picard_CollectAlignmentSummaryMetrics.xml Tue Oct 13 12:27:49 2015 -0400 @@ -1,21 +1,24 @@ -<tool name="Collect Alignment Summary Metrics" id="picard_CASM" version="@TOOL_VERSION@.0"> +<tool name="Collect Alignment Summary Metrics" id="picard_CASM" version="@TOOL_VERSION@.1"> <description>writes a file containing summary alignment metrics</description> <macros> <import>picard_macros.xml</import> </macros> <expand macro="requirements" /> + <stdio> + <exit_code range="1:" level="fatal"/> + </stdio> <command> @java_options@ ##set up input files #set $reference_fasta_filename = "localref.fa" - + #if str( $reference_source.reference_source_selector ) == "history": ln -s "${reference_source.ref_file}" "${reference_fasta_filename}" && #else: #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) #end if - + java -jar \$JAVA_JAR_PATH/picard.jar CollectAlignmentSummaryMetrics INPUT="${inputFile}" @@ -24,11 +27,13 @@ #for $sequence in $adapters: ADAPTER_SEQUENCE="${sequence.adapter}" #end for - METRIC_ACCUMULATION_LEVEL="${metric_accumulation_level}" + #for $level in str($metric_accumulation_level).split(','): + METRIC_ACCUMULATION_LEVEL="${level}" + #end for IS_BISULFITE_SEQUENCED="${bisulphite}" - + REFERENCE_SEQUENCE="${reference_fasta_filename}" - + ASSUME_SORTED="${assume_sorted}" VALIDATION_STRINGENCY="${validation_stringency}" @@ -63,23 +68,15 @@ <param name="assume_sorted" type="boolean" label="Assume the input file is already sorted" checked="true" truevalue="true" falsevalue="false" help="ASSUME_SORTED"/> <param name="bisulphite" type="boolean" label="Input file contains Bisulphite sequenced reads" checked="false" falsevalue="false" truevalue="true" help="IS_BISULFITE_SEQUENCED"/> <repeat name="adapters" title="Adapter" min="0" help="You can provide multiple adaptor sequences"> - <param name="adapter" type="text" size="50" label="Use this adaptor sequence" help="ADAPTER_SEQUENCE"/> + <param name="adapter" type="text" label="Use this adaptor sequence" help="ADAPTER_SEQUENCE"/> </repeat> - <param name="maxinsert" value="100000" type="integer" label="Larger paired end reads and inter-chromosomal pairs considered chimeric" size="20" help="MAX_INSERT_SIZE"/> - + <param name="maxinsert" value="100000" type="integer" label="Larger paired end reads and inter-chromosomal pairs considered chimeric" help="MAX_INSERT_SIZE"/> <expand macro="VS" /> - + </inputs> - <outputs> <data format="tabular" name="outFile" label="${tool.name} on ${on_string}: Summary stats"/> </outputs> - - <stdio> - <exit_code range="1:" level="fatal"/> - </stdio> - - <tests> <test> <param name="bisulphite" value="false" /> @@ -92,7 +89,6 @@ <output name="outFile" file="picard_CASM_test1.tab" ftype="tabular" lines_diff="4"/> </test> </tests> - <help> .. class:: infomark