diff --git a/checkm/main.py b/checkm/main.py index bfd27ef..47be221 100755 --- a/checkm/main.py +++ b/checkm/main.py @@ -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))