File size: 24,948 Bytes
2f25aea 10d3f10 2f25aea 0d675a3 2f25aea 0d675a3 2f25aea 0d675a3 2f25aea 0d675a3 2f25aea 0d675a3 2f25aea 10d3f10 2f25aea 10d3f10 2f25aea |
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 |
import itertools as it
import logging
import pickle
import re
from collections import defaultdict
from typing import List
import numpy as np
import pandas as pd
import seaborn as sns
import torch
from datasets import Dataset, load_from_disk
from transformers import (
BertForMaskedLM,
BertForSequenceClassification,
BertForTokenClassification,
)
sns.set()
logger = logging.getLogger(__name__)
# load data and filter by defined criteria
def load_and_filter(filter_data, nproc, input_data_file):
data = load_from_disk(input_data_file)
if filter_data is not None:
data = filter_by_dict(data, filter_data, nproc)
return data
def filter_by_dict(data, filter_data, nproc):
for key, value in filter_data.items():
def filter_data_by_criteria(example):
return example[key] in value
data = data.filter(filter_data_by_criteria, num_proc=nproc)
if len(data) == 0:
logger.error("No cells remain after filtering. Check filtering criteria.")
raise
return data
def filter_data_by_tokens(filtered_input_data, tokens, nproc):
def if_has_tokens(example):
return len(set(example["input_ids"]).intersection(tokens)) == len(tokens)
filtered_input_data = filtered_input_data.filter(if_has_tokens, num_proc=nproc)
return filtered_input_data
def logging_filtered_data_len(filtered_input_data, filtered_tokens_categ):
if len(filtered_input_data) == 0:
logger.error(f"No cells in dataset contain {filtered_tokens_categ}.")
raise
else:
logger.info(f"# cells with {filtered_tokens_categ}: {len(filtered_input_data)}")
def filter_data_by_tokens_and_log(
filtered_input_data, tokens, nproc, filtered_tokens_categ
):
# filter for cells with anchor gene
filtered_input_data = filter_data_by_tokens(filtered_input_data, tokens, nproc)
# logging length of filtered data
logging_filtered_data_len(filtered_input_data, filtered_tokens_categ)
return filtered_input_data
def filter_data_by_start_state(filtered_input_data, cell_states_to_model, nproc):
# confirm that start state is valid to prevent futile filtering
state_key = cell_states_to_model["state_key"]
state_values = filtered_input_data[state_key]
start_state = cell_states_to_model["start_state"]
if start_state not in state_values:
logger.error(
f"Start state {start_state} is not present "
f"in the dataset's {state_key} attribute."
)
raise
# filter for start state cells
def filter_for_origin(example):
return example[state_key] in [start_state]
filtered_input_data = filtered_input_data.filter(filter_for_origin, num_proc=nproc)
return filtered_input_data
def slice_by_inds_to_perturb(filtered_input_data, cell_inds_to_perturb):
if cell_inds_to_perturb["start"] >= len(filtered_input_data):
logger.error(
"cell_inds_to_perturb['start'] is larger than the filtered dataset."
)
raise
if cell_inds_to_perturb["end"] > len(filtered_input_data):
logger.warning(
"cell_inds_to_perturb['end'] is larger than the filtered dataset. \
Setting to the end of the filtered dataset."
)
cell_inds_to_perturb["end"] = len(filtered_input_data)
filtered_input_data = filtered_input_data.select(
[i for i in range(cell_inds_to_perturb["start"], cell_inds_to_perturb["end"])]
)
return filtered_input_data
# load model to GPU
def load_model(model_type, num_classes, model_directory, mode):
if mode == "eval":
output_hidden_states = True
elif mode == "train":
output_hidden_states = False
if model_type == "Pretrained":
model = BertForMaskedLM.from_pretrained(
model_directory,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
elif model_type == "GeneClassifier":
model = BertForTokenClassification.from_pretrained(
model_directory,
num_labels=num_classes,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
elif model_type == "CellClassifier":
model = BertForSequenceClassification.from_pretrained(
model_directory,
num_labels=num_classes,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
# if eval mode, put the model in eval mode for fwd pass
if mode == "eval":
model.eval()
model = model.to("cuda")
return model
def quant_layers(model):
layer_nums = []
for name, parameter in model.named_parameters():
if "layer" in name:
layer_nums += [int(name.split("layer.")[1].split(".")[0])]
return int(max(layer_nums)) + 1
def get_model_input_size(model):
return int(re.split("\(|,", str(model.bert.embeddings.position_embeddings))[1])
def flatten_list(megalist):
return [item for sublist in megalist for item in sublist]
def measure_length(example):
example["length"] = len(example["input_ids"])
return example
def downsample_and_sort(data, max_ncells):
num_cells = len(data)
# if max number of cells is defined, then shuffle and subsample to this max number
if max_ncells is not None:
if num_cells > max_ncells:
data = data.shuffle(seed=42)
num_cells = max_ncells
data_subset = data.select([i for i in range(num_cells)])
# sort dataset with largest cell first to encounter any memory errors earlier
data_sorted = data_subset.sort("length", reverse=True)
return data_sorted
def get_possible_states(cell_states_to_model):
possible_states = []
for key in ["start_state", "goal_state"]:
possible_states += [cell_states_to_model[key]]
possible_states += cell_states_to_model.get("alt_states", [])
return possible_states
def forward_pass_single_cell(model, example_cell, layer_to_quant):
example_cell.set_format(type="torch")
input_data = example_cell["input_ids"]
with torch.no_grad():
outputs = model(input_ids=input_data.to("cuda"))
emb = torch.squeeze(outputs.hidden_states[layer_to_quant])
del outputs
return emb
def perturb_emb_by_index(emb, indices):
mask = torch.ones(emb.numel(), dtype=torch.bool)
mask[indices] = False
return emb[mask]
def delete_indices(example):
indices = example["perturb_index"]
if any(isinstance(el, list) for el in indices):
indices = flatten_list(indices)
for index in sorted(indices, reverse=True):
del example["input_ids"][index]
example["length"] = len(example["input_ids"])
return example
# for genes_to_perturb = "all" where only genes within cell are overexpressed
def overexpress_indices(example):
indices = example["perturb_index"]
if any(isinstance(el, list) for el in indices):
indices = flatten_list(indices)
for index in sorted(indices, reverse=True):
example["input_ids"].insert(0, example["input_ids"].pop(index))
example["length"] = len(example["input_ids"])
return example
# for genes_to_perturb = list of genes to overexpress that are not necessarily expressed in cell
def overexpress_tokens(example, max_len):
# -100 indicates tokens to overexpress are not present in rank value encoding
if example["perturb_index"] != [-100]:
example = delete_indices(example)
[
example["input_ids"].insert(0, token)
for token in example["tokens_to_perturb"][::-1]
]
# truncate to max input size, must also truncate original emb to be comparable
if len(example["input_ids"]) > max_len:
example["input_ids"] = example["input_ids"][0:max_len]
example["length"] = len(example["input_ids"])
return example
def calc_n_overflow(max_len, example_len, tokens_to_perturb, indices_to_perturb):
n_to_add = len(tokens_to_perturb) - len(indices_to_perturb)
n_overflow = example_len + n_to_add - max_len
return n_overflow
def truncate_by_n_overflow(example):
new_max_len = example["length"] - example["n_overflow"]
example["input_ids"] = example["input_ids"][0:new_max_len]
example["length"] = len(example["input_ids"])
return example
def remove_indices_from_emb(emb, indices_to_remove, gene_dim):
# indices_to_remove is list of indices to remove
indices_to_keep = [
i for i in range(emb.size()[gene_dim]) if i not in indices_to_remove
]
num_dims = emb.dim()
emb_slice = [
slice(None) if dim != gene_dim else indices_to_keep for dim in range(num_dims)
]
sliced_emb = emb[emb_slice]
return sliced_emb
def remove_indices_from_emb_batch(emb_batch, list_of_indices_to_remove, gene_dim):
output_batch_list = [
remove_indices_from_emb(emb_batch[i, :, :], idxes, gene_dim - 1)
for i, idxes in enumerate(list_of_indices_to_remove)
]
# add padding given genes are sometimes added that are or are not in original cell
batch_max = max([emb.size()[gene_dim - 1] for emb in output_batch_list])
output_batch_list_padded = [
pad_xd_tensor(emb, 0.000, batch_max, gene_dim - 1) for emb in output_batch_list
]
return torch.stack(output_batch_list_padded)
# removes perturbed indices
# need to handle the various cases where a set of genes is overexpressed
def remove_perturbed_indices_set(
emb,
perturb_type: str,
indices_to_perturb: List[List],
tokens_to_perturb: List[List],
original_lengths: List[int],
input_ids=None,
):
if perturb_type == "overexpress":
num_perturbed = len(tokens_to_perturb)
if num_perturbed == 1:
indices_to_perturb_orig = [
idx if idx != [-100] else [None] for idx in indices_to_perturb
]
if all(v is [None] for v in indices_to_perturb_orig):
return emb
else:
indices_to_perturb_orig = []
for idx_list in indices_to_perturb:
indices_to_perturb_orig.append(
[idx if idx != [-100] else [None] for idx in idx_list]
)
else:
indices_to_perturb_orig = indices_to_perturb
emb = remove_indices_from_emb_batch(emb, indices_to_perturb_orig, gene_dim=1)
return emb
def make_perturbation_batch(
example_cell, perturb_type, tokens_to_perturb, anchor_token, combo_lvl, num_proc
) -> tuple[Dataset, List[int]]:
if combo_lvl == 0 and tokens_to_perturb == "all":
if perturb_type in ["overexpress", "activate"]:
range_start = 1
elif perturb_type in ["delete", "inhibit"]:
range_start = 0
indices_to_perturb = [
[i] for i in range(range_start, example_cell["length"][0])
]
# elif combo_lvl > 0 and anchor_token is None:
## to implement
elif combo_lvl > 0 and (anchor_token is not None):
example_input_ids = example_cell["input_ids"][0]
anchor_index = example_input_ids.index(anchor_token[0])
indices_to_perturb = [
sorted([anchor_index, i]) if i != anchor_index else None
for i in range(example_cell["length"][0])
]
indices_to_perturb = [item for item in indices_to_perturb if item is not None]
else:
example_input_ids = example_cell["input_ids"][0]
indices_to_perturb = [
[example_input_ids.index(token)] if token in example_input_ids else None
for token in tokens_to_perturb
]
indices_to_perturb = [item for item in indices_to_perturb if item is not None]
# create all permutations of combo_lvl of modifiers from tokens_to_perturb
if combo_lvl > 0 and (anchor_token is None):
if tokens_to_perturb != "all":
if len(tokens_to_perturb) == combo_lvl + 1:
indices_to_perturb = [
list(x) for x in it.combinations(indices_to_perturb, combo_lvl + 1)
]
else:
all_indices = [[i] for i in range(example_cell["length"][0])]
all_indices = [
index for index in all_indices if index not in indices_to_perturb
]
indices_to_perturb = [
[[j for i in indices_to_perturb for j in i], x] for x in all_indices
]
length = len(indices_to_perturb)
perturbation_dataset = Dataset.from_dict(
{
"input_ids": example_cell["input_ids"] * length,
"perturb_index": indices_to_perturb,
}
)
if length < 400:
num_proc_i = 1
else:
num_proc_i = num_proc
if perturb_type == "delete":
perturbation_dataset = perturbation_dataset.map(
delete_indices, num_proc=num_proc_i
)
elif perturb_type == "overexpress":
perturbation_dataset = perturbation_dataset.map(
overexpress_indices, num_proc=num_proc_i
)
perturbation_dataset = perturbation_dataset.map(measure_length, num_proc=num_proc_i)
return perturbation_dataset, indices_to_perturb
# perturbed cell emb removing the activated/overexpressed/inhibited gene emb
# so that only non-perturbed gene embeddings are compared to each other
# in original or perturbed context
def make_comparison_batch(original_emb_batch, indices_to_perturb, perturb_group):
all_embs_list = []
# if making comparison batch for multiple perturbations in single cell
if perturb_group is False:
# squeeze if single cell
if original_emb_batch.ndim == 3 and original_emb_batch.size()[0] == 1:
original_emb_batch = torch.squeeze(original_emb_batch)
original_emb_list = [original_emb_batch] * len(indices_to_perturb)
# if making comparison batch for single perturbation in multiple cells
elif perturb_group is True:
original_emb_list = original_emb_batch
for original_emb, indices in zip(original_emb_list, indices_to_perturb):
if indices == [-100]:
all_embs_list += [original_emb[:]]
continue
emb_list = []
start = 0
if any(isinstance(el, list) for el in indices):
indices = flatten_list(indices)
# removes indices that were perturbed from the original embedding
for i in sorted(indices):
emb_list += [original_emb[start:i]]
start = i + 1
emb_list += [original_emb[start:]]
all_embs_list += [torch.cat(emb_list)]
len_set = set([emb.size()[0] for emb in all_embs_list])
if len(len_set) > 1:
max_len = max(len_set)
all_embs_list = [pad_2d_tensor(emb, None, max_len, 0) for emb in all_embs_list]
return torch.stack(all_embs_list)
def pad_list(input_ids, pad_token_id, max_len):
input_ids = np.pad(
input_ids,
(0, max_len - len(input_ids)),
mode="constant",
constant_values=pad_token_id,
)
return input_ids
def pad_xd_tensor(tensor, pad_token_id, max_len, dim):
padding_length = max_len - tensor.size()[dim]
# Construct a padding configuration where all padding values are 0, except for the padding dimension
# 2 * number of dimensions (padding before and after for every dimension)
pad_config = [0] * 2 * tensor.dim()
# Set the padding after the desired dimension to the calculated padding length
pad_config[-2 * dim - 1] = padding_length
return torch.nn.functional.pad(
tensor, pad=pad_config, mode="constant", value=pad_token_id
)
def pad_tensor(tensor, pad_token_id, max_len):
tensor = torch.nn.functional.pad(
tensor, pad=(0, max_len - tensor.numel()), mode="constant", value=pad_token_id
)
return tensor
def pad_2d_tensor(tensor, pad_token_id, max_len, dim):
if dim == 0:
pad = (0, 0, 0, max_len - tensor.size()[dim])
elif dim == 1:
pad = (0, max_len - tensor.size()[dim], 0, 0)
tensor = torch.nn.functional.pad(
tensor, pad=pad, mode="constant", value=pad_token_id
)
return tensor
def pad_3d_tensor(tensor, pad_token_id, max_len, dim):
if dim == 0:
raise Exception("dim 0 usually does not need to be padded.")
if dim == 1:
pad = (0, 0, 0, max_len - tensor.size()[dim])
elif dim == 2:
pad = (0, max_len - tensor.size()[dim], 0, 0)
tensor = torch.nn.functional.pad(
tensor, pad=pad, mode="constant", value=pad_token_id
)
return tensor
def pad_or_truncate_encoding(encoding, pad_token_id, max_len):
if isinstance(encoding, torch.Tensor):
encoding_len = encoding.size()[0]
elif isinstance(encoding, list):
encoding_len = len(encoding)
if encoding_len > max_len:
encoding = encoding[0:max_len]
elif encoding_len < max_len:
if isinstance(encoding, torch.Tensor):
encoding = pad_tensor(encoding, pad_token_id, max_len)
elif isinstance(encoding, list):
encoding = pad_list(encoding, pad_token_id, max_len)
return encoding
# pad list of tensors and convert to tensor
def pad_tensor_list(
tensor_list,
dynamic_or_constant,
pad_token_id,
model_input_size,
dim=None,
padding_func=None,
):
# determine maximum tensor length
if dynamic_or_constant == "dynamic":
max_len = max([tensor.squeeze().numel() for tensor in tensor_list])
elif isinstance(dynamic_or_constant, int):
max_len = dynamic_or_constant
else:
max_len = model_input_size
logger.warning(
"If padding style is constant, must provide integer value. "
f"Setting padding to max input size {model_input_size}."
)
# pad all tensors to maximum length
if dim is None:
tensor_list = [
pad_tensor(tensor, pad_token_id, max_len) for tensor in tensor_list
]
else:
tensor_list = [
padding_func(tensor, pad_token_id, max_len, dim) for tensor in tensor_list
]
# return stacked tensors
if padding_func != pad_3d_tensor:
return torch.stack(tensor_list)
else:
return torch.cat(tensor_list, 0)
def gen_attention_mask(minibatch_encoding, max_len=None):
if max_len is None:
max_len = max(minibatch_encoding["length"])
original_lens = minibatch_encoding["length"]
attention_mask = [
[1] * original_len + [0] * (max_len - original_len)
if original_len <= max_len
else [1] * max_len
for original_len in original_lens
]
return torch.tensor(attention_mask, device="cuda")
# get cell embeddings excluding padding
def mean_nonpadding_embs(embs, original_lens, dim=1):
# create a mask tensor based on padding lengths
mask = torch.arange(embs.size(dim), device=embs.device) < original_lens.unsqueeze(1)
if embs.dim() == 3:
# fill the masked positions in embs with zeros
masked_embs = embs.masked_fill(~mask.unsqueeze(2), 0.0)
# compute the mean across the non-padding dimensions
mean_embs = masked_embs.sum(dim) / original_lens.view(-1, 1).float()
elif embs.dim() == 2:
masked_embs = embs.masked_fill(~mask, 0.0)
mean_embs = masked_embs.sum(dim) / original_lens.float()
return mean_embs
# get cell embeddings when there is no padding
def compute_nonpadded_cell_embedding(embs, cell_emb_style):
if cell_emb_style == "mean_pool":
return torch.mean(embs, dim=embs.ndim - 2)
# quantify shifts for a set of genes
def quant_cos_sims(
perturbation_emb,
original_emb,
cell_states_to_model,
state_embs_dict,
emb_mode="gene",
):
if emb_mode == "gene":
cos = torch.nn.CosineSimilarity(dim=2)
elif emb_mode == "cell":
cos = torch.nn.CosineSimilarity(dim=1)
if cell_states_to_model is None:
cos_sims = cos(perturbation_emb, original_emb).to("cuda")
else:
possible_states = get_possible_states(cell_states_to_model)
cos_sims = dict(zip(possible_states, [[] for _ in range(len(possible_states))]))
for state in possible_states:
cos_sims[state] = cos_sim_shift(
original_emb,
perturbation_emb,
state_embs_dict[state].to("cuda"), # required to move to cuda here
cos,
)
return cos_sims
# calculate cos sim shift of perturbation with respect to origin and alternative cell
def cos_sim_shift(original_emb, perturbed_emb, end_emb, cos):
origin_v_end = cos(original_emb, end_emb)
perturb_v_end = cos(perturbed_emb, end_emb)
return perturb_v_end - origin_v_end
def concatenate_cos_sims(cos_sims):
if isinstance(cos_sims, list):
return torch.cat(cos_sims)
else:
for state in cos_sims.keys():
cos_sims[state] = torch.cat(cos_sims[state])
return cos_sims
def write_perturbation_dictionary(cos_sims_dict: defaultdict, output_path_prefix: str):
with open(f"{output_path_prefix}_raw.pickle", "wb") as fp:
pickle.dump(cos_sims_dict, fp)
def tensor_list_to_pd(tensor_list):
tensor = torch.cat(tensor_list).cpu().numpy()
df = pd.DataFrame(tensor)
return df
def validate_cell_states_to_model(cell_states_to_model):
if cell_states_to_model is not None:
if len(cell_states_to_model.items()) == 1:
logger.warning(
"The single value dictionary for cell_states_to_model will be "
"replaced with a dictionary with named keys for start, goal, and alternate states. "
"Please specify state_key, start_state, goal_state, and alt_states "
"in the cell_states_to_model dictionary for future use. "
"For example, cell_states_to_model={"
"'state_key': 'disease', "
"'start_state': 'dcm', "
"'goal_state': 'nf', "
"'alt_states': ['hcm', 'other1', 'other2']}"
)
for key, value in cell_states_to_model.items():
if (len(value) == 3) and isinstance(value, tuple):
if (
isinstance(value[0], list)
and isinstance(value[1], list)
and isinstance(value[2], list)
):
if len(value[0]) == 1 and len(value[1]) == 1:
all_values = value[0] + value[1] + value[2]
if len(all_values) == len(set(all_values)):
continue
# reformat to the new named key format
state_values = flatten_list(list(cell_states_to_model.values()))
cell_states_to_model = {
"state_key": list(cell_states_to_model.keys())[0],
"start_state": state_values[0][0],
"goal_state": state_values[1][0],
"alt_states": state_values[2:][0],
}
elif set(cell_states_to_model.keys()).issuperset(
{"state_key", "start_state", "goal_state"}
):
if (
(cell_states_to_model["state_key"] is None)
or (cell_states_to_model["start_state"] is None)
or (cell_states_to_model["goal_state"] is None)
):
logger.error(
"Please specify 'state_key', 'start_state', and 'goal_state' in cell_states_to_model."
)
raise
if (
cell_states_to_model["start_state"]
== cell_states_to_model["goal_state"]
):
logger.error("All states must be unique.")
raise
if "alt_states" in set(cell_states_to_model.keys()):
if cell_states_to_model["alt_states"] is not None:
if not isinstance(cell_states_to_model["alt_states"], list):
logger.error(
"cell_states_to_model['alt_states'] must be a list (even if it is one element)."
)
raise
if len(cell_states_to_model["alt_states"]) != len(
set(cell_states_to_model["alt_states"])
):
logger.error("All states must be unique.")
raise
else:
cell_states_to_model["alt_states"] = []
else:
logger.error(
"cell_states_to_model must only have the following four keys: "
"'state_key', 'start_state', 'goal_state', 'alt_states'."
"For example, cell_states_to_model={"
"'state_key': 'disease', "
"'start_state': 'dcm', "
"'goal_state': 'nf', "
"'alt_states': ['hcm', 'other1', 'other2']}"
)
raise
|