We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb4c35 commit 4207c0fCopy full SHA for 4207c0f
lib/BtCore.py
@@ -247,8 +247,9 @@ def parseCovs(self, covLibObjs):
247
cov_dict = BtIO.readCov(covLib.f, set(self.dict_of_blobs))
248
if not len(cov_dict) == self.seqs:
249
print BtLog.warn_d['4'] % covLib.f
250
- covLib.cov_sum += cov
251
- self.dict_of_blobs[name].addCov(covLib.name, cov)
+ for name, cov in cov_dict.items():
+ covLib.cov_sum += cov
252
+ self.dict_of_blobs[name].addCov(covLib.name, cov)
253
else:
254
pass
255
covLib.mean_cov = covLib.cov_sum/self.seqs
0 commit comments