Skip to content

Commit cca80f8

Browse files
Dom LaetschDom Laetsch
authored andcommitted
...
1 parent c681a78 commit cca80f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/BtPlot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def parseCovFile(cov_f):
8282
cov_dict[seq_name] = 0.02
8383
else:
8484
cov_dict[seq_name] = float(cov)
85-
8685
except:
8786
BtLog.error('25', cov_f)
8887
return cov_dict
@@ -402,7 +401,10 @@ def plotScatterCov(self, cov_lib, cov_dict, info_flag, x_label, y_label, scale,
402401
i += 1
403402
group_length_array = array(self.stats[group]['length'])
404403
group_cov_y_array = array([cov_dict[name] for name in self.stats[group]['name']])
404+
print len(group_cov_y_array)
405405
group_cov_x_array = array(self.stats[group]['covs'][cov_lib])
406+
print len(group_cov_x_array)
407+
print len([l for l in self.stats[group]['length'] if l >= 100 else pass])
406408
# calculate values for legend
407409
if len(group_length_array) > 0:
408410
group_span_in_mb = round(self.stats[group]['span_visible']/1000000, 2)

0 commit comments

Comments
 (0)