Skip to content

Commit

Permalink
renamed docker/ to Docker/
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjohnhaas committed Oct 17, 2019
1 parent 255a941 commit 7f3d024
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/annotate_PASS_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def evaluate_PASS_reads(i, bamFile):
# Run Samtools view on the BAM file with the given location

cmd = "samtools view {} {}".format(bamFile, bamposition)
sam_output = subprocess.check_output(cmd, shell=True, encoding='utf8')
sam_output = subprocess.check_output(cmd, shell=True).decode()

# separate the Samtools view output by lines (rstrip to remove last \n)
sam_output = sam_output.rstrip().split("\n")
Expand Down

0 comments on commit 7f3d024

Please sign in to comment.