run_pretrained_openfold.py 8.82 KB
Newer Older
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2021 AlQuraishi Laboratory
# Copyright 2021 DeepMind Technologies Limited
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

16
import argparse
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
17
from datetime import date
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
18
import logging
19
import numpy as np
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
20
import os
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
21

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
22
import pickle
23
24
import random
import sys
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
25
26
27
import time
import torch

28
from openfold.config import model_config
29
from openfold.data import templates, feature_pipeline, data_pipeline
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
30
from openfold.model.model import AlphaFold
31
from openfold.model.torchscript import script_preset_
32
from openfold.np import residue_constants, protein
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
33
34
import openfold.np.relax.relax as relax
from openfold.utils.import_weights import (
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
35
36
    import_jax_weights_,
)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
37
from openfold.utils.tensor_utils import (
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
38
39
40
    tensor_tree_map,
)

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
41
from scripts.utils import add_data_args
42

43

44
45
def main(args):
    config = model_config(args.model_name)
46
    model = AlphaFold(config)
47
    model = model.eval()
48
    import_jax_weights_(model, args.param_path, version=args.model_name)
49
    #script_preset_(model)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
50
    model = model.to(args.model_device)
51
 
52
53
54
    template_featurizer = templates.TemplateHitFeaturizer(
        mmcif_dir=args.template_mmcif_dir,
        max_template_date=args.max_template_date,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
55
        max_hits=config.data.predict.max_templates,
56
        kalign_binary_path=args.kalign_binary_path,
57
        release_dates_path=args.release_dates_path,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
58
59
        obsolete_pdbs_path=args.obsolete_pdbs_path
    )
60

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
61
62
    use_small_bfd=(args.bfd_database_path is None)

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
63
    data_processor = data_pipeline.DataPipeline(
64
65
66
67
        template_featurizer=template_featurizer,
    )

    output_dir_base = args.output_dir
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
68
    random_seed = args.data_random_seed
69
70
    if random_seed is None:
        random_seed = random.randrange(sys.maxsize)
71
    feature_processor = feature_pipeline.FeaturePipeline(config.data)
72
73
    if not os.path.exists(output_dir_base):
        os.makedirs(output_dir_base)
Gustaf's avatar
Gustaf committed
74
    if(args.use_precomputed_alignments is None):
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
75
        alignment_dir = os.path.join(output_dir_base, "alignments")
Gustaf's avatar
Gustaf committed
76
77
    else:
        alignment_dir = args.use_precomputed_alignments
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
78

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
79
80
    # Gather input sequences
    with open(args.fasta_path, "r") as fp:
81
        data = fp.read()
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
82

83
    lines = [l.replace('\n', '') for l in data.split(">")]
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
    tags, seqs = lines[::2], lines[1::2]

    for tag, seq in zip(tags, seqs):
        fasta_path = os.path.join(args.output_dir, "tmp.fasta")
        with open(fasta_path, "w") as fp:
            fp.write(f">{tag}\n{seq}")

        logging.info("Generating features...") 
        local_alignment_dir = os.path.join(alignment_dir, tag)
        if(args.use_precomputed_alignments is None):
            if not os.path.exists(local_alignment_dir):
                os.makedirs(local_alignment_dir)
            
            alignment_runner = data_pipeline.AlignmentRunner(
                jackhmmer_binary_path=args.jackhmmer_binary_path,
                hhblits_binary_path=args.hhblits_binary_path,
                hhsearch_binary_path=args.hhsearch_binary_path,
                uniref90_database_path=args.uniref90_database_path,
                mgnify_database_path=args.mgnify_database_path,
                bfd_database_path=args.bfd_database_path,
                uniclust30_database_path=args.uniclust30_database_path,
                pdb70_database_path=args.pdb70_database_path,
                use_small_bfd=use_small_bfd,
                no_cpus=args.cpus,
            )
            alignment_runner.run(
                fasta_path, local_alignment_dir
            )
112
    
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
113
114
115
        feature_dict = data_processor.process_fasta(
            fasta_path=fasta_path, alignment_dir=local_alignment_dir
        )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
116

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
117
118
        # Remove temporary FASTA file
        os.remove(fasta_path)
119
    
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
120
121
122
        processed_feature_dict = feature_processor.process_features(
            feature_dict, mode='predict',
        )
123
    
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
124
125
126
127
128
129
130
131
        logging.info("Executing model...")
        batch = processed_feature_dict
        with torch.no_grad():
            batch = {
                k:torch.as_tensor(v, device=args.model_device) 
                for k,v in batch.items()
            }
        
132
            t = time.perf_counter()
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
133
            out = model(batch)
134
            logging.info(f"Inference time: {time.perf_counter() - t}")
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
       
        # Toss out the recycling dimensions --- we don't need them anymore
        batch = tensor_tree_map(lambda x: np.array(x[..., -1].cpu()), batch)
        out = tensor_tree_map(lambda x: np.array(x.cpu()), out)
        
        plddt = out["plddt"]
        mean_plddt = np.mean(plddt)
        
        plddt_b_factors = np.repeat(
            plddt[..., None], residue_constants.atom_type_num, axis=-1
        )
    
        unrelaxed_protein = protein.from_prediction(
            features=batch,
            result=out,
            b_factors=plddt_b_factors
        )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
152
153
154
155
156
157
158
159

        # Save the unrelaxed PDB.
        unrelaxed_output_path = os.path.join(
            args.output_dir, f'{tag}_{args.model_name}_unrelaxed.pdb'
        )
        with open(unrelaxed_output_path, 'w') as f:
            f.write(protein.to_pdb(unrelaxed_protein))

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
160
        amber_relaxer = relax.AmberRelaxation(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
161
162
            use_gpu=(args.model_device != "cpu"),
            **config.relax,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
163
164
165
        )
        
        # Relax the prediction.
166
        t = time.perf_counter()
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
167
168
169
170
        visible_devices = os.getenv("CUDA_VISIBLE_DEVICES")
        if("cuda" in args.model_device):
            device_no = args.model_device.split(":")[-1]
            os.environ["CUDA_VISIBLE_DEVICES"] = device_no
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
171
        relaxed_pdb_str, _, _ = amber_relaxer.process(prot=unrelaxed_protein)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
172
        os.environ["CUDA_VISIBLE_DEVICES"] = visible_devices
173
        logging.info(f"Relaxation time: {time.perf_counter() - t}")
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
174
175
176
        
        # Save the relaxed PDB.
        relaxed_output_path = os.path.join(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
177
            args.output_dir, f'{tag}_{args.model_name}_relaxed.pdb'
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
178
179
180
        )
        with open(relaxed_output_path, 'w') as f:
            f.write(relaxed_pdb_str)
181

182
183
184
185
186
187
188
        if(args.save_outputs):
            output_dict_path = os.path.join(
                args.output_dir, f'{tag}_{args.model_name}_output_dict.pkl'
            )
            with open(output_dict_path, "wb") as fp:
                pickle.dump(out, fp, protocol=pickle.HIGHEST_PROTOCOL)

189
190
191

if __name__ == "__main__":
    parser = argparse.ArgumentParser()
192
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
193
        "fasta_path", type=str,
194
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
195
196
197
    parser.add_argument(
        "template_mmcif_dir", type=str,
    )
Gustaf's avatar
Gustaf committed
198
199
200
201
    parser.add_argument(
        "--use_precomputed_alignments", type=str, default=None,
        help="""Path to alignment directory. If provided, alignment computation 
                is skipped and database path arguments are ignored."""
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
202
    )
203
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
204
205
        "--output_dir", type=str, default=os.getcwd(),
        help="""Name of the directory in which to output the prediction""",
206
207
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
208
        "--model_device", type=str, default="cpu",
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
209
210
        help="""Name of the device on which to run the model. Any valid torch
             device name is accepted (e.g. "cpu", "cuda:0")"""
211
212
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
213
214
215
        "--model_name", type=str, default="model_1",
        help="""Name of a model config. Choose one of model_{1-5} or 
             model_{1-5}_ptm, as defined on the AlphaFold GitHub."""
216
217
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
218
219
220
221
        "--param_path", type=str, default=None,
        help="""Path to model parameters. If None, parameters are selected
             automatically according to the model name from 
             openfold/resources/params"""
222
    )
223
224
225
226
    parser.add_argument(
        "--save_outputs", type=bool, default=False,
        help="Whether to save all model outputs, including embeddings, etc."
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
227
228
    parser.add_argument(
        "--cpus", type=int, default=4,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
229
        help="""Number of CPUs with which to run alignment tools"""
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
230
    )
231
    parser.add_argument(
232
        '--preset', type=str, default='full_dbs',
233
234
235
        choices=('reduced_dbs', 'full_dbs')
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
236
        '--data_random_seed', type=str, default=None
237
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
238
    add_data_args(parser)
239
240
241
242
243
244
245
246
    args = parser.parse_args()

    if(args.param_path is None):
        args.param_path = os.path.join(
            "openfold", "resources", "params", 
            "params_" + args.model_name + ".npz"
        )

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
247
248
249
250
251
252
    if(args.model_device == "cpu" and torch.cuda.is_available()):
        logging.warning(
            """The model is being run on CPU. Consider specifying 
            --model_device for better performance"""
        )

253
    main(args)