varsim 1.0.5__py3-none-any.whl → 1.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- varsim/__init__.py +13 -14
- {varsim-1.0.5.dist-info → varsim-1.0.6.dist-info}/METADATA +1 -1
- varsim-1.0.6.dist-info/RECORD +6 -0
- varsim-1.0.5.dist-info/RECORD +0 -6
- {varsim-1.0.5.dist-info → varsim-1.0.6.dist-info}/WHEEL +0 -0
- {varsim-1.0.5.dist-info → varsim-1.0.6.dist-info}/licenses/LICENSE +0 -0
- {varsim-1.0.5.dist-info → varsim-1.0.6.dist-info}/top_level.txt +0 -0
varsim/__init__.py
CHANGED
@@ -12,6 +12,19 @@ from Bio.Seq import Seq
|
|
12
12
|
from Bio.SeqFeature import SimpleLocation
|
13
13
|
from Bio.SeqUtils import seq3
|
14
14
|
|
15
|
+
__all__ = [
|
16
|
+
"frameshift_dup",
|
17
|
+
"frameshift_del",
|
18
|
+
"cds",
|
19
|
+
"inframe_dup",
|
20
|
+
"inframe_del",
|
21
|
+
"splicing",
|
22
|
+
"utr5",
|
23
|
+
"utr3",
|
24
|
+
"aa_sub",
|
25
|
+
"missense",
|
26
|
+
]
|
27
|
+
|
15
28
|
Entrez.email = os.environ["EMAIL"]
|
16
29
|
Entrez.api_key = os.environ["API_KEY"]
|
17
30
|
codons = standard_dna_table.forward_table.keys()
|
@@ -417,17 +430,3 @@ def frameshift_del(gene: str) -> list:
|
|
417
430
|
for index, base in enumerate(cds, start=1):
|
418
431
|
variants.append((f"{seqrecord.id}:c.{str(index) + base}del",))
|
419
432
|
return variants
|
420
|
-
|
421
|
-
|
422
|
-
__all__ = [
|
423
|
-
"frameshift_dup",
|
424
|
-
"frameshift_del",
|
425
|
-
"cds",
|
426
|
-
"inframe_dup",
|
427
|
-
"inframe_del",
|
428
|
-
"splicing",
|
429
|
-
"utr5",
|
430
|
-
"utr3",
|
431
|
-
"aa_sub",
|
432
|
-
"missense",
|
433
|
-
]
|
@@ -0,0 +1,6 @@
|
|
1
|
+
varsim/__init__.py,sha256=ZIHKGBIp-8_seM6suoUCe2A8OgOL0gR8Oocu-IpCe_k,17712
|
2
|
+
varsim-1.0.6.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
3
|
+
varsim-1.0.6.dist-info/METADATA,sha256=p205IC4VbHE2OXj7KexqchrFKTp0Ema67c37s4O3rFs,2464
|
4
|
+
varsim-1.0.6.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
5
|
+
varsim-1.0.6.dist-info/top_level.txt,sha256=2fLprhnBvkF-7VEOzGcpKoodqW08HjyNbVzM6emJrTI,7
|
6
|
+
varsim-1.0.6.dist-info/RECORD,,
|
varsim-1.0.5.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
varsim/__init__.py,sha256=r2jXdCqlbLaJsNGXum0B9hBoX0gpGMNQ_aIqt2GyXr8,17714
|
2
|
-
varsim-1.0.5.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
3
|
-
varsim-1.0.5.dist-info/METADATA,sha256=8Uo9_Gn2Pg3Mkct-ZC7oJ9la2ZfddqvduepCUwnorPA,2464
|
4
|
-
varsim-1.0.5.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
5
|
-
varsim-1.0.5.dist-info/top_level.txt,sha256=2fLprhnBvkF-7VEOzGcpKoodqW08HjyNbVzM6emJrTI,7
|
6
|
-
varsim-1.0.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|