Skip to content

Commit

Permalink
debugging issue with HISAT2 QC
Browse files Browse the repository at this point in the history
  • Loading branch information
proost committed Jul 25, 2017
1 parent 2d4b389 commit 82b7e81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipeline/check/quality.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ def check_hisat2(filename, cutoff=0, log=None):

with open(filename, 'r') as f:
lines = '\t'.join(f.readlines())
print(lines)
for l in lines:
l = l.strip()
print(l)
if "overall alignment" in l:
hits = re_mapped.search(l)
print(hits)
Expand Down

0 comments on commit 82b7e81

Please sign in to comment.