CongLabCode / DPAM

A domain parser for Alphafold models
29 stars 7 forks source link

Minor issue in DPAM.py #4

Closed ssrb19 closed 1 year ago

ssrb19 commented 1 year ago

Right now the code reads: if basedir[0] != '/': basedir = os.getcwd() + basedir

It should read: if basedir[0] != '/': basedir = os.getcwd() + '/' + basedir

CongLabCode commented 1 year ago

Thanks for pointing out the error

ssrb19 commented 1 year ago

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.