Skip to content

Commit

Permalink
Fix indent take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mossmatters committed Sep 9, 2020
1 parent 6313a82 commit 6c6ec6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hybpiper_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def enrich_efficiency_bwa(bamfilename):
mappedReads += float(flagstat_results[4].split()[0])
try:
pctMapped = mappedReads/numReads
except ZeroDivisionError:
except ZeroDivisionError:
pctMapped = 0.0
return str(int(numReads)),str(int(mappedReads)),"{0:.3f}".format(pctMapped)

Expand Down

0 comments on commit 6c6ec6b

Please sign in to comment.