geney 1.2.36__py2.py3-none-any.whl → 1.2.38__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.
Potentially problematic release.
This version of geney might be problematic. Click here for more details.
- geney/oncosplice.py +2 -2
- geney/tis_utils.py +1 -1
- {geney-1.2.36.dist-info → geney-1.2.38.dist-info}/METADATA +1 -1
- {geney-1.2.36.dist-info → geney-1.2.38.dist-info}/RECORD +6 -6
- {geney-1.2.36.dist-info → geney-1.2.38.dist-info}/WHEEL +0 -0
- {geney-1.2.36.dist-info → geney-1.2.38.dist-info}/top_level.txt +0 -0
geney/oncosplice.py
CHANGED
|
@@ -400,7 +400,7 @@ def oncosplice(mut_id, splicing_threshold=0.5, protein_coding=True, primary_tran
|
|
|
400
400
|
sorted(cons_vector).index(next(x for x in sorted(cons_vector) if x >= affected_cons_scores)) / len(
|
|
401
401
|
cons_vector))
|
|
402
402
|
|
|
403
|
-
report = OncospliceAnnotator(reference_transcript, transcript, mutation)
|
|
403
|
+
report = {} #OncospliceAnnotator(reference_transcript, transcript, mutation)
|
|
404
404
|
report['mut_id'] = mut_id
|
|
405
405
|
report['oncosplice_score'] = affected_cons_scores
|
|
406
406
|
report['percentile'] = percentile
|
|
@@ -489,7 +489,7 @@ async def oncosplice_prototype(mut_id, splicing_threshold=0.5, protein_coding=Tr
|
|
|
489
489
|
sorted(cons_vector).index(next(x for x in sorted(cons_vector) if x >= affected_cons_scores)) / len(
|
|
490
490
|
cons_vector))
|
|
491
491
|
|
|
492
|
-
out = domains_df.apply(lambda row: inspect_domain(row,
|
|
492
|
+
out = domains_df.apply(lambda row: inspect_domain(row, modified_positions, cons_vector), axis=1)
|
|
493
493
|
domains_affected = '+'.join([f'{a}:{b}' for a, b in list(zip(out.domain_identifier, out.score))])
|
|
494
494
|
|
|
495
495
|
report = OncospliceAnnotator(reference_transcript, transcript, mutation)
|
geney/tis_utils.py
CHANGED
|
@@ -97,7 +97,7 @@ def seq_matrix(seq_list):
|
|
|
97
97
|
return tensor
|
|
98
98
|
|
|
99
99
|
|
|
100
|
-
def build_titer_model(TITER_path=config['titer_path']):
|
|
100
|
+
def build_titer_model(TITER_path=config['hg38']['titer_path']):
|
|
101
101
|
print('Building TITER model...')
|
|
102
102
|
from tensorflow.keras.constraints import MaxNorm
|
|
103
103
|
from tensorflow.keras.layers import Conv1D, MaxPool1D, LSTM, Dropout, Flatten, Dense, Activation
|
|
@@ -6,7 +6,7 @@ geney/graphic_utils.py,sha256=tjm6IDQ1BdfSeuPYzjlqAUHFQoDYH9jXTzJjKFS4Hh4,11078
|
|
|
6
6
|
geney/gtex_utils.py,sha256=asL2lHyU5KsbWpV096vkf1Ka7hSo_RRfZqw7p5nERmE,1919
|
|
7
7
|
geney/immune_utils.py,sha256=ZRni5ttrhpYBnmNr0d0ZatIbNPYs4nmQuoUO00SpsS4,5271
|
|
8
8
|
geney/mutation_utils.py,sha256=C_kv2MB_L8LlhX3W2ooXjJ3uDoJ8zX1WeDtZKoBZJkI,1547
|
|
9
|
-
geney/oncosplice.py,sha256=
|
|
9
|
+
geney/oncosplice.py,sha256=Ph8AMR2L9wjh3Gl3X58Dd8F1ea4on9jXIxg7EO0zVEU,22565
|
|
10
10
|
geney/pangolin_utils.py,sha256=ETTGpuaQgdZ1v8H0NP8sbTEfGWu0VXUFUS7wsURsTc4,2991
|
|
11
11
|
geney/power_utils.py,sha256=MehZFUdkJ2EFUot709yPEDxSkXmH5XevMebX2HD768A,7330
|
|
12
12
|
geney/seqmat_utils.py,sha256=YV5DFLbfjXLIswPGvqK1-eEfwn9TUby0b2kewdGAKws,18372
|
|
@@ -14,13 +14,13 @@ geney/spliceai_utils.py,sha256=gIGPC8u3J15A7EQrk2Elho5PbF9MmUUNopGGH-eEV8s,1873
|
|
|
14
14
|
geney/splicing_utils.py,sha256=q47EdcsHrp4aLIPVWvkGBJSzS3l3DKiD9DNDsPpZdHk,16075
|
|
15
15
|
geney/survival_utils.py,sha256=2CAkC2LsspicHIdrqsiPnjgvpr5KHDUfLFFqnRbPJqs,5762
|
|
16
16
|
geney/tcga_utils.py,sha256=vXSMf1OxoF_AdE_rMguy_BoYaart_E1t4FFMx2DS1Ak,15585
|
|
17
|
-
geney/tis_utils.py,sha256=
|
|
17
|
+
geney/tis_utils.py,sha256=Oz54dgAjc1PEikp4Snh6qlpT-8eVJDWhM_k0aJAQvFM,8047
|
|
18
18
|
geney/utils.py,sha256=EsKvBM-Nz2a3_4ZAhF4Dxd4PwT7_6YYKpxEN4LLgg10,2174
|
|
19
19
|
geney/translation_initiation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
geney/translation_initiation/tis_utils.py,sha256=AF3siFjuQH-Rs44EV-80zHdbxRMvN4woLFSHroWIETc,4448
|
|
21
21
|
geney/translation_initiation/resources/kozak_pssm.json,sha256=pcd0Olziutq-6H3mFWDCD9cujQ_AlZO-iiOvBl82hqE,1165
|
|
22
22
|
geney/translation_initiation/resources/tis_regressor_model.joblib,sha256=IXb4DUDhJ5rBDKcqMk9zE3ECTZZcdj7Jixz3KpoZ7OA,2592025
|
|
23
|
-
geney-1.2.
|
|
24
|
-
geney-1.2.
|
|
25
|
-
geney-1.2.
|
|
26
|
-
geney-1.2.
|
|
23
|
+
geney-1.2.38.dist-info/METADATA,sha256=a5g8X4PPpand3B4nvkbemKP4Sj066AVa7AqIjLBEGSU,948
|
|
24
|
+
geney-1.2.38.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
|
25
|
+
geney-1.2.38.dist-info/top_level.txt,sha256=O-FuNUMb5fn9dhZ-dYCgF0aZtfi1EslMstnzhc5IIVo,6
|
|
26
|
+
geney-1.2.38.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|