Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Ecogenomics/CheckM
Browse files Browse the repository at this point in the history
  • Loading branch information
donovan-h-parks committed Apr 21, 2022
2 parents f4b4182 + f45269f commit d74bb68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions checkm/main.py
Expand Up @@ -108,10 +108,10 @@ def binFiles(self, binInput, binExtension, bCalledGenes):
binFile = files[2]
if not os.path.exists(binFile):
self.logger.warning(
"Skipping bin %s as it doesn't exists." % f)
"Skipping bin %s as it doesn't exists." % binFile)
elif os.stat(binFile).st_size == 0:
self.logger.warning(
"Skipping bin %s as it has a size of 0 bytes." % f)
"Skipping bin %s as it has a size of 0 bytes." % binFile)
else:
binFiles.append(binFile)
binIDs.add(os.path.basename(binFile))
Expand Down

0 comments on commit d74bb68

Please sign in to comment.