"vscode:/vscode.git/clone" did not exist on "900c3f9cd534f22692df7d7f78e0e1cb0c226085"
run_pretrained_openfold.py 14.6 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 gc
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
19
import logging
20
import numpy as np
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
21
import os
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
22

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
23
import pickle
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
24
25
26
from pytorch_lightning.utilities.deepspeed import (
    convert_zero_checkpoint_to_fp32_state_dict
)
27
28
import random
import sys
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
29
30
31
import time
import torch

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

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
45
from scripts.utils import add_data_args
46

47

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
48
49
50
51
52
53
54
55
56
57
58
59
def precompute_alignments(tags, seqs, alignment_dir, args):
    for tag, seq in zip(tags, seqs):
        tmp_fasta_path = os.path.join(args.output_dir, f"tmp_{os.getpid()}.fasta")
        with open(tmp_fasta_path, "w") as fp:
            fp.write(f">{tag}\n{seq}")

        local_alignment_dir = os.path.join(alignment_dir, tag)
        if(args.use_precomputed_alignments is None):
            logging.info(f"Generating alignments for {tag}...") 
            if not os.path.exists(local_alignment_dir):
                os.makedirs(local_alignment_dir)
            
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
60
            use_small_bfd=(args.bfd_database_path is None)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
61
62
63
64
65
66
67
68
69
70
71
72
73
            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(
74
                tmp_fasta_path, local_alignment_dir
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
75
76
77
78
79
80
81
82
83
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
112
            )

        # Remove temporary FASTA file
        os.remove(tmp_fasta_path)


def run_model(model, batch, tag, args):
    logging.info("Executing model...")
    with torch.no_grad():
        batch = {
            k:torch.as_tensor(v, device=args.model_device) 
            for k,v in batch.items()
        }
 
        # Disable templates if there aren't any in the batch
        model.config.template.enabled = any([
            "template_" in k for k in batch
        ])

        logging.info(f"Running inference for {tag}...")
        t = time.perf_counter()
        out = model(batch)
        logging.info(f"Inference time: {time.perf_counter() - t}")
    
    return out


def prep_output(out, batch, feature_dict, feature_processor, args):
    plddt = out["plddt"]
    mean_plddt = np.mean(plddt)
    
    plddt_b_factors = np.repeat(
        plddt[..., None], residue_constants.atom_type_num, axis=-1
    )

    # Prep protein metadata
    template_domain_names = []
    template_chain_index = None
113
    if(feature_processor.config.common.use_templates and "template_domain_names" in feature_dict):
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
        template_domain_names = [
            t.decode("utf-8") for t in feature_dict["template_domain_names"]
        ]

        # This works because templates are not shuffled during inference
        template_domain_names = template_domain_names[
            :feature_processor.config.predict.max_templates
        ]

        if("template_chain_index" in feature_dict):
            template_chain_index = feature_dict["template_chain_index"]
            template_chain_index = template_chain_index[
                :feature_processor.config.predict.max_templates
            ]

    no_recycling = feature_processor.config.common.max_recycling_iters
    remark = ', '.join([
        f"no_recycling={no_recycling}",
        f"max_templates={feature_processor.config.predict.max_templates}",
        f"config_preset={args.model_name}",
    ])

    # For multi-chain FASTAs
    ri = feature_dict["residue_index"]
    chain_index = (ri - np.arange(ri.shape[0])) / args.multimer_ri_gap
    chain_index = chain_index.astype(np.int64)
    cur_chain = 0
    prev_chain_max = 0
    for i, c in enumerate(chain_index):
        if(c != cur_chain):
            cur_chain = c
            prev_chain_max = i + cur_chain * args.multimer_ri_gap

        batch["residue_index"][i] -= prev_chain_max

    unrelaxed_protein = protein.from_prediction(
        features=batch,
        result=out,
        b_factors=plddt_b_factors,
        chain_index=chain_index,
        remark=remark,
        parents=template_domain_names,
        parents_chain_index=template_chain_index,
    )

    return unrelaxed_protein


162
def main(args):
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
163
164
165
166
    # Create the output directory
    os.makedirs(args.output_dir, exist_ok=True)

    # Prep the model
167
    config = model_config(args.model_name)
168
    model = AlphaFold(config)
169
    model = model.eval()
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191

    if(args.jax_param_path):
        import_jax_weights_(
            model, args.jax_param_path, version=args.model_name
        )
    elif(args.openfold_checkpoint_path):
        if(os.path.isdir(args.openfold_checkpoint_path)):
            checkpoint_basename = os.path.splitext(
                os.path.basename(
                    os.path.normpath(args.openfold_checkpoint_path)
                )
            )[0]
            ckpt_path = os.path.join(
                args.output_dir,
                checkpoint_basename + ".pt",
            ) 

            if(not os.path.isfile(ckpt_path)):
                convert_zero_checkpoint_to_fp32_state_dict(
                    args.openfold_checkpoint_path,
                    ckpt_path,
                )
192
193
194

            d = torch.load(ckpt_path)
            model.load_state_dict(d["ema"]["params"])
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
195
196
        else:
            ckpt_path = args.openfold_checkpoint_path
197
198
199
200
201
202
203
            d = torch.load(ckpt_path)
            
            if("ema" in d):
                # The public weights have had this done to them already
                d = d["ema"]["params"]
            
            model.load_state_dict(d)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
204
205
206
207
208
209
    else:
        raise ValueError(
            "At least one of jax_param_path or openfold_checkpoint_path must "
            "be specified."
        )

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
210
    model = model.to(args.model_device)
211
 
212
213
214
    template_featurizer = templates.TemplateHitFeaturizer(
        mmcif_dir=args.template_mmcif_dir,
        max_template_date=args.max_template_date,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
215
        max_hits=config.data.predict.max_templates,
216
        kalign_binary_path=args.kalign_binary_path,
217
        release_dates_path=args.release_dates_path,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
218
219
        obsolete_pdbs_path=args.obsolete_pdbs_path
    )
220

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
221
    data_processor = data_pipeline.DataPipeline(
222
223
224
225
        template_featurizer=template_featurizer,
    )

    output_dir_base = args.output_dir
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
226
    random_seed = args.data_random_seed
227
228
    if random_seed is None:
        random_seed = random.randrange(sys.maxsize)
229
    feature_processor = feature_pipeline.FeaturePipeline(config.data)
230
231
    if not os.path.exists(output_dir_base):
        os.makedirs(output_dir_base)
Gustaf's avatar
Gustaf committed
232
    if(args.use_precomputed_alignments is None):
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
233
        alignment_dir = os.path.join(output_dir_base, "alignments")
Gustaf's avatar
Gustaf committed
234
235
    else:
        alignment_dir = args.use_precomputed_alignments
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
236

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
237
238
239
    prediction_dir = os.path.join(args.output_dir, "predictions")
    os.makedirs(prediction_dir, exist_ok=True)

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
240
241
242
243
    for fasta_file in os.listdir(args.fasta_dir):
        # Gather input sequences
        with open(os.path.join(args.fasta_dir, fasta_file), "r") as fp:
            data = fp.read()
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
244

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
245
246
247
248
249
        lines = [
            l.replace('\n', '') 
            for prot in data.split('>') for l in prot.strip().split('\n', 1)
        ][1:]
        tags, seqs = lines[::2], lines[1::2]
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
250

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
251
252
253
        tags = [t.split()[0] for t in tags]
        assert len(tags) == len(set(tags)), "All FASTA tags must be unique"
        tag = '-'.join(tags)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
254

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
255
        precompute_alignments(tags, seqs, alignment_dir, args)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
256

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
257
258
259
260
261
262
263
264
265
        tmp_fasta_path = os.path.join(args.output_dir, f"tmp_{os.getpid()}.fasta")
        if(len(seqs) == 1):
            seq = seqs[0]
            with open(tmp_fasta_path, "w") as fp:
                fp.write(f">{tag}\n{seq}")

            local_alignment_dir = os.path.join(alignment_dir, tag)
            feature_dict = data_processor.process_fasta(
                fasta_path=tmp_fasta_path, alignment_dir=local_alignment_dir
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
266
            )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
267
268
269
270
271
272
273
        else:
            with open(tmp_fasta_path, "w") as fp:
                fp.write(
                    '\n'.join([f">{tag}\n{seq}" for tag, seq in zip(tags, seqs)])
                )
            feature_dict = data_processor.process_multiseq_fasta(
                fasta_path=tmp_fasta_path, super_alignment_dir=alignment_dir, 
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
274
            )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
275
 
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
276
        # Remove temporary FASTA file
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
277
        os.remove(tmp_fasta_path)
278
    
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
279
280
281
        processed_feature_dict = feature_processor.process_features(
            feature_dict, mode='predict',
        )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
282

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
283
        batch = processed_feature_dict
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
284
285
        out = run_model(model, batch, tag, args)

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
286
287
288
289
        # 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)
        
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
290
291
        unrelaxed_protein = prep_output(
            out, batch, feature_dict, feature_processor, args
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
292
        )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
293

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
294
295
296
297
        output_name = f'{tag}_{args.model_name}'
        if(args.output_postfix is not None):
            output_name = f'{output_name}_{args.output_postfix}'

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
298
299
        # Save the unrelaxed PDB.
        unrelaxed_output_path = os.path.join(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
300
            prediction_dir, f'{output_name}_unrelaxed.pdb'
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
301
        )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
302
303
        with open(unrelaxed_output_path, 'w') as fp:
            fp.write(protein.to_pdb(unrelaxed_protein))
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
304

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
        if(not args.skip_relaxation):
            amber_relaxer = relax.AmberRelaxation(
                use_gpu=(args.model_device != "cpu"),
                **config.relax,
            )
            
            # Relax the prediction.
            t = time.perf_counter()
            visible_devices = os.getenv("CUDA_VISIBLE_DEVICES", default="")
            if("cuda" in args.model_device):
                device_no = args.model_device.split(":")[-1]
                os.environ["CUDA_VISIBLE_DEVICES"] = device_no
            relaxed_pdb_str, _, _ = amber_relaxer.process(prot=unrelaxed_protein)
            os.environ["CUDA_VISIBLE_DEVICES"] = visible_devices
            logging.info(f"Relaxation time: {time.perf_counter() - t}")
            
            # Save the relaxed PDB.
            relaxed_output_path = os.path.join(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
323
                prediction_dir, f'{output_name}_relaxed.pdb'
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
324
            )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
325
326
            with open(relaxed_output_path, 'w') as fp:
                fp.write(relaxed_pdb_str)
327

328
329
        if(args.save_outputs):
            output_dict_path = os.path.join(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
330
                args.output_dir, f'{output_name}_output_dict.pkl'
331
332
333
334
            )
            with open(output_dict_path, "wb") as fp:
                pickle.dump(out, fp, protocol=pickle.HIGHEST_PROTOCOL)

335
336
337

if __name__ == "__main__":
    parser = argparse.ArgumentParser()
338
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
339
340
        "fasta_dir", type=str,
        help="Path to directory containing FASTA files, one sequence per file"
341
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
342
343
344
    parser.add_argument(
        "template_mmcif_dir", type=str,
    )
Gustaf's avatar
Gustaf committed
345
346
347
348
    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
349
    )
350
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
351
352
        "--output_dir", type=str, default=os.getcwd(),
        help="""Name of the directory in which to output the prediction""",
353
354
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
355
        "--model_device", type=str, default="cpu",
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
356
357
        help="""Name of the device on which to run the model. Any valid torch
             device name is accepted (e.g. "cpu", "cuda:0")"""
358
359
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
360
361
362
        "--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."""
363
364
    )
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
365
366
367
368
369
370
371
372
373
        "--jax_param_path", type=str, default=None,
        help="""Path to JAX model parameters. If None, and openfold_checkpoint_path
             is also None, parameters are selected automatically according to 
             the model name from openfold/resources/params"""
    )
    parser.add_argument(
        "--openfold_checkpoint_path", type=str, default=None,
        help="""Path to OpenFold checkpoint. Can be either a DeepSpeed 
             checkpoint directory or a .pt file"""
374
    )
375
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
376
        "--save_outputs", action="store_true", default=False,
377
378
        help="Whether to save all model outputs, including embeddings, etc."
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
379
380
    parser.add_argument(
        "--cpus", type=int, default=4,
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
381
        help="""Number of CPUs with which to run alignment tools"""
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
382
    )
383
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
384
        "--preset", type=str, default='full_dbs',
385
386
        choices=('reduced_dbs', 'full_dbs')
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
387
388
389
390
    parser.add_argument(
        "--output_postfix", type=str, default=None,
        help="""Postfix for output prediction filenames"""
    )
391
    parser.add_argument(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
392
393
394
395
        "--data_random_seed", type=str, default=None
    )
    parser.add_argument(
        "--skip_relaxation", action="store_true", default=False,
396
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
397
398
399
400
    parser.add_argument(
        "--multimer_ri_gap", type=int, default=200,
        help="""Residue index offset between multiple sequences, if provided"""
    )
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
401
    add_data_args(parser)
402
403
    args = parser.parse_args()

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
404
405
    if(args.jax_param_path is None and args.openfold_checkpoint_path is None):
        args.jax_param_path = os.path.join(
406
407
408
409
            "openfold", "resources", "params", 
            "params_" + args.model_name + ".npz"
        )

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
410
411
412
413
414
415
    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"""
        )

416
    main(args)