File size: 14,768 Bytes
6f1e670 | 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 | # This utils page is for functions that don't belong to any particular category
from typing import List, Tuple
from Bio import SeqIO
import errno
import numpy as np
import os
import scipy.stats as ss
from scipy.spatial.distance import cdist
import logging
import string
import wandb
import re
# List of amino acids, including stop codon '*'
AAs = [
'A', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'K', 'L',
'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'V', 'W', 'Y',
'*'
]
aa_dict_3to1 = {
'ALA': 'A', 'ARG': 'R', 'ASN': 'N', 'ASP': 'D', 'CYS': 'C',
'GLU': 'E', 'GLN': 'Q', 'GLY': 'G', 'HIS': 'H', 'ILE': 'I',
'LEU': 'L', 'LYS': 'K', 'MET': 'M', 'PHE': 'F', 'PRO': 'P',
'SER': 'S', 'THR': 'T', 'TRP': 'W', 'TYR': 'Y', 'VAL': 'V'
}
def load_seqs_file(fnames):
"""
Load sequences and their corresponding values from files.
Args:
- fnames (list): List of file names to load from.
Returns:
- tuple: Lists of sequences and their corresponding values.
"""
seqs, y = [], []
for fname in fnames:
with open(fname) as f:
for line in f:
fields = line.strip().split('\t')
if len(fields) == 0:
raise ValueError(f'Input file {fname} has no columns.')
elif len(fields) == 1:
seqs.append(fields[0])
y.append(float('nan'))
elif len(fields) == 2:
seqs.append(fields[0])
y.append(float(fields[1]))
else:
raise ValueError(f'Input file {fname} has more than two columns.')
if not seqs[-1].startswith('M'):
print(seqs[-1], y[-1])
return seqs, y
def performance_report(y_true, y_pred):
"""
Generate a performance report comparing true and predicted values.
Args:
- y_true (array-like): True values.
- y_pred (array-like): Predicted values.
Returns:
- dict: Dictionary containing various performance metrics.
"""
from sklearn.metrics import mean_squared_error, ndcg_score
y_true = np.array(y_true)
y_pred = np.array(y_pred)
y_true, y_pred = y_true.reshape(-1,), y_pred.reshape(-1,)
top_10_min = y_true[np.argsort(-y_pred)[:10]].min()
top_10_mean = y_true[np.argsort(-y_pred)[:10]].mean()
top_10_max = y_true[np.argsort(-y_pred)[:10]].max()
top_1_percentile_min = y_true[np.argsort(-y_pred)[int(len(y_true)*0.01)]].min()
top_1_percentile_mean = y_true[np.argsort(-y_pred)[int(len(y_true)*0.01)]].mean()
top_1_percentile_max = y_true[np.argsort(-y_pred)[int(len(y_true)*0.01)]].max()
top_0_1_percentile_min = y_true[np.argsort(-y_pred)[int(len(y_true)*0.001)]].min()
top_0_1_percentile_mean = y_true[np.argsort(-y_pred)[int(len(y_true)*0.001)]].mean()
top_0_1_percentile_max = y_true[np.argsort(-y_pred)[int(len(y_true)*0.001)]].max()
return {
'MSE': mean_squared_error(y_true, y_pred),
'Spearman r': ss.spearmanr(y_true, y_pred).correlation,
'Spearman p': ss.spearmanr(y_true, y_pred).pvalue,
'Pearson r': ss.pearsonr(y_true, y_pred).correlation,
'Pearson p': ss.pearsonr(y_true, y_pred).pvalue,
'NDCG': ndcg_score([y_true], [y_pred]),
'Top 10 Min': top_10_min,
'Top 10 Mean': top_10_mean,
'Top 10 Max': top_10_max,
'Top 1% Min': top_1_percentile_min,
'Top 1% Mean': top_1_percentile_mean,
'Top 1% Max': top_1_percentile_max,
'Top 0.1% Min': top_0_1_percentile_min,
'Top 0.1% Mean': top_0_1_percentile_mean,
'Top 0.1% Max': top_0_1_percentile_max
}
def log_results(stats_dict, model_object):
"""
Log results to Weights & Biases (wandb).
Args:
- stats (dict): Dictionary containing performance statistics.
- model_object: Object containing model information.
"""
# Wandb logging
if wandb.run is not None:
# Log the plot to wandb for display
wandb.log({"Plot": wandb.Image(model_object.fig)}, commit=False)
# Log data
wandb.log(
{
"Model": model_object.model_name,
"Feature": model_object.featurizer.name,
"Split Method": model_object.split_method,
"Test Loss": stats_dict['test']['MSE'],
"Spearman - Test": stats_dict['test']['Spearman r'],
"Spearman p-value - Test": stats_dict['test']['Spearman p'],
"Pearson - Test": stats_dict['test']['Pearson r'],
"Pearson p-value - Test": stats_dict['test']['Pearson p'],
"NDCG - Test" : stats_dict['test']['NDCG'],
"Top 10 Min - Test" : stats_dict['test']['Top 10 Min'],
"Top 10 Mean - Test" : stats_dict['test']['Top 10 Mean'],
"Top 10 Max - Test" : stats_dict['test']['Top 10 Max'],
"Val Loss": stats_dict['val']['MSE'],
"Spearman - Val": stats_dict['val']['Spearman r'],
"Spearman p-value - Val": stats_dict['val']['Spearman p'],
"Pearson - Val": stats_dict['val']['Pearson r'],
"Pearson p-value - Val": stats_dict['val']['Pearson p'],
"NDCG - Val" : stats_dict['val']['NDCG'],
"Top 10 Min - Val" : stats_dict['val']['Top 10 Min'],
"Top 10 Mean - Val" : stats_dict['val']['Top 10 Mean'],
"Top 10 Max - Val" : stats_dict['val']['Top 10 Max'],
})
def mkdir_p(path):
"""
Create a directory if it doesn't exist.
Args:
- path (str): Directory path to create.
"""
try:
os.makedirs(path)
except OSError as exc: # Python >2.5
if exc.errno == errno.EEXIST and os.path.isdir(path):
pass
else:
raise
def deep_mutational_scan(sequence, exclude_noop=True):
"""
Generate all possible single amino acid mutations for a given sequence.
Args:
- sequence (str): Input protein sequence.
- exclude_noop (bool): If True, exclude mutations that don't change the amino acid.
Yields:
- tuple: (position, wild-type amino acid, mutant amino acid)
"""
for pos, wt in enumerate(sequence):
for mt in AAs:
if exclude_noop and wt == mt:
continue
yield (pos, wt, mt)
def deep_mutational_scan_seqs(sequence, exclude_stop=True):
"""
Generate all possible single amino acid mutant sequences for a given sequence.
Args:
- sequence (str): Input protein sequence.
- exclude_stop (bool): If True, exclude mutations to stop codons.
Returns:
- list: List of mutant sequences.
"""
sequences = []
for pos, wt in enumerate(sequence):
for mt in AAs:
if wt == mt:
continue
if exclude_stop and mt == '*':
continue
mut_seq = sequence[:pos] + mt + sequence[pos + 1:]
sequences.append(mut_seq)
return sequences
def dms_dict(sequence):
"""
Create a dictionary of all possible single amino acid mutations for each position in a sequence.
Args:
- sequence (str): Input protein sequence.
Returns:
- dict: Dictionary with positions as keys and lists of possible mutations as values.
"""
dms_dict = {}
for pos, wt in enumerate(sequence):
pos_mts = []
for mt in AAs:
if mt != '*':
pos_mts.append(wt + str(pos + 1) + mt)
dms_dict[pos] = pos_mts
return dms_dict
def mutational_pool_to_dict(mutational_pool, increase_wt=False):
"""
Convert a list of mutations to a dictionary grouped by position.
Args:
- mutational_pool (list): List of mutations.
- increase_wt (bool): If True, increase the count of wild-type mutations.
Returns:
- dict: Dictionary with positions as keys and lists of mutations as values.
"""
mutations_dict = {}
for mutation in mutational_pool:
number = int(re.search(r'\d+', mutation).group())
if number not in mutations_dict:
mutations_dict[number] = [mutation]
else:
mutations_dict[number].append(mutation)
for key in mutations_dict:
mut = mutations_dict[key][0]
wt, pos, mt = mut[0], mut[1:-1], mut[-1]
wt_value = wt+pos+wt
if wt_value not in mutations_dict[key]:
mutations_dict[key].append(wt_value)
if increase_wt == True:
total_mutants = len(mutations_dict[key]) - 2
for i in range(total_mutants):
mutations_dict[key].append(wt_value)
return mutations_dict
def wt_only_mutational_pool_to_dict(mutational_pool, wt_seq):
"""
Create a dictionary of wild-type mutations for each position in a sequence.
Args:
- mutational_pool (list): List of mutations.
- wt_seq (str): Wild-type full sequence.
Returns:
- dict: Dictionary with positions as keys and lists of wild-type mutations as values.
"""
wt_mutations_dict = {}
pos = []
for mutation in mutational_pool:
number = int(re.search(r'\d+', mutation).group())
if number not in wt_mutations_dict:
wt = wt_seq[number-1]
wt_value = wt+str(number)+wt
wt_mutations_dict[number] = [wt_value]
return wt_mutations_dict
def mut_pool_searcher(keys, dict):
"""
Search for mutations in a dictionary based on given keys.
Args:
- keys (list): List of keys to search for.
- dict (dict): Dictionary to search in.
Returns:
- list: List of mutations found for the given keys.
"""
muts = []
for key in keys:
muts.extend(dict[key])
return muts
def eAUC(y_true, y_pred):
"""
Calculate the enrichment Area Under the Curve (eAUC).
Args:
- y_true (array-like): True binary labels.
- y_pred (array-like): Predicted scores.
Returns:
- float: eAUC score.
"""
from sklearn.metrics import auc
ranked = ss.rankdata(-y_pred)[y_true == 1.]
n_true = np.array([
sum(ranked <= i + 1) for i in range(len(y_true))
])
n_consider = np.array([ i + 1 for i in range(len(y_true)) ])
norm = max(n_consider) * max(n_true)
return auc(n_consider, n_true) / norm
def setup_logger(log_file):
"""
Set up a logger for both file and stream logging.
Args:
- log_file (str): Path to the log file.
Returns:
- logging.Logger: Configured logger object.
"""
if not os.path.exists(os.path.dirname(log_file)):
os.makedirs(os.path.dirname(log_file))
logger = logging.getLogger('my_logger')
logger.setLevel(logging.DEBUG)
file_handler = logging.FileHandler(log_file)
file_handler.setLevel(logging.DEBUG)
stream_handler = logging.StreamHandler()
stream_handler.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
file_handler.setFormatter(formatter)
stream_handler.setFormatter(formatter)
logger.addHandler(file_handler)
logger.addHandler(stream_handler)
logger.info('Logger set up.')
return logger
def close_logger(logger):
"""
Close all handlers associated with the given logger.
Args:
- logger (logging.Logger): Logger object to close.
"""
logger.info('Closing logger.')
for handler in logger.handlers:
handler.close()
logger.removeHandler(handler)
# MSA utils
# This is an efficient way to delete lowercase characters and insertion characters from a string
deletekeys = dict.fromkeys(string.ascii_lowercase)
deletekeys["."] = None
deletekeys["*"] = None
translation = str.maketrans(deletekeys)
def read_sequence(filename: str) -> Tuple[str, str]:
"""
Read the first (reference) sequence from a fasta or MSA file.
Args:
- filename (str): Path to the fasta or MSA file.
Returns:
- tuple: (sequence description, sequence)
"""
record = next(SeqIO.parse(filename, "fasta"))
return record.description, str(record.seq)
def remove_insertions(sequence: str) -> str:
"""
Remove any insertions from the sequence. Needed to load aligned sequences in an MSA.
Args:
- sequence (str): Input sequence.
Returns:
- str: Sequence with insertions removed.
"""
return sequence.translate(translation)
def read_msa(filename: str) -> List[Tuple[str, str]]:
"""
Read sequences from an MSA file, automatically removing insertions.
Args:
- filename (str): Path to the MSA file.
Returns:
- list: List of tuples (sequence description, sequence without insertions)
"""
return [(record.description, remove_insertions(str(record.seq))) for record in SeqIO.parse(filename, "fasta")]
def greedy_select(msa: List[Tuple[str, str]], num_seqs: int, mode: str = "max") -> List[Tuple[str, str]]:
"""
Select sequences from the MSA to maximize or minimize the hamming distance.
Args:
- msa (list): List of (description, sequence) tuples.
- num_seqs (int): Number of sequences to select.
- mode (str): 'max' to maximize distance, 'min' to minimize.
Returns:
- list: Selected sequences.
"""
assert mode in ("max", "min")
if len(msa) <= num_seqs:
return msa
array = np.array([list(seq) for _, seq in msa], dtype=np.bytes_).view(np.uint8)
optfunc = np.argmax if mode == "max" else np.argmin
all_indices = np.arange(len(msa))
indices = [0]
pairwise_distances = np.zeros((0, len(msa)))
for _ in range(num_seqs - 1):
dist = cdist(array[indices[-1:]], array, "hamming")
pairwise_distances = np.concatenate([pairwise_distances, dist])
shifted_distance = np.delete(pairwise_distances, indices, axis=1).mean(0)
shifted_index = optfunc(shifted_distance)
index = np.delete(all_indices, indices)[shifted_index]
indices.append(index)
indices = sorted(indices)
return [msa[idx] for idx in indices]
def msa_splicer(msa):
"""
Splice the MSA to only include positions where the first sequence is not empty.
Args:
- msa (list): List of (description, sequence) tuples.
Returns:
- list: Spliced MSA.
"""
base_sequence = msa[0][1]
positions = [i for i, _ in enumerate(base_sequence) if base_sequence[i] != '-']
spliced_msa = []
for name, seq in msa:
spliced_seq = [seq[i] for i in positions]
spliced_msa.append((name, ''.join(spliced_seq)))
return spliced_msa |