geney 1.3.54__py2.py3-none-any.whl → 1.3.56__py2.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.
geney/oncosplice.py
CHANGED
|
@@ -319,14 +319,15 @@ def oncosplice(mut_id, splicing_threshold=0.5, protein_coding=True, cons_require
|
|
|
319
319
|
|
|
320
320
|
results = []
|
|
321
321
|
for reference_transcript in tqdm(gene, desc=f'Processing {mut_id}...'):
|
|
322
|
-
if (cons_required and not reference_transcript.cons_available) or (
|
|
323
|
-
|
|
324
|
-
|
|
322
|
+
# if (cons_required and not reference_transcript.cons_available) or (
|
|
323
|
+
# protein_coding and not reference_transcript.transcript_biotype == 'protein_coding'):
|
|
324
|
+
if protein_coding and not reference_transcript.transcript_biotype == 'protein_coding':
|
|
325
|
+
print("Not protein coding...")
|
|
325
326
|
continue
|
|
326
327
|
|
|
327
328
|
current_mutations = [m for m in mutations if m in reference_transcript]
|
|
328
329
|
if len(current_mutations) == 0:
|
|
329
|
-
print("No mutations within transcript...")
|
|
330
|
+
print(f"No mutations within transcript ({reference_transcript.transcript_start} > {reference_transcript.transcript_end})...")
|
|
330
331
|
continue
|
|
331
332
|
|
|
332
333
|
center = np.mean([m.indices[0] for m in current_mutations]) // 1
|
|
@@ -337,7 +338,8 @@ def oncosplice(mut_id, splicing_threshold=0.5, protein_coding=True, cons_require
|
|
|
337
338
|
mutated_transcript.mutate(mutation, inplace=True)
|
|
338
339
|
|
|
339
340
|
reference_transcript.generate_mature_mrna().generate_protein()
|
|
340
|
-
if '*' in reference_transcript.protein or
|
|
341
|
+
# if ('*' in reference_transcript.protein or
|
|
342
|
+
if len(reference_transcript.protein) < window_length:
|
|
341
343
|
print(f"> Errors in reference transcript {reference_transcript.transcript_id}")
|
|
342
344
|
continue
|
|
343
345
|
|
|
@@ -11,7 +11,7 @@ geney/graphic_utils.py,sha256=oMsBpB9YeEn96gGpKh4MmtagJffWZbk-xPrIwHvkFhA,11016
|
|
|
11
11
|
geney/gtex_utils.py,sha256=asL2lHyU5KsbWpV096vkf1Ka7hSo_RRfZqw7p5nERmE,1919
|
|
12
12
|
geney/immune_utils.py,sha256=ZRni5ttrhpYBnmNr0d0ZatIbNPYs4nmQuoUO00SpsS4,5271
|
|
13
13
|
geney/mutation_utils.py,sha256=C_kv2MB_L8LlhX3W2ooXjJ3uDoJ8zX1WeDtZKoBZJkI,1547
|
|
14
|
-
geney/oncosplice.py,sha256=
|
|
14
|
+
geney/oncosplice.py,sha256=S4zitixt8pwxFCLJlOC6XAx5e8EVdUEyXoO2ZssLAaw,24593
|
|
15
15
|
geney/pangolin_utils.py,sha256=9jdBXlOcRaUdfi-UpUxHA0AkTMZkUF-Lt7HVZ1nEm3s,2973
|
|
16
16
|
geney/power_utils.py,sha256=MehZFUdkJ2EFUot709yPEDxSkXmH5XevMebX2HD768A,7330
|
|
17
17
|
geney/seqmat_utils.py,sha256=wzb3PX5it5bpIFQvcxyzlxfhoJTbHHbsjg0rzh05iVs,19753
|
|
@@ -25,7 +25,7 @@ geney/translation_initiation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
25
25
|
geney/translation_initiation/tis_utils.py,sha256=AF3siFjuQH-Rs44EV-80zHdbxRMvN4woLFSHroWIETc,4448
|
|
26
26
|
geney/translation_initiation/resources/kozak_pssm.json,sha256=pcd0Olziutq-6H3mFWDCD9cujQ_AlZO-iiOvBl82hqE,1165
|
|
27
27
|
geney/translation_initiation/resources/tis_regressor_model.joblib,sha256=IXb4DUDhJ5rBDKcqMk9zE3ECTZZcdj7Jixz3KpoZ7OA,2592025
|
|
28
|
-
geney-1.3.
|
|
29
|
-
geney-1.3.
|
|
30
|
-
geney-1.3.
|
|
31
|
-
geney-1.3.
|
|
28
|
+
geney-1.3.56.dist-info/METADATA,sha256=ywk8WyoHHwiZUG8VbDcKGxUxNmPpKrufrPA8n1xgq6g,990
|
|
29
|
+
geney-1.3.56.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
|
|
30
|
+
geney-1.3.56.dist-info/top_level.txt,sha256=O-FuNUMb5fn9dhZ-dYCgF0aZtfi1EslMstnzhc5IIVo,6
|
|
31
|
+
geney-1.3.56.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|