Skip to content
Snippets Groups Projects
Commit 65328c9c authored by Augustin Zidek's avatar Augustin Zidek
Browse files

Fix Singularity run commands

PiperOrigin-RevId: 698024666
parent cb2133d0
No related branches found
No related tags found
1 merge request!1Cloned AlphaFold 3 repo into this one
......@@ -385,7 +385,7 @@ singularity exec \
--bind <MODEL_PARAMETERS_DIR>:/root/models \
--bind <DB_DIR>:/root/public_databases \
alphafold3.sif \
python alphafold3/run_alphafold.py \
python run_alphafold.py \
--json_path=/root/af_input/fold_input.json \
--model_dir=/root/models \
--db_dir=/root/public_databases \
......@@ -396,13 +396,14 @@ Or with some databases on SSD in location `<SSD_DB_DIR>`:
```sh
singularity exec \
--nv alphafold3.simg \
--nv \
--bind $HOME/af_input:/root/af_input \
--bind $HOME/af_output:/root/af_output \
--bind <MODEL_PARAMETERS_DIR>:/root/models \
--bind <SSD_DB_DIR>:/root/public_databases \
--bind <DB_DIR>:/root/public_databases_fallback \
python alphafold3/run_alphafold.py \
alphafold3.sif \
python run_alphafold.py \
--json_path=/root/af_input/fold_input.json \
--model_dir=/root/models \
--db_dir=/root/public_databases \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment