Skip to content

Commit 4741aa1

Browse files
authored
Test update (#38)
* add 1.96 version to picard calls * add set -o pipefail to bwa call per jaeyoung bug ticket, update version
1 parent fa331ce commit 4741aa1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmo/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# This file is originally generated from Git information by running 'setup.py
33
# version'. Distribution tarballs contain a pre-generated copy of this file.
44

5-
__version__ = '1.4.3'
5+
__version__ = '1.4.4'

cmo/bwa.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def mem(self, fasta, fastq1, fastq2, output, args_dict=None, no_bam=False):
5656
if no_bam:
5757
cmd = cmd + [">", output]
5858
else:
59-
cmd = cmd + ["|", self.samtools_cmd, "view -bh - ", ">", output]
59+
cmd = ["set -o pipefail;"] + cmd + ["|", self.samtools_cmd, "view -bh - ", ">", output]
6060
return " ".join(cmd)
6161
def sampe(self, fasta, sai1, sai2, fq1, fq2, output_bam, args_dict=None, no_bam=False):
6262
cmd = [self.bwa_cmd, "sampe"]

0 commit comments

Comments
 (0)