Skip to content

Commit

Permalink
fix: bwa_mem2 wrapper only used right read (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Jan 2, 2023
1 parent 7c35ec3 commit 53c88aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snappy_pipeline/workflows/variant_calling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ def get_resource_usage(self, action: str) -> ResourceUsage:
self._validate_action(action)
return ResourceUsage(
threads=1,
time="00:10:00",
time="01:00:00",
memory="4G",
)

Expand Down
2 changes: 1 addition & 1 deletion snappy_wrappers/wrappers/bwa_mem2/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
(zcat force {input_right})
else
seqtk mergepe \
<(zcat {input_right} | tee >(wc -l > $TMPDIR/count_left)) \
<(zcat {input_left} | tee >(wc -l > $TMPDIR/count_left)) \
<(zcat {input_right} | tee >(wc -l > $TMPDIR/count_right))
fi
}}
Expand Down

0 comments on commit 53c88aa

Please sign in to comment.