@@ -241,7 +241,7 @@ Now that we know Docker is functioning properly, we can begin building our Docke
241241 wget -P project/checkpoints https://zenodo.org/record/5546775/files/LitGINI-GeoTran-DilResNet.ckpt
242242 ```
243243
244- 3. Build the Docker image (Warning: Requires 13GB of space ):
244+ 3. Build the Docker image (Warning: Requires ~ 13GB of Space ):
245245
246246 ```bash
247247 docker build -f docker/Dockerfile -t deepinteract .
@@ -255,8 +255,14 @@ Now that we know Docker is functioning properly, we can begin building our Docke
255255 ` ` ` bash
256256 pip3 install -r docker/requirements.txt
257257 ` ` `
258+
259+ 5. Create directory in which to generate input features and outputs:
260+
261+ ` ` ` bash
262+ mkdir -p project/datasets/Input
263+ ` ` `
258264
259- 5 . Run ` run_docker.py` pointing to two input PDB files containing the first and second chains
265+ 6 . Run ` run_docker.py` pointing to two input PDB files containing the first and second chains
260266 of a complex for which you wish to predict the contact probability map.
261267 For example, for the DIPS-Plus test target with the PDB ID: 4HEQ:
262268
@@ -266,7 +272,8 @@ Now that we know Docker is functioning properly, we can begin building our Docke
266272
267273 This script will generate and (as NumPy array files - e.g., test_data/4heq_contact_prob_map.npy)
268274 save to the given input directory the predicted interface contact map as well as the Geometric
269- Transformer' s learned node and edge representations for both chain graphs.
275+ Transformer' s learned node and edge representations for both chain graphs. (By default, the script
276+ also only uses the available CPU(s) for prediction via the default num_gpus=0 flag.)
270277
271278## Running DeepInteract via a Traditional Installation (for Linux-Based Operating Systems)
272279
0 commit comments