You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mkdocs-project-dir/docs/Software_Guides/AlphaFold3.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -25,10 +25,10 @@ Having added the model weights, you will also need to create input and output di
25
25
You should now have three locations which are unique to you. For ease of reference in the job script I'm going to set environment variables to them so that the command-line is consistent and so you can change them without messing with the command line options.
26
26
27
27
```
28
-
export AF3_INPUT=/scratch/scratch/uccaoke/af3_input # Replace with your input folder
28
+
export AF3_INPUT=/home/${USER}/Scratch/af3_input # Replace with your input folder
29
29
export AF3_INPUT_FILE=fold_input.json # Replace with a file in your input folder
30
-
export AF3_OUTPUT=/scratch/scratch/uccaoke/af3_output # Replace with your output folder
31
-
export AF3_WEIGHTS=/scratch/scratch/uccaoke/weights # Replace with the folder you put the weights in
30
+
export AF3_OUTPUT=/home/${USER}/Scratch/af3_output # Replace with your output folder
31
+
export AF3_WEIGHTS=/home/${USER}/Scratch/weights # Replace with the folder you put the weights in
32
32
```
33
33
34
34
## Running AlphaFold3
@@ -59,10 +59,10 @@ Write a job script that requests GPU nodes:
59
59
# Set the working directory to the current working directory.
60
60
#$ -cwd
61
61
62
-
export AF3_INPUT=/scratch/scratch/uccaoke/af3_input # Replace with your input folder
62
+
export AF3_INPUT=/home/${USER}/Scratch/af3_input # Replace with your input folder
63
63
export AF3_INPUT_FILE=fold_input.json # Replace with a file in your input folder
64
-
export AF3_OUTPUT=/scratch/scratch/uccaoke/af3_output # Replace with your output folder
65
-
export AF3_WEIGHTS=/scratch/scratch/uccaoke/weights # Replace with the folder you put the weights in
64
+
export AF3_OUTPUT=/home/${USER}/Scratch/af3_output # Replace with your output folder
65
+
export AF3_WEIGHTS=/home/${USER}/Scratch/weights # Replace with the folder you put the weights in
For other options you can pass to AlphaFold 3, please consult [DeepMind's documentation](https://github.com/google-deepmind/alphafold3/tree/main/docs).
106
+
For other options you can pass to AlphaFold 3, please consult [DeepMind's documentation](https://github.com/google-deepmind/alphafold3/tree/main/docs).
0 commit comments