Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

picard: implement missing parameters #4737

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tools/picard/picard_CollectSequencingArtifactsMetrics.xml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<description>Collect metrics to quantify single-base sequencing artifacts</description>
<macros>
<import>picard_macros.xml</import>
<token name="@WRAPPER_VERSION@">1</token>
<token name="@WRAPPER_VERSION@">2</token>
</macros>
<expand macro="requirements">
<requirement type="package" version="3.4.1">r-base</requirement>
@@ -31,7 +31,8 @@
INCLUDE_UNPAIRED='${unpaired}'
MAXIMUM_INSERT_SIZE='${max_size}'
MINIMUM_INSERT_SIZE='${min_size}'
MINIMUM_MAPPING_QUALITY='${minim_map_quality}';
MINIMUM_MAPPING_QUALITY='${minim_map_quality}'
VALIDATION_STRINGENCY='${validation_stringency}';
]]></command>
<inputs>
<param name='inputFile' format="sam,bam" type='data' label='SAM/BAM Input file'/>
3 changes: 2 additions & 1 deletion tools/picard/picard_ValidateSamFile.xml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<description>assess validity of SAM/BAM dataset</description>
<macros>
<import>picard_macros.xml</import>
<token name="@WRAPPER_VERSION@">1</token>
<token name="@WRAPPER_VERSION@">2</token>
</macros>
<expand macro="requirements" />
<stdio>
@@ -45,6 +45,7 @@
REFERENCE_SEQUENCE="${reference_fasta_filename}"
IGNORE_WARNINGS="${ignore_warnings}"
IS_BISULFITE_SEQUENCED="${is_bisulfite_sequenced}"
VALIDATE_INDEX="${validate_index}"
MAX_OPEN_TEMP_FILES=`ulimit -Sn`
VERBOSITY=ERROR