From 6c6ec6bf22b7342b6b43deb325a68cd223d565cb Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Wed, 9 Sep 2020 00:10:23 -0500 Subject: [PATCH] Fix indent take 2 --- hybpiper_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hybpiper_stats.py b/hybpiper_stats.py index ae2e960..aa5e8ac 100755 --- a/hybpiper_stats.py +++ b/hybpiper_stats.py @@ -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)