Mercurial > repos > devteam > picard
comparison picard_EstimateLibraryComplexity.xml @ 20:2a17c789e0a5 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 5ebd6c8453b49dd6a36e372eb1eb6e323bb7ad8a
author | iuc |
---|---|
date | Tue, 19 Jun 2018 11:28:49 -0400 |
parents | 5053a18d9bc8 |
children | 6f9c0884a3e7 |
comparison
equal
deleted
inserted
replaced
19:5053a18d9bc8 | 20:2a17c789e0a5 |
---|---|
1 <tool name="EstimateLibraryComplexity" id="picard_EstimateLibraryComplexity" version="@TOOL_VERSION@.@WRAPPER_VERSION@"> | 1 <tool name="EstimateLibraryComplexity" id="picard_EstimateLibraryComplexity" version="@TOOL_VERSION@.@WRAPPER_VERSION@"> |
2 <description>assess sequence library complexity from read sequences</description> | 2 <description>assess sequence library complexity from read sequences</description> |
3 <macros> | 3 <macros> |
4 <import>picard_macros.xml</import> | 4 <import>picard_macros.xml</import> |
5 <token name="@WRAPPER_VERSION@">0</token> | 5 <token name="@WRAPPER_VERSION@">1</token> |
6 </macros> | 6 </macros> |
7 <expand macro="requirements" /> | 7 <expand macro="requirements" /> |
8 <command detect_errors="exit_code"><![CDATA[ | 8 <command detect_errors="exit_code"><![CDATA[ |
9 @java_options@ | 9 @java_options@ |
10 @symlink_element_identifier@ | 10 @symlink_element_identifier@ |
23 OPTICAL_DUPLICATE_PIXEL_DISTANCE="${optical_duplicate_pixel_distance}" | 23 OPTICAL_DUPLICATE_PIXEL_DISTANCE="${optical_duplicate_pixel_distance}" |
24 | 24 |
25 VALIDATION_STRINGENCY="${validation_stringency}" | 25 VALIDATION_STRINGENCY="${validation_stringency}" |
26 QUIET=true | 26 QUIET=true |
27 VERBOSITY=ERROR | 27 VERBOSITY=ERROR |
28 @TMPDIR_OPTION@ | |
28 | 29 |
29 ]]></command> | 30 ]]></command> |
30 <inputs> | 31 <inputs> |
31 <param format="bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset" /> | 32 <param format="bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset" /> |
32 <param name="min_identical_bases" type="integer" value="5" label="The minimum number of bases at the starts of reads that must be identical for reads to be grouped together for duplicate detection" help="MIN_IDENTICAL_BASES; In effect total_reads / 4^max_id_bases reads will be compared at a time, so lower numbers will produce more accurate results but consume exponentially more memory and CPU; default=5"/> | 33 <param name="min_identical_bases" type="integer" value="5" label="The minimum number of bases at the starts of reads that must be identical for reads to be grouped together for duplicate detection" help="MIN_IDENTICAL_BASES; In effect total_reads / 4^max_id_bases reads will be compared at a time, so lower numbers will produce more accurate results but consume exponentially more memory and CPU; default=5"/> |