Skip to content

Commit

Permalink
7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
David O'Connor committed Sep 11, 2024
1 parent 9ed4e63 commit 9ac821f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ Displays a hydropathy chart of each amino acid, showing how hydrophobic each reg
Optionally loads data from the [RCSB Protein Data Bank](https://www.rcsb.org) (via [PDB's API](https://data.rcsb.org/#data-api)). Finds proteins that match each coding region. From these, it can automatically open a browser to PDB's entry on this protein, its 3D viewer, or download structure data (i.e. atomic coordinates).


### Restriction enzyme digest
Can select appropriate restriction enzymes for one or more DNA sequences, and create digestion products. Ligation coming soon.

### Mixing portions assistant
Given a designed solution with molarity concentrations, calculates the mass and volumes required to make the solution. Includes the molecular weights of common reagents. Can set up solutions mixed from custom precursor solutions.

Expand Down
19 changes: 10 additions & 9 deletions src/gui/ligation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,15 +494,16 @@ pub fn ligation_page(state: &mut State, ui: &mut Ui) {
.re_digestion_products
.is_empty()
{
ui.add_space(COL_SPACING);
if ui
.button(RichText::new("Ligate").color(Color32::GOLD))
.clicked()
{
// state.volatile[state.active].re_ligation_products = ligate(
// &state.volatile[state.active].re_digestion_products,
// );
}
// todo: Put back when ready
// ui.add_space(COL_SPACING);
// if ui
// .button(RichText::new("Ligate").color(Color32::GOLD))
// .clicked()
// {
// // state.volatile[state.active].re_ligation_products = ligate(
// // &state.volatile[state.active].re_digestion_products,
// // );
// }
}
});

Expand Down

0 comments on commit 9ac821f

Please sign in to comment.