MitoHiFi
MitoHiFi copied to clipboard
`makeblastdb` output/error log is suppressed
Hello,
Thanks for your work on this tool. When running the docker container, BLAST querying fails due to a missing BLAST database (it was a Docker volume configuration issue on my end, but the issue is not about this.)
It would be helpful to receive output from the makeblastdb
command, but instead everything is sent to /dev/null
, and the status code is not even checked to see if there was an error:
subprocess.run(makeblastdb_cmd, stderr=subprocess.DEVNULL, stdout=subprocess.DEVNULL)
would it be possible to get this line changed so that I can properly debug this command instead of operating through guesswork?