File size: 34,483 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 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 | """
Streamlit app for MULTI-evolve: A framework for engineering hyperactive multi-mutants.
This app provides an interactive web app to:
1. Train neural network models on protein mutation data
2. Propose optimized multi-mutant combinations
3. Generate MULTI-assembly mutagenic oligos for gene synthesis
4. Perform zero-shot predictions with protein language models
"""
import streamlit as st
import pandas as pd
from Bio import SeqIO
import os
import wandb
from pathlib import Path
import subprocess
from model.splitters import *
from model.featurizers import *
from model.predictors import *
from model.proposers import *
def setup_page():
"""Configure basic Streamlit page settings"""
st.set_page_config(
page_title="MULTI-evolve",
page_icon="π§¬",
layout="wide"
)
# Custom branded header with subtitle
st.markdown("""
<h1 style="margin-bottom: 0; padding-bottom: 0;">MULTI-evolve</h1>
<p style="color: #666; margin-top: 0.2rem; font-size: 1.05rem;">
A framework for engineering hyperactive multi-mutants
</p>
<hr style="margin-top: 0.5rem; margin-bottom: 0.5rem; border: none; border-top: 1px solid #e0e0e0;">
""", unsafe_allow_html=True)
# Global styles β injected once, available to all tabs
st.markdown("""
<style>
/* Terminal output container (used by all tabs) */
.terminal-container {
max-height: 400px;
overflow-y: auto;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 12px;
background-color: #1e1e1e;
color: #d4d4d4;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 0.85rem;
white-space: pre-wrap;
}
/* Reduce default top padding */
.block-container {
padding-top: 2rem;
}
/* Compact file uploader drop zones with breathing room */
[data-testid="stFileUploader"] section {
padding: 0.4rem 0.75rem;
}
/* Add inner padding to form containers */
[data-testid="stForm"] {
padding: 0.75rem 1rem;
}
/* Tab styling β bordered pill labels */
.stTabs [data-baseweb="tab-list"] {
gap: 0.5rem;
border-bottom: 1px solid #e0e0e0;
padding-bottom: 0;
}
.stTabs [data-baseweb="tab"] {
border: 1px solid #e0e0e0;
border-bottom: none;
border-radius: 8px 8px 0 0;
padding: 0.5rem 1rem;
background-color: #f9f9f9;
}
.stTabs [aria-selected="true"] {
background-color: #ffffff;
border-bottom: 2px solid #ffffff;
font-weight: 600;
}
</style>
""", unsafe_allow_html=True)
def create_protein_directory(protein_name):
"""
Create directory structure for a protein project
Args:
protein_name (str): Name of the protein project
Returns:
Path: Path object pointing to protein directory
"""
protein_dir = Path("proteins") / protein_name
protein_dir.mkdir(parents=True, exist_ok=True)
return protein_dir
def save_uploaded_file(uploaded_file, protein_dir):
"""
Save an uploaded file to the protein directory
Args:
uploaded_file (UploadedFile): Streamlit uploaded file
protein_dir (Path): Path to protein directory
Returns:
Path: Path to saved file
"""
if uploaded_file is None:
return None
save_path = protein_dir / uploaded_file.name
with open(save_path, "wb") as f:
f.write(uploaded_file.getbuffer())
return save_path
def validate_files(protein_name, wt_files_aa=None, wt_file_aa=None,wt_file_dna=None, dataset_file=None, mutations_file=None, pdb_files=None):
"""Validate uploaded files with protein-specific directory handling"""
try:
protein_dir = create_protein_directory(protein_name)
# Validate and save FASTA
if wt_files_aa:
for wt_file_aa in wt_files_aa:
fasta_path = save_uploaded_file(wt_file_aa, protein_dir)
wt_seq_aa = str(SeqIO.read(fasta_path, "fasta").seq.upper())
elif wt_file_aa:
fasta_path = save_uploaded_file(wt_file_aa, protein_dir)
wt_seq_aa = str(SeqIO.read(fasta_path, "fasta").seq.upper())
if wt_file_dna:
fasta_path = save_uploaded_file(wt_file_dna, protein_dir)
wt_seq_dna = str(SeqIO.read(fasta_path, "fasta").seq.upper())
# Validate and save dataset CSV
if dataset_file:
dataset_path = save_uploaded_file(dataset_file, protein_dir)
df = pd.read_csv(dataset_path)
required_cols = ['mutation', 'property_value']
if not all(col in df.columns for col in required_cols):
st.error("Training dataset must contain 'mutation' and 'property_value' columns")
return False
# Validate and save mutation pool
if mutations_file:
pool_path = save_uploaded_file(mutations_file, protein_dir)
df = pd.read_csv(pool_path, header=None)
if df.empty:
st.error("Mutation pool file is empty")
return False
if pdb_files:
for pdb_file in pdb_files:
pdb_path = save_uploaded_file(pdb_file, protein_dir)
if not str(pdb_path).endswith('.pdb') and not str(pdb_path).endswith('.cif'):
st.error("PDB/CIF files must be in PDB or CIF format")
return False
return True
except Exception as e:
st.error(f"File validation error: {str(e)}")
return False
def train_models():
"""Train neural network models section"""
with st.form("train_models_form"):
col1, col2 = st.columns([2,3])
with col1:
protein_name = st.text_input("Protein Name")
wt_files_aa = st.file_uploader("Upload Wildtype Amino Acid Sequence FASTA", accept_multiple_files=True, type=['fasta', 'fa'])
dataset_file = st.file_uploader("Upload Training Dataset (CSV)", type=['csv'], accept_multiple_files=False)
st.divider()
experiment_name = st.text_input("Experiment Name", value="test")
wandb_key = st.text_input("WandB API Key", type="password")
mode = st.selectbox("Training Mode", ["test", "standard"])
with col2:
st.markdown("""
### Step 1: Train Neural Network Models
This tool performs a grid search over many neural network architectures to find the best performing model for a given protein and dataset.
""")
with st.expander("Input Files and Parameters", expanded=False):
st.markdown("""
- **Training Dataset (CSV)**: CSV file with columns 'mutation' and 'property_value'. Variants should be formatted as ```A40P/E61Y```, or for protein complexes as ```A40P/E61Y:WT```, where ```:``` separates the individual chains (e.g. ```chain 1 mutations:chain 2 mutations```), ```/``` separates the individual mutations, and ```WT``` indicates the wildtype sequence. A sample dataset for APEX peroxidase can be found in ```data/example_protein/example_dataset.csv```. For a protein complex example, use ```data/example_multichain_protein/example_dataset.csv```.
- **Wildtype Amino Acid Sequence FASTA**: Protein sequence in FASTA format. Upload multiple sequence files if working with a protein complex in the same order as you formatted the variants in the training dataset. A sample sequence of APEX peroxidase can be found in ```data/example_protein/apex.fasta```. For a protein complex example, upload in the following order: ```data/example_multichain_protein/vh_chain1.fasta```, ```data/example_multichain_protein/vl_chain2.fasta```.
- **Experiment Name**: Name of the model training experiment (e.g. APEX_gridsearch). This should be used for the subsequent step 2 for proposing mutations.
- **WandB API Key**: API key for logging to WandB. Create an account and get an API key from [WandB](https://wandb.ai/authorize).
- **Training Mode**:
- `test`: Test the training process for a single architecture.
- `standard`: Performs a grid search over many architectures. Will take a longer time to run.
""")
submitted = st.form_submit_button("Train Models", type="primary")
if submitted:
if not all([experiment_name, protein_name, wandb_key, wt_files_aa, dataset_file]):
st.error("Please fill in all required fields")
return
if not validate_files(protein_name, wt_files_aa=wt_files_aa, dataset_file=dataset_file):
return
try:
protein_dir = Path("proteins") / protein_name
wt_paths = [protein_dir / wt_file_aa.name for wt_file_aa in wt_files_aa]
dataset_path = protein_dir / dataset_file.name
# Force wandb relogin
subprocess.run(["wandb", "login", "--relogin", wandb_key], capture_output=True)
# Show the command that will be executed
command = [
"python", "scripts/p1_train.py",
"--experiment-name", experiment_name,
"--protein-name", protein_name,
"--wt-files", ",".join(str(wt_path) for wt_path in wt_paths),
"--training-dataset-fname", str(dataset_path),
"--wandb-key", wandb_key,
"--mode", mode
]
st.subheader("Terminal Output:")
st.code(f"$ {' '.join(command)}", language="bash")
with st.container(border=True):
terminal_output = st.empty()
with st.spinner("Training models..."):
# Run the command and capture all output
process = subprocess.Popen(
command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
bufsize=1,
universal_newlines=True
)
output_lines = []
# Stream output in real-time
for line in iter(process.stdout.readline, ''):
output_lines.append(line.rstrip())
# Update the terminal display with all output so far
terminal_text = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{terminal_text}</code></pre></div>',
unsafe_allow_html=True)
process.wait()
# Keep the final scrollable output instead of replacing with code block
final_output = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{final_output}</code></pre></div>',
unsafe_allow_html=True)
if process.returncode == 0:
st.success("β
Model training completed successfully!")
else:
st.error(f"β Training failed with exit code: {process.returncode}")
except Exception as e:
st.error(f"Error during training: {str(e)}")
st.exception(e)
def propose_mutations():
"""Propose mutations section"""
with st.form("propose_mutations_form"):
col1, col2 = st.columns([2,3])
with col1:
protein_name = st.text_input("Protein Name", key="propose_protein")
wt_files_aa = st.file_uploader("Upload Wildtype Amino Acid Sequence FASTA", accept_multiple_files=True, type=['fasta', 'fa'], key="propose_wt")
dataset_file = st.file_uploader("Upload Training Dataset (CSV)", type=['csv'], key="propose_dataset")
mutation_pool = st.file_uploader("Upload Mutation Pool (CSV)", type=['csv'])
st.divider()
experiment_name = st.text_input("Experiment Name", key="propose_exp")
top_muts = st.number_input("Top Mutations per Load", min_value=1, value=3)
export_name = st.text_input("Export Name", value="multievolve_proposals")
with col2:
st.markdown("""
### Step 2: Propose MULTI-evolve Variants
This tool proposes MULTI-evolve variants using a trained neural network model, whose ideal architecture is selected from a grid search in Step 1.
""")
with st.expander("Input Files and Parameters", expanded=False):
st.markdown("""
- **Wildtype Amino Acid Sequence FASTA**: Protein sequence in FASTA format. Upload multiple sequence files if working with a protein complex. Same file(s) as Step 1. A sample sequence of APEX peroxidase can be found in ```data/example_protein/apex.fasta```. For a protein complex example, upload in the following order: ```data/example_multichain_protein/vh_chain1.fasta```, ```data/example_multichain_protein/vl_chain2.fasta```.
- **Training Dataset (CSV)**: CSV file with columns 'mutation' and 'property_value'. Same file as Step 1. A sample dataset for APEX peroxidase can be found in ```data/example_protein/example_dataset.csv```. For a protein complex example, use ```data/example_multichain_protein/example_dataset.csv```.
- **Mutation Pool (CSV)**: Path to the mutation pool CSV file, which is a list of mutations to be used to generate the proposed combinatorial variants. It is a one column no header CSV file. Example is provided in ```data/example_protein/combo_muts.csv```. For a protein complex example, use ```data/example_multichain_protein/combo_muts.csv```.
- **Experiment Name**: Name of the model training experiment (e.g. APEX_gridsearch). Same experiment name as Step 1.
- **Top Mutations per Load**: Number of top mutations to propose per mutational load.
- **Export Name**: Name of the exported csv file containing the list of the proposed variants. This csv file can be used to generate MULTI-assembly mutagenic oligos for cloning the proposed variants in the ```Design MULTI-assembly Oligos``` tab.
""")
with st.expander("Outputs", expanded=False):
st.markdown("""
A CSV file will be generated:
- `<Export Name>.csv`: List of proposed variants. If it is a protein complex, it will export files for each chain (e.g. ```<Export Name>_chain_1_mutants.csv```)
""")
submitted = st.form_submit_button("Propose Mutations", type="primary")
if submitted:
if not all([experiment_name, protein_name, wt_files_aa, dataset_file, mutation_pool, export_name]):
st.error("Please fill in all required fields")
return
if not validate_files(protein_name, wt_files_aa=wt_files_aa, dataset_file=dataset_file, mutations_file=mutation_pool):
return
try:
protein_dir = Path("proteins") / protein_name
wt_paths = [protein_dir / wt_file_aa.name for wt_file_aa in wt_files_aa]
dataset_path = protein_dir / dataset_file.name
mutation_pool_path = protein_dir / mutation_pool.name
# Show the command that will be executed
command = [
"python", "scripts/p2_propose.py",
"--experiment-name", experiment_name,
"--protein-name", protein_name,
"--wt-files", ",".join(str(wt_path) for wt_path in wt_paths),
"--training-dataset", str(dataset_path),
"--mutation-pool", str(mutation_pool_path),
"--top-muts-per-load", str(top_muts),
"--export-name", export_name
]
st.subheader("Terminal Output:")
st.code(f"$ {' '.join(command)}", language="bash")
with st.container(border=True):
terminal_output = st.empty()
with st.spinner("Proposing mutations..."):
# Run the command and capture all output
process = subprocess.Popen(
command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
bufsize=1,
universal_newlines=True
)
output_lines = []
# Stream output in real-time
for line in iter(process.stdout.readline, ''):
output_lines.append(line.rstrip())
# Update the terminal display with all output so far
terminal_text = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{terminal_text}</code></pre></div>',
unsafe_allow_html=True)
process.wait()
# Keep the final scrollable output instead of replacing with code block
final_output = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{final_output}</code></pre></div>',
unsafe_allow_html=True)
if process.returncode == 0:
st.success("β
MULTI-evolve variants proposed successfully!")
else:
st.error(f"β MULTI-evolve variants proposal failed with exit code: {process.returncode}")
except Exception as e:
st.error(f"Error during mutation proposal: {str(e)}")
st.exception(e)
def design_oligos():
"""Design MULTI-assembly oligos section"""
with st.form("design_oligos_form"):
col1, col2 = st.columns([2,3])
with col1:
protein_name = st.text_input("Protein Name", key="MULTI-assembly_protein")
wt_file_dna = st.file_uploader("Upload Wildtype DNA Sequence FASTA", type=['fasta', 'fa'], key="oligo_wt")
mutations_file = st.file_uploader("Upload Mutations File (CSV)", type=['csv'])
st.divider()
species = st.selectbox("Species", ["human", "ecoli", "yeast"])
tm = st.number_input("Melting Temperature (Β°C)", value=80.0)
overhang = st.number_input("Overhang Length", value=33)
oligo_direction = st.selectbox("Oligo Direction", ["top", "bottom"])
output_type = st.selectbox("Output Type", ["design", "update"])
with col2:
st.markdown("""
### Step 3: Generate MULTI-assembly Mutagenic Oligos
This tool generates mutagenic oligos for MULTI-assembly cloning of multi-mutant variants.
""")
with st.expander("Input Files and Parameters", expanded=False):
st.markdown("""
- **Protein Name**: Name of the protein to generate oligos for.
- **Wildtype DNA Sequence FASTA**: DNA sequence of the wildtype protein with overhangs from the protein's MULTI-assembly vector. The sequence should include overhangs for the MULTI-assembly oligos, wherein the overhangs are the same length on both ends of the DNA sequence. Recommended overhang length is 33 bp or longer. An example is found in ```data/example_protein/APEX_33overhang.fasta```.
- **Mutations File (CSV)**: List of proposed variants to generate oligos for. It is a one column no-header csv file with the variants. See ```data/example_protein/MULTI-assembly_input.csv``` for an example of the csv format.
- **Species**: Codon usage table selection (human/ecoli/yeast).
- **Melting Temperature**: Target Tm for oligos (recommended: 80Β°C).
- **Overhang Length**: Length of overhangs on both ends of sequence.
- **Oligo Direction**:
- `top`: Oligos bind 5' to 3' in top strand orientation.
- `bottom`: Oligos bind 3' to 5' in bottom strand orientation.
- **Output Type**:
- `design`: Generate new oligo designs.
- `update`: Update existing oligo IDs.
""")
with st.expander("Outputs", expanded=False):
st.markdown("""
Two CSV files will be generated:
1. `cloning_sheet.csv`: Assembly instructions describing which oligos to pool for each variant.
2. `oligos.csv`: Oligo sequences and IDs.
The oligo IDs in `oligos.csv` can be customized with user-defined IDs. After editing the `oligos.csv` file, re-running with `update` will sync IDs between files.
""")
submitted = st.form_submit_button("Design Oligos", type="primary")
if submitted:
if not all([protein_name, mutations_file, wt_file_dna]):
st.error("Please fill in all required fields")
return
if not validate_files(protein_name, wt_file_dna=wt_file_dna, mutations_file=mutations_file):
return
try:
protein_dir = Path("proteins") / protein_name
mutations_path = protein_dir / mutations_file.name
wt_path = protein_dir / wt_file_dna.name
# Show the command that will be executed
command = [
"python", "scripts/p3_assembly_design.py",
"--mutations-file", str(mutations_path),
"--wt-fasta", str(wt_path),
"--overhang", str(overhang),
"--species", species,
"--oligo-direction", oligo_direction,
"--tm", str(tm),
"--output", output_type
]
st.subheader("Terminal Output:")
st.code(f"$ {' '.join(command)}", language="bash")
with st.container(border=True):
terminal_output = st.empty()
with st.spinner("Designing oligos..."):
# Run the command and capture all output
process = subprocess.Popen(
command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
bufsize=1,
universal_newlines=True
)
output_lines = []
# Stream output in real-time
for line in iter(process.stdout.readline, ''):
output_lines.append(line.rstrip())
# Update the terminal display with all output so far
terminal_text = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{terminal_text}</code></pre></div>',
unsafe_allow_html=True)
process.wait()
# Keep the final scrollable output instead of replacing with code block
final_output = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{final_output}</code></pre></div>',
unsafe_allow_html=True)
if process.returncode == 0:
st.success("β
Oligo design completed successfully!")
else:
st.error(f"β Oligo design failed with exit code: {process.returncode}")
except Exception as e:
st.error(f"Error during oligo design: {str(e)}")
st.exception(e)
def zeroshot_predictions():
"""Perform zero-shot predictions section"""
with st.form("zeroshot_predictions_form"):
col1, col2 = st.columns([2,3])
with col1:
protein_name = st.text_input("Protein Name", key="zeroshot_protein")
wt_file_aa = st.file_uploader("Upload Wildtype Amino Acid Sequence FASTA", type=['fasta', 'fa'], key="zeroshot_wt")
pdb_files = st.file_uploader("Upload PDB/CIF Files", type=['pdb', 'cif'], accept_multiple_files=True, key="zeroshot_pdb")
st.divider()
chain_id = st.text_input("Chain ID", value="A", key="zeroshot_chain")
variants = st.number_input("Number of Variants", min_value=1, value=24)
excluded_pos = st.text_input("Excluded Positions (comma-separated, optional)", value="1,10,30", key="zeroshot_excluded")
norm_method = st.selectbox("Normalizing Method", ["aa_substitution_type", "aa_mutation"], key="zeroshot_norm")
with col2:
st.markdown("""
### Protein Language Model Zero-shot Ensemble
This tool performs zero-shot predictions with a protein language model ensemble to nominate mutations.
""")
with st.expander("Input Files and Parameters", expanded=False):
st.markdown("""
- **Wildtype Amino Acid Sequence FASTA**: Protein sequence in FASTA format.
- **PDB/CIF Files**: One or more structure files in PDB or CIF format. Provide multiple structure files if there are different models (e.g. top 5 predicted structures from AlphaFold).
- **Chain ID**: Chain ID of the targeted protein in the structure files.
- **Number of Variants**: Number of variants to nominate per method (default: 24)
- **Excluded Positions**: Comma-separated list of positions to exclude from mutation (e.g. 1,5,20). Leave empty if no positions should be excluded.
- **Normalizing Method**: Method for normalizing fold-change scores:
- `aa_substitution_type`: Group by specific amino acid substitution type (e.g. all alanine to proline mutations, AβP mutations).
- `aa_mutation`: Group by amino acid mutation (e.g. all mutations to proline, βP).
""")
with st.expander("Outputs", expanded=False):
st.markdown("""
A CSV file will be generated:
- `plm_zeroshot_ensemble_nominated_mutations.csv`: List of proposed variants and nominating methods.
""")
submitted = st.form_submit_button("Run Zero-shot Predictions", type="primary")
if submitted:
if not all([protein_name, wt_file_aa, pdb_files, chain_id]):
st.error("Please fill in all required fields")
return
if not validate_files(protein_name, wt_file_aa=wt_file_aa, pdb_files=pdb_files):
return
try:
protein_dir = Path("proteins") / protein_name
wt_path = protein_dir / wt_file_aa.name
pdb_paths = [protein_dir / pdb_file.name for pdb_file in pdb_files]
# Show the command that will be executed
command = [
"python", "scripts/plm_zeroshot_ensemble.py",
"--wt-file", str(wt_path),
"--pdb-files", ",".join(str(path) for path in pdb_paths),
"--chain-id", chain_id,
"--variants", str(variants),
"--normalizing-method", norm_method
]
# Only add excluded-positions flag if it's provided and not empty
if excluded_pos.strip():
command.extend(["--excluded-positions", excluded_pos])
st.subheader("Terminal Output:")
st.code(f"$ {' '.join(command)}", language="bash")
with st.container(border=True):
terminal_output = st.empty()
with st.spinner("Running Zero-shot Predictions..."):
# Run the command and capture all output
process = subprocess.Popen(
command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
bufsize=1,
universal_newlines=True
)
output_lines = []
# Stream output in real-time
for line in iter(process.stdout.readline, ''):
output_lines.append(line.rstrip())
# Update the terminal display with all output so far
terminal_text = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{terminal_text}</code></pre></div>',
unsafe_allow_html=True)
process.wait()
# Keep the final scrollable output instead of replacing with code block
final_output = '\n'.join(output_lines)
terminal_output.markdown(f'<div class="terminal-container"><pre><code>{final_output}</code></pre></div>',
unsafe_allow_html=True)
if process.returncode == 0:
st.success("β
Zero-shot predictions completed successfully!")
else:
st.error(f"β Zero-shot predictions failed with exit code: {process.returncode}")
except Exception as e:
st.error(f"Error during zero-shot predictions: {str(e)}")
st.exception(e)
def about():
st.markdown("""
This tool provides an interactive web app to perform the computational steps of MULTI-evolve (model-guided, universal, targeted installation of multi-mutants), an end-to-end framework for efficiently engineering hyperactive multi-mutants.
The interactive web app has the following uses:
1. Implement the MULTI-evolve framework to propose multi-mutants and generate the associated MULTI-assembly mutagenic oligos for gene synthesis:
(a) Train fully connected neural networks to predict the fitness of a given sequence.
(b) Choose the best performing neural network and use it to predict combinatorial variants.
(c) For the chosen multi-mutants, generate the MULTI-assembly mutagenic oligos for gene synthesis.
2. Perform the Protein Language Model Zero-shot Ensemble Approach used in the MULTI-evolve framework.
""")
def file_locations():
st.markdown("### Where are my files saved?")
st.markdown("""
When you run any of the tools above, MULTI-evolve automatically creates a folder called **`proteins`**
(inside the main MULTI-evolve directory) to keep all of your work organized. Inside that folder,
each protein you work with gets its own sub-folder named after the **Protein Name** you entered.
Here is what that folder looks like and what each part contains:
""")
st.code("""
proteins/
βββ your_protein_name/
β
βββ your_uploaded_files β Your uploaded FASTA, CSV, and structure files
β
βββ feature_cache/ β Saved sequence features (speeds up re-runs)
β
βββ model_cache/ β Trained models and comparison results
β βββ your_dataset_name/
β βββ objects/ β The saved trained models
β βββ results/ β Performance metrics from model comparisons
β
βββ proposers/ β Proposed multi-mutant variants
β βββ results/ β CSV files with proposed variants and scores
β
βββ split_cache/ β Saved data splits (train/test sets)
β
βββ cloning_sheet.csv β Which oligos to pool for each variant
βββ oligos.csv β Oligo sequences for ordering
βββ plm_zeroshot_ensemble_nominated_mutations.csv β Nominated mutations from PLM ensemble
""", language=None)
st.markdown("#### Quick guide to finding your results")
col1, col2 = st.columns(2)
with col1:
st.info(
"**After Step 1 (Train Models)**\n\n"
"Your trained models are saved in:\n\n"
"`proteins/your_protein_name/model_cache/`"
)
st.info(
"**After Step 3 (Generate Oligos)**\n\n"
"Your oligo designs are saved in:\n\n"
"`proteins/your_protein_name/cloning_sheet.csv`\n\n"
"`proteins/your_protein_name/oligos.csv`"
)
with col2:
st.info(
"**After Step 2 (Propose Multi-mutants)**\n\n"
"`proteins/your_protein_name/proposers/results/` β Predictions for all multi-mutant variants\n\n"
"`proteins/your_protein_name/multievolve_proposals.csv` β The proposed variants to test\n\n"
)
st.info(
"**After PLM Zero-shot Ensemble**\n\n"
"Your nominated mutations are saved in:\n\n"
"`proteins/your_protein_name/plm_zeroshot_ensemble_nominated_mutations.csv`"
)
def main():
"""Main function to run the Streamlit app"""
setup_page()
# Create tabs for different functionalities
tab5, tab1, tab2, tab3, tab4, tab6 = st.tabs([
"About",
"Train Models",
"Propose Multi-mutants",
"Generate MULTI-assembly Oligos",
"Perform PLM Zero-shot Ensemble",
"Output Files",
])
with tab5:
about()
with tab1:
train_models()
with tab2:
propose_mutations()
with tab3:
design_oligos()
with tab4:
zeroshot_predictions()
with tab6:
file_locations()
if __name__ == "__main__":
main() |