Skip to content

Commit

Permalink
switch mean column to float in sub-threshold table
Browse files Browse the repository at this point in the history
  • Loading branch information
jethror1 committed Jul 6, 2021
1 parent bebb5df commit 4d667b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/coverage_report_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 4d667b6

Please sign in to comment.