Closed ssrb19 closed 1 year ago
Right now the code reads: if basedir[0] != '/': basedir = os.getcwd() + basedir
if basedir[0] != '/': basedir = os.getcwd() + basedir
It should read: if basedir[0] != '/': basedir = os.getcwd() + '/' + basedir
if basedir[0] != '/': basedir = os.getcwd() + '/' + basedir
Thanks for pointing out the error
Thanks for fixing it. The code now runs quite quickly. Maybe MMSeqs2 will help it a bit more. It's taking on average 6-10 mins per protein on 16 CPUs.
Right now the code reads:
if basedir[0] != '/': basedir = os.getcwd() + basedir
It should read:
if basedir[0] != '/': basedir = os.getcwd() + '/' + basedir