geney 1.2.9__py2.py3-none-any.whl → 1.2.11__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
|
@@ -519,6 +519,7 @@ class Transcript:
|
|
|
519
519
|
seq, indices = self.pull_pre_mrna_pos()
|
|
520
520
|
if self.variations:
|
|
521
521
|
for mutation in self.variations.variants:
|
|
522
|
+
print(f"Implementing {mutation}")
|
|
522
523
|
seq, indices = generate_mut_variant(seq, indices, mut=mutation)
|
|
523
524
|
return seq, indices
|
|
524
525
|
|
|
@@ -791,6 +792,7 @@ def find_transcript_missplicing(mutations, ref_transcript, var_transcript, conte
|
|
|
791
792
|
start_pad, end_pad = max(0, context - (center_index - start_cutoff)), max(0, context - (end_cutoff - center_index))
|
|
792
793
|
mut_seq = 'N' * start_pad + mut_seq[start_cutoff:end_cutoff] + 'N' * end_pad
|
|
793
794
|
mut_indices = [-1] * start_pad + mut_indices[start_cutoff:end_cutoff] + [-1] * end_pad
|
|
795
|
+
print(mut_seq)
|
|
794
796
|
|
|
795
797
|
copy_mut_indices = mut_indices.copy()
|
|
796
798
|
|
|
@@ -820,6 +822,9 @@ def find_transcript_missplicing(mutations, ref_transcript, var_transcript, conte
|
|
|
820
822
|
visible_acceptors = np.intersect1d(ref_transcript.acceptors, ref_indices)
|
|
821
823
|
# print(ref_indices.index(visible_donors[0]), ref_seq_donor_probs[ref_indices.index(visible_donors[0])], mut_seq_donor_probs[mut_indices.index(visible_donors[0])])
|
|
822
824
|
|
|
825
|
+
print(len(ref_seq_donor_probs), len(ref_seq_acceptor_probs), len(mut_seq_donor_probs), len(mut_seq_acceptor_probs), len(ref_indices), len(mut_indices))
|
|
826
|
+
print(ref_seq_donor_probs)
|
|
827
|
+
|
|
823
828
|
assert len(ref_indices) == len(ref_seq_acceptor_probs), 'Reference pos not the same'
|
|
824
829
|
assert len(mut_indices) == len(mut_seq_acceptor_probs), 'Mut pos not the same'
|
|
825
830
|
|
|
@@ -848,7 +853,9 @@ def find_transcript_missplicing(mutations, ref_transcript, var_transcript, conte
|
|
|
848
853
|
|
|
849
854
|
missplicing = {'missed_acceptors': dap, 'missed_donors': ddp, 'discovered_acceptors': iap, 'discovered_donors': idp}
|
|
850
855
|
missplicing = {outk: {float(k): v for k, v in outv.items()} for outk, outv in missplicing.items()}
|
|
851
|
-
|
|
856
|
+
temp = {outk: {int(k) if k.is_integer() else k: v for k, v in outv.items()} for outk, outv in missplicing.items()}
|
|
857
|
+
print(temp)
|
|
858
|
+
return temp
|
|
852
859
|
|
|
853
860
|
|
|
854
861
|
# def run_spliceai_transcript(mutations, transcript_data, sai_mrg_context=5000, min_coverage=2500, sai_threshold=0.5, engine='spliceai'):
|
|
@@ -9,7 +9,7 @@ geney/gtex.py,sha256=asL2lHyU5KsbWpV096vkf1Ka7hSo_RRfZqw7p5nERmE,1919
|
|
|
9
9
|
geney/gtex_utils.py,sha256=asL2lHyU5KsbWpV096vkf1Ka7hSo_RRfZqw7p5nERmE,1919
|
|
10
10
|
geney/immune_utils.py,sha256=ZRni5ttrhpYBnmNr0d0ZatIbNPYs4nmQuoUO00SpsS4,5271
|
|
11
11
|
geney/netchop.py,sha256=AMiy9YsdTmX4B3k3Y5Yh7EmoGAojM1O3AzhPKOiB--g,3050
|
|
12
|
-
geney/oncosplice.py,sha256=
|
|
12
|
+
geney/oncosplice.py,sha256=ZaCsRUNLhGx3Yg9l-Vp7MnP4_mOe3fj6T-_d9Wfs1QE,77755
|
|
13
13
|
geney/oncosplice_mouse.py,sha256=LYLOukI9qI1IBkyl1qVRFR5d1NAw7Orlj8Zth-4xCW8,12962
|
|
14
14
|
geney/oncosplice_pipeline.py,sha256=hpGqFHOdn8i8tvvs1-t3-G9Ko18zInwoDXBJbbrfbC4,68036
|
|
15
15
|
geney/performance_utils.py,sha256=FQt7rA4r-Wuq3kceCxsSuMfj3wU1tMG8QnbL59aBohs,4700
|
|
@@ -45,7 +45,7 @@ geney/translation_initiation/resources/kozak_pssm.json,sha256=pcd0Olziutq-6H3mFW
|
|
|
45
45
|
geney/translation_initiation/resources/tis_regressor_model.joblib,sha256=IXb4DUDhJ5rBDKcqMk9zE3ECTZZcdj7Jixz3KpoZ7OA,2592025
|
|
46
46
|
geney/translation_termination/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
geney/translation_termination/tts_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
geney-1.2.
|
|
49
|
-
geney-1.2.
|
|
50
|
-
geney-1.2.
|
|
51
|
-
geney-1.2.
|
|
48
|
+
geney-1.2.11.dist-info/METADATA,sha256=Ll6Nz8fBNL_ZIVWYxb8NnWlt1AIKQoNOazopm6c6q-I,1199
|
|
49
|
+
geney-1.2.11.dist-info/WHEEL,sha256=iYlv5fX357PQyRT2o6tw1bN-YcKFFHKqB_LwHO5wP-g,110
|
|
50
|
+
geney-1.2.11.dist-info/top_level.txt,sha256=O-FuNUMb5fn9dhZ-dYCgF0aZtfi1EslMstnzhc5IIVo,6
|
|
51
|
+
geney-1.2.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|