Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dehe1011 committed Jan 13, 2025
1 parent 6ad3380 commit 4988eae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ The GUI allows you to easily explore and utilize the capabilities of the `qDNA`
</ul>

<p align="center">
<img src="docs/figures/1BNA_3.png" alt="Screenshot of the menu of the user interface with calculations of the exciton lifetime, average charge separation and dipole moment displayed in the frame on the bottom right.">
<img src="docs/figures/1BNA_3.png" width="80%" alt="Screenshot of the menu of the user interface with calculations of the exciton lifetime, average charge separation and dipole moment displayed in the frame on the bottom right.">
</p>

Whether you're generating plots or calculating complex dynamics, the GUI provides a convenient and efficient way to achieve your goals.
Expand Down
14 changes: 10 additions & 4 deletions tests/test_dna_seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@
@pytest.mark.parametrize(
"seq, mode, methylated, lower_strand, expected",
[
("GCG", "ELM", True, None, ("GCG", "CGC")),
("GCG", "WM", True, None, ("GCG",)),
("GCG", "FLM", True, None, ("BBB", "GCG", "CGC", "BBB")),
("GCGCG", "LM", False, "cGcGC", ("GCGCG", "cGcGC")),
(list("GCG"), "ELM", True, None, (list("GCG"), list("CGC"))),
(list("GCG"), "WM", True, None, (list("GCG"),)),
(
list("GCG"),
"FLM",
True,
None,
(list("BBB"), list("GCG"), list("CGC"), list("BBB")),
),
(list("GCGCG"), "LM", False, list("FGFGC"), (list("GCGCG"), list("FGFGC"))),
],
)
def test_DNA_Seq(seq, mode, methylated, lower_strand, expected):
Expand Down

0 comments on commit 4988eae

Please sign in to comment.