Skip to content

Commit

Permalink
change loging statement to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed Mar 20, 2024
1 parent 241210b commit a9901cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phylo/vphaser2.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def execute(self, inBam, outDir, numThreads=None): # pylint: disable=W0221
samtoolsTool = tools.samtools.SamtoolsTool()
samtoolsTool.index(inBam)

log.info("V-Phaser2 output directory: '%s'", outDir)
log.debug("V-Phaser2 output directory: '%s'", outDir)

cmd = [self.install_and_get_path(), '-i', inBam, '-o', outDir]
cmd_str = ' '.join(cmd)
Expand Down

0 comments on commit a9901cf

Please sign in to comment.