Closed schultzm closed 3 years ago
I have debugged a few things such as from io import StringIO refactored to StringIO() minor version number removed single quotes from BLAST call added .decode('UTF-8') to process.communicate()[0]
from io import StringIO
StringIO()
BLAST
.decode('UTF-8')
process.communicate()[0]
Bump
I thought the whole tool was being rewritten from scratch using proper python stuff?
I have debugged a few things such as
from io import StringIO
refactored toStringIO()
minor version number removed single quotes fromBLAST
call added.decode('UTF-8')
toprocess.communicate()[0]