Skip to content

Commit

Permalink
Merge branch 'master' into ct-lastal-filter-qc-check
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed Jun 7, 2019
2 parents c2b50bf + 028a72d commit 9c5d75e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipes/WDL/workflows/tasks/tasks_demux.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ task illumina_demux {

String? flowcell
Int? minimumBaseQuality = 10
Int? maxMismatches = 1
Int? maxMismatches = 0
Int? minMismatchDelta
Int? maxNoCalls
String? readStructure
Expand Down
2 changes: 1 addition & 1 deletion tools/picard.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def execute(
class ExtractIlluminaBarcodesTool(PicardTools):
subtoolName = 'ExtractIlluminaBarcodes'
jvmMemDefault = '8g'
defaults = {'read_structure': '101T8B8B101T', 'max_mismatches': 1, 'minimum_base_quality': 10, 'num_processors': 0}
defaults = {'read_structure': '101T8B8B101T', 'max_mismatches': 0, 'minimum_base_quality': 10, 'num_processors': 0}
option_list = (
'read_structure', 'max_mismatches', 'minimum_base_quality', 'min_mismatch_delta', 'max_no_calls',
'minimum_quality', 'compress_outputs', 'num_processors'
Expand Down

0 comments on commit 9c5d75e

Please sign in to comment.