From 4d667b6e573b150791c85c78b0ff635cc839cbb5 Mon Sep 17 00:00:00 2001 From: Jethro Rainford Date: Tue, 6 Jul 2021 12:46:38 +0100 Subject: [PATCH] switch mean column to float in sub-threshold table --- bin/coverage_report_single.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/coverage_report_single.py b/bin/coverage_report_single.py index 877a1f0c..89948dad 100644 --- a/bin/coverage_report_single.py +++ b/bin/coverage_report_single.py @@ -479,7 +479,7 @@ def style_sub_threshold(self): dtypes = { 'gene': str, 'tx': str, 'chrom': str, 'exon': int, 'exon_len': int, - 'exon_start': int, 'exon_end': int, 'min': int, 'mean': int, + 'exon_start': int, 'exon_end': int, 'min': int, 'mean': float, 'max': int }