Skip to content

Commit de38859

Browse files
Dom LaetschDom Laetsch
authored andcommitted
...
1 parent 1008650 commit de38859

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/BtCore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,15 +238,15 @@ def parseCovs(self, covLibObjs):
238238
elif covLib.fmt == 'cas':
239239
cov_dict, covLib.reads_total, covLib.reads_mapped, read_cov_dict = BtIO.readCas(covLib.f, self.order_of_blobs)
240240
if covLib.reads_total == 0:
241-
print BtLog.warn['4'] % covLib.f
241+
print BtLog.warn_d['4'] % covLib.f
242242
for name, cov in cov_dict.items():
243243
covLib.cov_sum += cov
244244
self.dict_of_blobs[name].addCov(covLib.name, cov)
245245
self.dict_of_blobs[name].read_cov = {covLib.name : read_cov_dict[name]}
246246
elif covLib.fmt == 'cov':
247247
cov_dict = BtIO.readCov(covLib.f, set(self.dict_of_blobs))
248248
if not len(cov_dict) == self.seqs:
249-
print BtLog.warn['4'] % covLib.f
249+
print BtLog.warn_d['4'] % covLib.f
250250
covLib.cov_sum += cov
251251
self.dict_of_blobs[name].addCov(covLib.name, cov)
252252
else:

0 commit comments

Comments
 (0)