We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9303bb commit 1e4a40aCopy full SHA for 1e4a40a
1 file changed
tests/test_veff.py
@@ -42,7 +42,7 @@
42
"AAAAAAAAAA" # 3' UTR (pos 45-54)
43
)
44
45
-REV_SEQ = "AAA" "TCATGCATGCAT" "AAAA" # minus-strand gene at pos 4-15
+REV_SEQ = "AAATCATGCATGCATAAAA" # minus-strand gene at pos 4-15
46
47
48
# ── Fixture helpers ───────────────────────────────────────────────────────────
@@ -271,7 +271,6 @@ def test_get_ref_seq_single_base(self):
271
272
def test_get_ref_seq_caches_contig(self):
273
self.ann.get_ref_seq("chr1", 4, 6)
274
- assert "chr1" in self.ann._genome_cache
275
# Deleting the zarr array confirms the cache is served on the second call.
276
del self.ann._genome["chr1"]
277
assert self.ann.get_ref_seq("chr1", 4, 6) == "ATG"
0 commit comments