Skip to content

Commit

Permalink
Remove wget from the README and clarify how to run the system.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 289630974
  • Loading branch information
Augustin-Zidek authored and diegolascasas committed Jan 15, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent d8d6d1e commit 32abf74
Showing 2 changed files with 8 additions and 12 deletions.
19 changes: 7 additions & 12 deletions alphafold_casp13/README.md
Original file line number Diff line number Diff line change
@@ -34,6 +34,10 @@ pip install wheel
pip install -r alphafold_casp13/requirements.txt
```

Alternatively, you can just use the `run_eval.sh` script provided which runs
these commands for you, see the section on running the system below for more
details.

## Data

While the code is licensed under the Apache License, the AlphaFold weights and
@@ -54,12 +58,7 @@ Once you have obtained access, you can download the data from

The dataset to reproduce AlphaFold's CASP13 results can be downloaded from
[Google Cloud Storage](https://console.cloud.google.com/storage/browser/alphafold_casp13_data).

Download it e.g. using `wget` (the file is about 43.5 GB):

```shell
wget https://storage.googleapis.com/alphafold_casp13_data/casp13_data.zip
```
The dataset is in a file called `casp13_data.zip` which has about **43.5 GB**.

The zip file contains 1 directory for each CASP13 target and a `LICENSE.md`
file. Each target directory contains the following files:
@@ -86,12 +85,8 @@ targets to get the contact map.

The model checkpoints can be downloaded from
[Google Cloud Storage](https://console.cloud.google.com/storage/browser/alphafold_casp13_data).

Download them e.g. using `wget` (the file is about 210 MB):

```shell
wget https://storage.googleapis.com/alphafold_casp13_data/alphafold_casp13_weights.zip
```
The model checkpoints are in a file called `alphafold_casp13_weights.zip` which
has about **210 MB**.

The zip file contains:

1 change: 1 addition & 0 deletions alphafold_casp13/run_eval.sh
Original file line number Diff line number Diff line change
@@ -27,6 +27,7 @@ TARGET_PATH="alphafold_casp13/${TARGET}" # Path to the directory with the targe
# Set up the virtual environment and install dependencies.
python3 -m venv alphafold_venv
source alphafold_venv/bin/activate
pip install wheel
pip install -r alphafold_casp13/requirements.txt

# Create the output directory.

0 comments on commit 32abf74

Please sign in to comment.