File size: 37,070 Bytes
ef28eb2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 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 113 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 | """Functions for creating and scoring CATH datasets"""
import numpy as np
import pandas as pd
import ampal
import gzip
from pathlib import Path
from sklearn import metrics
from benchmark import config
import string
from subprocess import CalledProcessError
import re
from scipy.stats import entropy
from benchmark import visualization
from typing import Tuple, List, Iterable
import warnings
from sklearn.preprocessing import LabelBinarizer
import wget
import click
def download_data(out_dir: Path) -> None:
"""Download CATH file.
Parameters
----------
out_dir: Path:
Directory where to store the file."""
if click.confirm(
f"CATH file does not exist. It will be downloaded to {out_dir.resolve()}. Continue? "
):
wget.download('ftp://orengoftp.biochem.ucl.ac.uk/cath/releases/latest-release/cath-classification-data/cath-domain-description-file.txt', out=str(out_dir))
else:
exit()
def read_data(CATH_file: str) -> pd.DataFrame:
"""If CATH .csv exists, loads the DataFrame. If CATH .txt exists, makes DataFrame and saves it. If CATH .txt file doesn't exist, downloads it.
Parameters
----------
CATH_file: str
CATH .txt file name.
Returns
-------
df:pd.DataFrame
DataFrame containing CATH and PDB codes."""
path = Path(CATH_file)
#download if doesn't exist.
if not path.exists():
download_data(path.parent)
# load .csv if exists, faster than reading .txt
if path.with_suffix(".csv").exists():
df = pd.read_csv(path.with_suffix(".csv"), index_col=0)
# start, stop needs to be str
df["start"] = df["start"].apply(str)
df["stop"] = df["stop"].apply(str)
return df
else:
cath_info = []
temp = []
start_stop = []
with open(path) as file:
for line in file:
if line[:6] == "DOMAIN":
# PDB
temp.append(line[10:14])
# chain
temp.append(line[14])
if line[:6] == "CATHCO":
# class, architecture, topology, homologous superfamily
cath = [int(i) for i in line[10:].strip("\n").split(".")]
temp = temp + cath
if line[:6] == "SRANGE":
j = line.split()
# start and stop resi, can be multiple for the same chain
# must be str to deal with insertions (1A,1B) later.
start_stop.append([str(j[1][6:]), str(j[2][5:])])
if line[:2] == "//":
# keep fragments from the same chain as separate entries
for fragment in start_stop:
cath_info.append(temp + fragment)
start_stop = []
temp = []
df = pd.DataFrame(
cath_info,
columns=[
"PDB",
"chain",
"class",
"architecture",
"topology",
"hsf",
"start",
"stop",
],
)
df.to_csv(path.with_suffix(".csv"))
return df
def tag_dssp_data(assembly: ampal.Assembly) -> None:
"""Same as ampal.dssp.tag_dssp_data(), but fixed a bug with insertions. Tags each residue in ampal.Assembly with secondary structure. Works in place.
Parameters
----------
assembly: ampal.Assembly
Protein assembly."""
dssp_out = ampal.dssp.run_dssp(assembly.pdb, path=False)
dssp_data = ampal.dssp.extract_all_ss_dssp(dssp_out, path=False)
for i, record in enumerate(dssp_data):
rnum, sstype, chid, _, phi, psi, sacc = record
# deal with insertions
if len(chid) > 1:
for i, res in enumerate(assembly[chid[1]]):
if res.insertion_code == chid[0] and assembly[chid[1]][i].tags == {}:
assembly[chid[1]][i].tags["dssp_data"] = {
"ss_definition": sstype,
"solvent_accessibility": sacc,
"phi": phi,
"psi": psi,
}
break
else:
assembly[chid][str(rnum)].tags["dssp_data"] = {
"ss_definition": sstype,
"solvent_accessibility": sacc,
"phi": phi,
"psi": psi,
}
def get_sequence(
series: pd.Series, path_to_pdb: Path
) -> Tuple[str, str, int, int, List[int]]:
"""Gets a sequence of from PDB file, CATH fragment indexes and secondary structure labels.
Parameters
----------
series: pd.Series
Series containing one CATH instance.
path_to_assemblies:Path
Path to directory with biologcial assemblies.
Returns
-------
sequence: str
True sequence.
dssp: str
dssp codes.
start: int
CATH fragment start residue number, same as in PDB. NOT EQUAL TO SEQUENCE INDEX.
stop:int
CATH fragment stop residue number, same as in PDB. NOT EQUAL TO SEQUENCE INDEX.
uncommon_index:list
List with residue number of uncommon amino acids.
"""
path = path_to_pdb / series.PDB[1:3] / f"pdb{series.PDB}.ent.gz"
if path.exists():
with gzip.open(path, "rb") as protein:
assembly = ampal.load_pdb(protein.read().decode(), path=False)
# convert pdb res id into sequence index,
# some files have discontinuous residue ids so ampal.get_slice_from_res_id() does not work
start = 0
stop = 0
# if nmr structure, get 1st model
if isinstance(assembly, ampal.AmpalContainer):
assembly = assembly[0]
# run dssp
try:
tag_dssp_data(assembly)
except CalledProcessError:
raise CalledProcessError(f"dssp failed on {series.PDB}.pdb.")
# some biological assemblies are broken
try:
chain = assembly[series.chain]
except KeyError:
raise KeyError(f"{series.PDB}.pdb is missing chain {series.chain}.")
# compatibility with evoef and leo's model, store non-canonical residue index in a separate column and include regular amino acid in the sequence
sequence = ""
uncommon_index = []
dssp = ""
for i, residue in enumerate(chain):
# add dssp data, assume random structure if dssp did not return anything for this residue
try:
dssp += residue.tags["dssp_data"]["ss_definition"]
except KeyError:
dssp += " "
# deal with uncommon residues
one_letter_code = ampal.amino_acids.get_aa_letter(residue.mol_code)
if one_letter_code == "X":
try:
uncommon_index.append(i)
sequence += ampal.amino_acids.get_aa_letter(
config.UNCOMMON_RESIDUE_DICT[residue.mol_code]
)
except KeyError:
raise ValueError(
f"{series.PDB}.pdb has unrecognized amino acid {residue.mol_code}."
)
else:
sequence += one_letter_code
# deal with insertions
if series.start[-1].isalpha():
if (residue.id + residue.insertion_code) == series.start:
start = i
else:
if residue.id == series.start:
start = i
if series.stop[-1].isalpha():
if (residue.id + residue.insertion_code) == series.stop:
stop = i
else:
if residue.id == series.stop:
stop = i
if uncommon_index==[]:
uncommon_index=np.NaN
return sequence, dssp, start, stop, uncommon_index
else:
raise FileNotFoundError(
f"{series.PDB}.pdb is missing, download it or remove it from your dataset."
)
def get_pdbs(
df: pd.DataFrame, cls: int, arch: int = 0, topo: int = 0, homologous_sf: int = 0
) -> pd.DataFrame:
"""Gets PDBs based on CATH code, at least class has to be specified.
Parameters
----------
df: pd.DataFrame
DataFrame containing CATH dataset.
cls: int
CATH class
arch: int = 0
CATH architecture
topo: int = 0
CATH topology
homologous_sf: int = 0
CATH homologous superfamily
Returns
-------
df:pd.DataFrame
DataFrame containing PDBs with specified CATH code."""
if homologous_sf != 0:
return df.loc[
(df["class"] == cls)
& (df["topology"] == topo)
& (df["architecture"] == arch)
& (df["hsf"] == homologous_sf)
].copy()
elif topo != 0:
return df.loc[
(df["class"] == cls)
& (df["topology"] == topo)
& (df["architecture"] == arch)
].copy()
elif arch != 0:
return df.loc[(df["class"] == cls) & (df["architecture"] == arch)].copy()
else:
return df.loc[(df["class"] == cls)].copy()
def get_resolution(df: pd.DataFrame, path_to_pdb: Path) -> List[float]:
"""Gets resolution of each structure in DataFrame
Parameters
----------
df: pd.DataFrame
DataFrame with CATH fragment info.
path_to_pdb: Path
Path to the directory with PDB files.
Returns
-------
res: list
List with resolutions."""
res = []
for i, protein in df.iterrows():
path = path_to_pdb / protein.PDB[1:3] / f"pdb{protein.PDB}.ent.gz"
if path.exists():
with gzip.open(path, "rb") as pdb:
pdb_text = pdb.read().decode()
item = re.findall("REMARK 2 RESOLUTION.*$", pdb_text, re.MULTILINE)
if item[0].split()[3]!='NOT':
res.append(float(item[0].split()[3]))
#nmr structures have no resolution
else:
res.append(np.NaN)
else:
res.append(np.NaN)
return res
def append_sequence(
df: pd.DataFrame, path_to_pdb: Path
) -> pd.DataFrame:
"""Get sequences for all entries in the dataframe, changes start and stop from PDB resid to index number,adds resolution of each chain.
Parameters
----------
df: pd.DataFrame
CATH dataframe.
path_to_pdb: Path
Path to the directory with PDB files.
Returns
-------
working_copy:pd.DataFrame
DataFrame with appended sequences,dssp data, start/stop numbers, uncommon index list and resolution data."""
# make copy to avoid changing original df.
working_copy = df.copy()
sequence, dssp, start, stop, uncommon_index = zip(
*[get_sequence(x, path_to_pdb) for i, x in df.iterrows()]
)
working_copy.loc[:, "sequence"] = sequence
working_copy.loc[:, "dssp"] = dssp
working_copy.loc[:, "start"] = start
working_copy.loc[:, "stop"] = stop
working_copy.loc[:, "uncommon_index"]=uncommon_index
working_copy.loc[:, "resolution"] = get_resolution(working_copy, path_to_pdb)
return working_copy
def filter_with_user_list(
df: pd.DataFrame, path: Path, ispisces: bool = False
) -> pd.DataFrame:
"""Selects PDB chains specified in .txt file. Multiple CATH entries for the same protein are removed to leave only one example.
Parameters
----------
df: pd.DataFrame
CATH info containing dataframe
path: Path
Path to dataset .txt file
ispisces:bool = False
Reads pisces formating if True, otherwise pdb+chain, e.g., 1a2bA\n.
Returns
-------
DataFrame with selected chains."""
path = Path(path)
with open(path) as file:
if ispisces:
filtr = [x.split()[0] for x in file.readlines()[1:]]
else:
filtr = [x.upper().strip("\n") for x in file.readlines()]
frame_copy = df.copy()
frame_copy["PDB+chain"] = df.PDB + df.chain
# must be upper letters for string comparison
frame_copy["PDB+chain"] = frame_copy["PDB+chain"].str.upper()
return df.loc[frame_copy["PDB+chain"].isin(filtr)].drop_duplicates(
subset=["PDB", "chain"]
)
def filter_with_resolution(
df: pd.DataFrame, minimum: float, maximum: float
) -> pd.DataFrame:
"""Gets DataFrame slice with chain resolution between min and max.
Parameters:
-----------
df: pd.DataFrame
CATH DataFrame.
minimum:float
maximum:float
Returns
-------
DataFrame with chains."""
return df[(df["resolution"] >= minimum) & (df["resolution"] < maximum)]
def lookup_blosum62(res_true: str, res_prediction: str) -> int:
"""Returns score from the matrix.
Parameters
----------
res_true: str
First residue code.
res_prediction: str
Second residue code.
Returns
--------
Score from the matrix."""
if (res_true, res_prediction) in config.blosum62.keys():
return config.blosum62[res_true, res_prediction]
else:
return config.blosum62[res_prediction, res_true]
def load_prediction_matrix(
df: pd.DataFrame, path_to_dataset: Path, path_to_probabilities: Path
) -> dict:
"""Loads predicted probabilities from .csv file to dictionary, drops entries for which sequence prediction fails.
Parameters
----------
df: pd.DataFrame
CATH dataframe.
path_to_dataset: Path
Path to prediction dataset labels.
path_to_probabilities:Path
Path to .csv file with probabilities.
Returns
-------
empty_dict:dict
Dictionary with predicted sequences, key is PDB+chain."""
path_to_dataset = Path(path_to_dataset)
path_to_probabilities = Path(path_to_probabilities)
counter=0
with open(path_to_dataset) as file:
labels = [x.strip('\n').split() for x in file.readlines()[3:]]
predictions = pd.read_csv(path_to_probabilities, header=None).values
empty_dict = {k: [] for k in df.PDB.values + df.chain.values}
for chain in labels:
if chain[0] in empty_dict:
empty_dict[chain[0]]=predictions[counter:counter+int(chain[1])]
counter+=int(chain[1])
# drop keys with missing values
filtered_empty_dict = {
k: v for k, v in empty_dict.items() if len(v) != 0
}
# warn about missing predictions
missing_structures = [x for x in empty_dict if x not in filtered_empty_dict]
if len(missing_structures) > 0:
warnings.warn(f"{path_to_probabilities.name}: {*missing_structures,} predictions are missing.")
return filtered_empty_dict
def most_likely_sequence(probability_matrix: np.array) -> str:
"""Makes protein sequence from probability matrix.
Parameters
----------
probability_matrix: np.array
Array in shape n,20 with probabilities for each amino acid.
Returns
-------
String with the sequence"""
if len(probability_matrix) > 0:
most_likely_seq = [
config.acids[x] for x in np.argmax(probability_matrix, axis=1)
]
return "".join(most_likely_seq)
else:
return ""
def format_sequence(
df: pd.DataFrame,
predictions: dict,
by_fragment: bool = True,
ignore_uncommon:bool=False,
) -> Tuple[np.array, np.array, np.array, List[List], List[List]]:
"""
Concatenates and formats all sequences in the DataFrame for metrics calculations.
Parameters
----------
df: pd.DataFrame
DataFrame with CATH fragment info. The frame must have predicted sequence, true sequence and start/stop index of CATH fragment.
predictions: dict
Dictionary with loaded predictions.
by_fragment: bool
If true scores only CATH fragments, if False, scores entire chain.
ignore_uncommon=True
If True, ignores uncommon residues in accuracy calculations.
score_sequence=False
True if dictionary contains sequences, False if probability matrices(matrix shape n,20).
Returns
-------
sequece:np.array
Array with protein sequence.
prediction:np.array
Array of predicted protein residues or probability matrix, shape n or n,20.
dssp: np.array
Array with dssp data.
true_secondary:List[List[Union(chr,np.array)]]
List with true sequences split by secondary structure type. Entries can be character lists or np.arrays with probability matrices. Format:[helices,sheets,loops,random].
predicted_secondary:List[List[Union[chr,np.array]]
List with predicted sequences split by secondary structure type. Entries can be character lists or np.arrays with probability matrices. Format:[helices,sheets,loops,random].
"""
sequence = ""
dssp = ""
# Store failed structures
failed = []
prediction = np.empty([0, 20])
for i, protein in df.iterrows():
if protein.PDB + protein.chain in predictions:
start = protein.start
stop = protein.stop
predicted_sequence = predictions[protein.PDB + protein.chain]
# remove uncommon acids
if ignore_uncommon and isinstance(protein.uncommon_index,list):
protein_sequence = "".join(
[
x
for i, x in enumerate(protein.sequence)
if i not in protein.uncommon_index
]
)
protein_dssp = "".join(
[
x
for i, x in enumerate(protein.dssp)
if i not in protein.uncommon_index
]
)
# update start and stop indexes
start = start - (np.array(protein.uncommon_index) <= start).sum()
stop = stop - (np.array(protein.uncommon_index) <= stop).sum()
else:
protein_sequence = protein.sequence
protein_dssp = protein.dssp
# check length
if len(protein_sequence) != len(predicted_sequence):
# prediction is multimer-this is for compatibility with older EvoEF2 runs. Fixed now.
if len(predicted_sequence) % len(protein_sequence) == 0:
predicted_sequence = predicted_sequence[0 : len(protein_sequence)]
else:
failed.append(protein.PDB + protein.chain)
continue
if by_fragment:
protein_sequence = protein_sequence[start : stop + 1]
protein_dssp = protein_dssp[start : stop + 1]
predicted_sequence = predicted_sequence[start : stop + 1]
if len(protein_sequence) == len(predicted_sequence) and len(
protein_sequence
) == len(protein_dssp):
sequence += protein_sequence
dssp += protein_dssp
prediction = np.concatenate(
[prediction, predicted_sequence], axis=0
)
else:
failed.append(protein.PDB + protein.chain)
# Get all failed structures.
if len(failed) > 0:
raise ValueError(
f"Sequence, predicted sequence and dssp length do not match for these structures: {*failed,}"
)
sequence = np.array(list(sequence))
dssp = np.array(list(dssp))
# format secondary structures
true_secondary = [[], [], [], []]
prediction_secondary = [[], [], [], []]
# combine secondary structures for simplicity.
assert len(dssp)==len(sequence) and len(dssp)==len(prediction), 'format_sequence failed; dssp, sequence and prediction have different lengths.'
for structure, truth, pred in zip(dssp, sequence, prediction):
if structure == "H" or structure == "I" or structure == "G":
true_secondary[0].append(truth)
prediction_secondary[0].append(pred)
elif structure == "E":
true_secondary[1].append(truth)
prediction_secondary[1].append(pred)
elif structure == "B" or structure == "T" or structure == "S":
true_secondary[2].append(truth)
prediction_secondary[2].append(pred)
else:
true_secondary[3].append(truth)
prediction_secondary[3].append(pred)
return sequence, prediction, dssp, true_secondary, prediction_secondary
def score(
df: pd.DataFrame,
predictions: dict,
by_fragment: bool = True,
ignore_uncommon=False,
) -> Tuple[List[float], List[float], List[float], List[float], List[float]]:
"""Concatenates and scores all predicted sequences in the DataFrame.
Parameters
----------
df: pd.DataFrame
DataFrame with CATH fragment info. The frame must have predicted sequence, true sequence and start/stop index of CATH fragment.
predictions: dict
Dictionary with loaded predictions.
by_fragment: bool
If true scores only CATH fragments, if False, scores entire chain.
ignore_uncommon=True
If True, ignores uncommon residues in accuracy calculations.
score_sequence=False
True if dictionary contains sequences, False if probability matrices(matrix shape n,20).
Returns
--------
accuracy: List[float]
List with accuracy. Format: [overal,helices,sheets,loops,random].
top_three: List[float]
List with top_three accuracy. Same format.
similarity: List[float]
List with similarity scores.
recall: List[float]
List with macro average recall.
precision: List[float]
List with macro average precision."""
sequence, prediction, dssp, true_secondary, predicted_secondary = format_sequence(
df, predictions, by_fragment, ignore_uncommon,
)
accuracy = []
recall = []
similarity = []
top_three = []
precision = []
most_likely_seq = list(most_likely_sequence(prediction))
accuracy.append(metrics.accuracy_score(sequence, most_likely_seq))
recall.append(
metrics.recall_score(
sequence, most_likely_seq, average="macro", zero_division=0
)
)
precision.append(
metrics.precision_score(
sequence, most_likely_seq, average="macro", zero_division=0
)
)
assert len(sequence)==len(most_likely_seq), "Predicted and true sequence lengths do not match."
similarity_score = [
1 if lookup_blosum62(a, b) > 0 else 0
for a, b in zip(sequence, most_likely_seq)
]
if len(similarity_score)>0:
similarity.append(sum(similarity_score) / len(similarity_score))
else:
similarity.append(np.NaN)
#check if probabilities or encoded sequences, encoded sequence has 0 entropy.
is_prob=sum(entropy(prediction, base=2, axis=1))
if is_prob:
top_three.append(
metrics.top_k_accuracy_score(sequence, prediction, k=3, labels=config.acids)
)
else:
top_three.append(np.NaN)
for seq_type in range(len(true_secondary)):
# not all architectures have examples of all secondary structure types.
if len(true_secondary[seq_type]) > 0:
secondary_sequence = list(
most_likely_sequence(predicted_secondary[seq_type])
)
accuracy.append(
metrics.accuracy_score(true_secondary[seq_type], secondary_sequence)
)
recall.append(
metrics.recall_score(
true_secondary[seq_type],
secondary_sequence,
average="macro",
zero_division=0,
)
)
precision.append(
metrics.precision_score(
true_secondary[seq_type],
secondary_sequence,
average="macro",
zero_division=0,
)
)
assert len(true_secondary[seq_type])==len(secondary_sequence), "True and predicted lengths do not match"
similarity_score = [
1 if lookup_blosum62(a, b) > 0 else 0
for a, b in zip(true_secondary[seq_type], secondary_sequence)
]
if is_prob:
top_three.append(
metrics.top_k_accuracy_score(
true_secondary[seq_type],
predicted_secondary[seq_type],
k=3,
labels=config.acids,
)
)
else:
top_three.append(np.NaN)
similarity.append(sum(similarity_score) / len(similarity_score))
else:
accuracy.append(np.NaN)
top_three.append(np.NaN)
similarity.append(np.NaN)
recall.append(np.NaN)
precision.append(np.NaN)
return accuracy, top_three, similarity, recall, precision
def score_by_architecture(
df: pd.DataFrame,
predictions: dict,
by_fragment: bool = True,
ignore_uncommon: bool = False,
) -> pd.DataFrame:
"""Groups predictions by architecture and scores each separately.
Parameters
----------
df:pd.DataFrame
DataFrame containing predictions, cath codes and true sequences.
predictions: dict,
Dictionary with predictions, key is PDB+chain.
by_fragment: bool =True
If true scores only CATH fragments, if False, scores entire chain.
ignore_uncommon:bool=False
If true, skips uncommon amino acids when formating true sequence.
score_sequence:bool =False
Set to True if scoring a sequence, False if scoring a probability array.
Returns
-------
DataFrame with accuracy, similarity, recall and precision for each architecture type."""
architectures = df.drop_duplicates(subset=["class", "architecture"])[
"architecture"
].values
classes = df.drop_duplicates(subset=["class", "architecture"])["class"].values
scores = []
names = []
assert len(classes)==len(architectures), "Number of entries in classes and architectures do not match, this is impossible."
for cls, arch in zip(classes, architectures):
accuracy, top_three, similarity, recall, precision = score(
get_pdbs(df, cls, arch),
predictions,
by_fragment,
ignore_uncommon,
)
scores.append(
[accuracy[0], top_three[0], similarity[0], recall[0], precision[0]]
)
# lookup normal names
names.append(config.architectures[f"{cls}.{arch}"])
score_frame = pd.DataFrame(
scores,
columns=["accuracy", "top3_accuracy", "similarity", "recall", "precision"],
index=[classes, architectures],
)
score_frame["name"] = names
return score_frame
def score_each(
df: pd.DataFrame,
predictions: dict,
by_fragment: bool = True,
ignore_uncommon=False,
) -> Tuple[List[float], List[float]]:
"""Calculates accuracy and recall for each protein in DataFrame separately.
Parameters
----------
df: pd.DataFrame
DataFrame with CATH fragment info. The frame must have predicted sequence, true sequence and start/stop index of CATH fragment.
predictions: dict
Dictionary with loaded predictions.
by_fragment: bool
If true scores only CATH fragments, if False, scores entire chain.
ignore_uncommon=True
If True, ignores uncommon residues in accuracy calculations.
score_sequence=False
True if dictionary contains sequences, False if probability matrices(matrix shape n,20).
Returns
--------
accuracy: List[float]
List with accuracy for each protein in DataFrame
recall: List[float]
List with macro average recall for each protein in Dataframe."""
accuracy = []
recall = []
for i, protein in df.iterrows():
if protein.PDB + protein.chain in predictions:
start = protein.start
stop = protein.stop
predicted_sequence = predictions[protein.PDB + protein.chain]
# remove uncommon acids
if ignore_uncommon and type(protein.uncommon_index)==list:
protein_sequence = "".join(
[
x
for i, x in enumerate(protein.sequence)
if i not in protein.uncommon_index
]
)
start = start - (np.array(protein.uncommon_index) <= start).sum()
stop = stop - (np.array(protein.uncommon_index) <= stop).sum()
else:
protein_sequence = protein.sequence
# check length
if len(protein_sequence) != len(predicted_sequence):
# prediction is multimer
if len(predicted_sequence) % len(protein_sequence) == 0:
predicted_sequence = predicted_sequence[0 : len(protein_sequence)]
else:
print(
f"{protein.PDB}{protein.chain} sequence, predicted sequence and dssp length do not match."
)
accuracy.append(np.NaN)
recall.append(np.NaN)
continue
if by_fragment:
protein_sequence = protein_sequence[start : stop + 1]
predicted_sequence = predicted_sequence[start : stop + 1]
accuracy.append(
metrics.accuracy_score(
list(protein_sequence),
list(most_likely_sequence(predicted_sequence)),
)
)
recall.append(
metrics.recall_score(
list(protein_sequence),
list(most_likely_sequence(predicted_sequence)),
average="macro",
zero_division=0,
)
)
else:
accuracy.append(np.NaN)
recall.append(np.NaN)
return accuracy, recall
def get_by_residue_metrics(
sequence: np.array, prediction: np.array,
) -> pd.DataFrame:
"""Calculates recall,precision and f1 for each amino acid.
Parameters
----------
sequence:np.array
True sequence array with characters.
prediction:np.array
Predicted sequence, array with characters or probability matrix.
Returns
-------
entropy_frame:pd.DataFrame
DataFrame with recall, precision, f1 score, entropy and AUC for each amino acids.
"""
entropy_arr = entropy(prediction, base=2, axis=1)
# calculate auc values
labels = LabelBinarizer().fit(config.acids).transform(sequence)
roc_auc = []
for i in range(len(config.acids)):
fpr, tpr, _ = metrics.roc_curve(labels[:, i], prediction[:, i])
roc_auc.append(metrics.auc(fpr, tpr))
prediction = list(most_likely_sequence(prediction))
# prevents crashing when not all amino acids are predicted
entropy_frame = pd.DataFrame(index=config.acids)
entropy_frame = entropy_frame.join(
pd.DataFrame({"sequence": prediction, "entropy": entropy_arr})
.groupby(by="sequence")
.mean()
)
prec, rec, f1, sup = metrics.precision_recall_fscore_support(sequence, prediction)
entropy_frame.loc[:, "recall"] = rec
entropy_frame.loc[:, "precision"] = prec
entropy_frame.loc[:, "f1"] = f1
entropy_frame.loc[:, "auc"] = roc_auc
return entropy_frame
def get_angles(protein: pd.Series, path_to_assemblies: Path) -> np.array:
"""Gets backbone torsion angles for protein.
Parameters
----------
protein: pd.Series
Series containing protein info.
path_to_assemblies: Path
Path to the directory with biological assemblies.
Returns
-------
torsion_angles: np.array
Array with torsion angles."""
path = path_to_assemblies / protein.PDB[1:3] / f"pdb{protein.PDB}.ent.gz"
if path.exists():
with gzip.open(path, "rb") as file:
assembly = ampal.load_pdb(file.read().decode(), path=False)
# check is assembly has multiple states, pick the first
if isinstance(assembly, ampal.AmpalContainer):
assembly = assembly[0]
chain = assembly[protein.chain]
torsion_angles = ampal.analyse_protein.measure_torsion_angles(chain)
return torsion_angles
def format_angle_sequence(
df: pd.DataFrame,
predictions: dict,
path_to_assemblies: Path,
by_fragment: bool = False,
ignore_uncommon=False,
) -> Tuple[str, Iterable, str, List[List[float]]]:
"""Gets Psi and Phi angles for all residues in predictions, can skip uncommon acids.
Parameters
----------
df: pd.DataFrame
DataFrame with CATH fragment info. The frame must have predicted sequence, true sequence and start/stop index of CATH fragment.
predictions: dict
Dictionary with loaded predictions.
path_to_assemblies: Path
Path to the directory with biological assemblies.
by_fragment: bool
If true scores only CATH fragments, if False, scores entire chain.
ignore_uncommon=True
If True, ignores uncommon residues in accuracy calculations.
Returns
-------
sequece:str
Protein sequence.
prediction: str or np.array
Predicted protein sequence or probability matrix.
dssp: str
String with dssp data
torsion:List[List[float]]
List with torsion angles. Format:[[omega,phi,psi]].
"""
sequence = ""
dssp = ""
torsion = []
prediction = np.empty([0, 20])
for i, protein in df.iterrows():
if protein.PDB + protein.chain in predictions:
start = protein.start
stop = protein.stop
predicted_sequence = predictions[protein.PDB + protein.chain]
protein_angle = get_angles(protein, path_to_assemblies)
# remove uncommon acids
if ignore_uncommon and type(protein.uncommon_index)==list:
protein_sequence = "".join(
[
x
for i, x in enumerate(protein.sequence)
if i not in protein.uncommon_index
]
)
protein_dssp = "".join(
[
x
for i, x in enumerate(protein.dssp)
if i not in protein.uncommon_index
]
)
protein_angle = [
x
for i, x in enumerate(protein_angle)
if i not in protein.uncommon_index
]
# update start and stop indexes
start = start - (np.array(protein.uncommon_index) <= start).sum()
stop = stop - (np.array(protein.uncommon_index) <= stop).sum()
else:
protein_sequence = protein.sequence
protein_dssp = protein.dssp
# check length
if len(protein_sequence) != len(predicted_sequence):
# prediction is multimer
if len(predicted_sequence) % len(protein_sequence) == 0:
predicted_sequence = predicted_sequence[0 : len(protein_sequence)]
else:
print(
f"{protein.PDB}{protein.chain} sequence, predicted sequence and dssp length do not match."
)
continue
if by_fragment:
protein_sequence = protein_sequence[start : stop + 1]
protein_dssp = protein_dssp[start : stop + 1]
predicted_sequence = predicted_sequence[start : stop + 1]
protein_angle = protein_angle[start : stop + 1]
if (
len(protein_sequence) == len(predicted_sequence)
and len(protein_sequence) == len(protein_dssp)
and len(protein_angle) == len(predicted_sequence)
):
sequence += protein_sequence
dssp += protein_dssp
torsion += protein_angle
prediction = np.concatenate(
[prediction, predicted_sequence], axis=0
)
else:
print(
f"{protein.PDB}{protein.chain} sequence, predicted sequence and dssp length do not match."
)
return sequence, prediction, dssp, torsion
|