FAQ: gget alphafold #39
Unanswered
lauraluebbert
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is a compilation of general questions regarding
gget alphafold
. If you encounter a problem while usinggget alphafold
, please update to the latest gget version (pip install -U gget
) and feel free to comment here or open a new issue.1. openmm version 7.5.1 is no longer available from conda-forge. How can I install it?
Hopefully, in future versions we will be able to drop the requirement for this exact version of openmm. For now, please install openmm using command
conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1
(Recommendation: Follow withconda update -qy conda
to update conda to the latest version afterwards). Follow by runninggget setup alpahfold
/gget.setup("alphafold")
. For use in Google Colab, see this notebook.2. What to do if the model parameter download fails while calling gget setup?
Make sure you have the latest version of curl installed. If the curl download fails, you can manually download the model parameters from https://storage.googleapis.com/alphafold/alphafold_params_colab_2022-03-02.tar into the gget/bins/alphafold/params/ folder inside the gget package folder (you might have to create the 'params' folder).
3. I've encountered the following error: "ModuleNotFoundError: No module named 'google.protobuf'". What can I do?
This seems to be a known problem with google protobuf discussed here and here. This issue can be resolved by reinstalling protobuf using conda or pip, e.g.
conda remove -qy protobuf && conda install -qy protobuf
.4. How can I plot the PDB file in 3D and colored by the model prediction error from the files returned by gget alpahfold?
PDB files can be viewed interactively in 3D online or using the program PyMOL. To recreate the interactive plot colored by prediction error (as plotted automatically by gget alphafold when called from a Python environment) from the files returned by gget, please update to gget version ≥ 0.3.10 and use the following code (adjusted from AlphaFold Colab):
Beta Was this translation helpful? Give feedback.
All reactions