|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| """Functions for building the input features for the AlphaFold model."""
|
|
|
| import os
|
| from typing import Mapping, Optional, Sequence
|
| from absl import logging
|
| from colabdesign.af.alphafold.common import residue_constants
|
| from colabdesign.af.alphafold.data import parsers
|
| import numpy as np
|
|
|
|
|
|
|
| FeatureDict = Mapping[str, np.ndarray]
|
| def make_sequence_features(
|
| sequence: str, description: str, num_res: int) -> FeatureDict:
|
| """Constructs a feature dict of sequence features."""
|
| features = {}
|
| features['aatype'] = residue_constants.sequence_to_onehot(
|
| sequence=sequence,
|
| mapping=residue_constants.restype_order_with_x,
|
| map_unknown_to_x=True)
|
| features['between_segment_residues'] = np.zeros((num_res,), dtype=np.int32)
|
| features['domain_name'] = np.array([description.encode('utf-8')],
|
| dtype=np.object_)
|
| features['residue_index'] = np.array(range(num_res), dtype=np.int32)
|
| features['seq_length'] = np.array([num_res] * num_res, dtype=np.int32)
|
| features['sequence'] = np.array([sequence.encode('utf-8')], dtype=np.object_)
|
| return features
|
|
|
|
|
| def make_msa_features(
|
| msas: Sequence[Sequence[str]],
|
| deletion_matrices: Sequence[parsers.DeletionMatrix]) -> FeatureDict:
|
| """Constructs a feature dict of MSA features."""
|
| if not msas:
|
| raise ValueError('At least one MSA must be provided.')
|
|
|
| int_msa = []
|
| deletion_matrix = []
|
| seen_sequences = set()
|
| for msa_index, msa in enumerate(msas):
|
| if not msa:
|
| raise ValueError(f'MSA {msa_index} must contain at least one sequence.')
|
| for sequence_index, sequence in enumerate(msa):
|
| if sequence in seen_sequences:
|
| continue
|
| seen_sequences.add(sequence)
|
| int_msa.append(
|
| [residue_constants.HHBLITS_AA_TO_ID[res] for res in sequence])
|
| deletion_matrix.append(deletion_matrices[msa_index][sequence_index])
|
|
|
| num_res = len(msas[0][0])
|
| num_alignments = len(int_msa)
|
| features = {}
|
| features['deletion_matrix_int'] = np.array(deletion_matrix, dtype=np.int32)
|
| features['msa'] = np.array(int_msa, dtype=np.int32)
|
| features['num_alignments'] = np.array(
|
| [num_alignments] * num_res, dtype=np.int32)
|
| return features |