| import os |
| from argparse import FileType, ArgumentParser |
|
|
| import numpy as np |
| import pandas as pd |
| from Bio.PDB import PDBParser |
| from Bio.Seq import Seq |
| from Bio.SeqRecord import SeqRecord |
| from tqdm import tqdm |
| from Bio import SeqIO |
|
|
| parser = ArgumentParser() |
| parser.add_argument('--out_file', type=str, default="~/prepared_PDBBIND_for_esm.fasta") |
| parser.add_argument('--protein_ligand_csv', type=str, default='~/PDBBIND.csv', help='Path to a .csv specifying the input as described in the main README') |
| parser.add_argument('--protein_path', type=str, default=None, help='Path to a single PDB file. If this is not None then it will be used instead of the --protein_ligand_csv') |
| args = parser.parse_args() |
|
|
| biopython_parser = PDBParser() |
|
|
| three_to_one = {'ALA': 'A', |
| 'ARG': 'R', |
| 'ASN': 'N', |
| 'ASP': 'D', |
| 'CYS': 'C', |
| 'GLN': 'Q', |
| 'GLU': 'E', |
| 'GLY': 'G', |
| 'HIS': 'H', |
| 'ILE': 'I', |
| 'LEU': 'L', |
| 'LYS': 'K', |
| 'MET': 'M', |
| 'MSE': 'M', |
| 'PHE': 'F', |
| 'PRO': 'P', |
| 'PYL': 'O', |
| 'SER': 'S', |
| 'SEC': 'U', |
| 'THR': 'T', |
| 'TRP': 'W', |
| 'TYR': 'Y', |
| 'VAL': 'V', |
| 'ASX': 'B', |
| 'GLX': 'Z', |
| 'XAA': 'X', |
| 'XLE': 'J'} |
|
|
| if args.protein_path is not None: |
| file_paths = [args.protein_path] |
| else: |
| df = pd.read_csv(args.protein_ligand_csv) |
| file_paths = list(set(df['protein_path'].tolist())) |
| sequences = [] |
| ids = [] |
| for file_path in tqdm(file_paths): |
| structure = biopython_parser.get_structure('random_id', file_path) |
| structure = structure[0] |
| for i, chain in enumerate(structure): |
| seq = '' |
| for res_idx, residue in enumerate(chain): |
| if residue.get_resname() == 'HOH': |
| continue |
| residue_coords = [] |
| c_alpha, n, c = None, None, None |
| for atom in residue: |
| if atom.name == 'CA': |
| c_alpha = list(atom.get_vector()) |
| if atom.name == 'N': |
| n = list(atom.get_vector()) |
| if atom.name == 'C': |
| c = list(atom.get_vector()) |
| if c_alpha != None and n != None and c != None: |
| try: |
| seq += three_to_one[residue.get_resname()] |
| except Exception as e: |
| seq += '-' |
| print("encountered unknown AA: ", residue.get_resname(), ' in the complex ', file_path, '. Replacing it with a dash - .') |
| sequences.append(seq) |
| ids.append(f'{os.path.basename(file_path)}_chain_{i}') |
| records = [] |
| for (index, seq) in zip(ids,sequences): |
| record = SeqRecord(Seq(seq), str(index)) |
| record.description = '' |
| records.append(record) |
| os.makedirs(os.path.dirname(args.out_file),exist_ok=True) |
| SeqIO.write(records, args.out_file, "fasta") |
|
|
|
|
|
|