| 210 | 1. [=#alphafold How can I run '''AlphaFold 2.0''' here at Whitehead?] |
| 211 | * Log on to tempest.wi.mit.edu -- ask IT if your account doesn't allow you to do this. |
| 212 | * ssh -Y USERNAME@tempest |
| 213 | * Modify the environment with a path to the required data: |
| 214 | * export ALPHAFOLD_DATA_PATH=/alphafold/data |
| 215 | * Run the main AlphaFold 2.0 command, like |
| 216 | {{{ |
| 217 | singularity run -B $ALPHAFOLD_DATA_PATH:/data -B .:/etc \ |
| 218 | --pwd /app/alphafold \ |
| 219 | --nv /alphafold/alphafold_2.0.0.sif \ |
| 220 | --fasta_paths=/data/query.fasta \ |
| 221 | --output_dir=/tmp/AlphaFold_output \ |
| 222 | --model_names=model_1 \ |
| 223 | --preset=full_dbs \ |
| 224 | --data_dir=/data \ |
| 225 | --max_template_date=2020-05-14 \ |
| 226 | --uniref90_database_path=/data/uniref90/uniref90.fasta \ |
| 227 | --mgnify_database_path=/data/mgnify/mgy_clusters.fa \ |
| 228 | --uniclust30_database_path=/data/uniclust30/uniclust30_2018_08/uniclust30_2018_08 \ |
| 229 | --bfd_database_path=/data/bfd/bfd_metaclust_clu_complete_id30_c90_final_seq.sorted_opt \ |
| 230 | --pdb70_database_path=/data/pdb70/pdb70 \ |
| 231 | --template_mmcif_dir=/data/pdb_mmcif/mmcif_files \ |
| 232 | --obsolete_pdbs_path=/data/pdb_mmcif/obsolete.dat |
| 233 | }}} |
| 234 | * More information, including an explanation of the output files, is here: https://github.com/deepmind/alphafold |