Some of the files within LigandMPNN's repo (like LigandMPNN/openfold/np/residue_constants.py and ./openfold/data/data_modules.py) contain certain modules (e.g. tree and ml_collections respectively) that were not downloaded into the virtualenv if following the currently available instructions, and would cause import errors if LigandMPNN was attempted to run on DRAC clusters.
This new commit would fix these issues (mainly by running pip install ml_collections dm_tree in the respective virtualenv).
Some of the files within LigandMPNN's repo (like
LigandMPNN/openfold/np/residue_constants.py
and./openfold/data/data_modules.py
) contain certain modules (e.g.tree
andml_collections
respectively) that were not downloaded into the virtualenv if following the currently available instructions, and would cause import errors if LigandMPNN was attempted to run on DRAC clusters.This new commit would fix these issues (mainly by running
pip install ml_collections dm_tree
in the respective virtualenv).