Skip to content

Commit 82e74e4

Browse files
Dom LaetschDom Laetsch
authored andcommitted
...
1 parent 22efd89 commit 82e74e4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

comparecov.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,15 @@
135135
blobDB = bt.BlobDb('new')
136136
blobDB.load(blobdb_f)
137137

138+
# clean cov_dict from coverages below
139+
#for name in cov_dict:
140+
# print name, blobDB.dict_of_blobs[name]
141+
138142
title = blobDB.title
139143
if plot_title:
140144
plot_title = title
141145

146+
142147
# Is taxrule sane and was it computed?
143148
if taxrule not in blobDB.taxrules:
144149
BtLog.error('11', taxrule, blobDB.taxrules)

lib/BtPlot.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,10 +401,7 @@ def plotScatterCov(self, cov_lib, cov_dict, info_flag, x_label, y_label, scale,
401401
i += 1
402402
group_length_array = array(self.stats[group]['length'])
403403
group_cov_y_array = array([cov_dict[name] for name in self.stats[group]['name']])
404-
print len(group_cov_y_array)
405404
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])
408405
# calculate values for legend
409406
if len(group_length_array) > 0:
410407
group_span_in_mb = round(self.stats[group]['span_visible']/1000000, 2)

0 commit comments

Comments
 (0)