Skip to content

Commit

Permalink
picard: implement missing parameters (#4737)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias authored Aug 22, 2022
1 parent ef548ee commit 0244aa3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions tools/picard/picard_CollectSequencingArtifactsMetrics.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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'/>
Expand Down
3 changes: 2 additions & 1 deletion tools/picard/picard_ValidateSamFile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0244aa3

Please sign in to comment.