geney 1.3.5__py2.py3-none-any.whl → 1.3.7__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/Fasta_segment.py +1 -1
- geney/config_setup.py +1 -0
- geney/splicing_utils.py +1 -1
- {geney-1.3.5.dist-info → geney-1.3.7.dist-info}/METADATA +1 -1
- {geney-1.3.5.dist-info → geney-1.3.7.dist-info}/RECORD +7 -7
- {geney-1.3.5.dist-info → geney-1.3.7.dist-info}/WHEEL +0 -0
- {geney-1.3.5.dist-info → geney-1.3.7.dist-info}/top_level.txt +0 -0
geney/Fasta_segment.py
CHANGED
|
@@ -104,7 +104,7 @@ class Fasta_segment():
|
|
|
104
104
|
indices = list(range(start_loc, end_loc + 1))
|
|
105
105
|
assert len(seq) == len(
|
|
106
106
|
indices), f'reference data not compatible; {len(seq)}, {len(indices)}, start: {start_loc}, end: {end_loc}, {file}'
|
|
107
|
-
return seq, indices
|
|
107
|
+
return {"seq": seq, "indices": indices}
|
|
108
108
|
|
|
109
109
|
def __compute_file_stats(self, fp) -> tuple:
|
|
110
110
|
'''
|
geney/config_setup.py
CHANGED
|
@@ -8,6 +8,7 @@ def get_config():
|
|
|
8
8
|
config_setup = {k: {k_in: Path(p_in) for k_in, p_in in p.items()} for k, p in json.loads(open(config_file).read()).items()}
|
|
9
9
|
config_setup['hg38']['titer_path'] = Path('/tamir2/nicolaslynn/tools/titer')
|
|
10
10
|
config_setup['hg38']['yoram_path'] = Path('/tamir2/yoramzar/Projects/Cancer_mut/Utils')
|
|
11
|
+
config_setup['hg38']['splicing_db'] = Path('/tamir2/nicolaslynn/data/OncosplicePredictions/hg38/splicing')
|
|
11
12
|
else:
|
|
12
13
|
print("Database not set up.")
|
|
13
14
|
config_setup = {}
|
geney/splicing_utils.py
CHANGED
|
@@ -495,7 +495,7 @@ import os
|
|
|
495
495
|
|
|
496
496
|
# Global connection and cursor (adjust to your architecture)
|
|
497
497
|
# Ideally, initialize this once in your application startup code.
|
|
498
|
-
DB_PATH = os.path.join(config['splicing_db'], 'mutation_data.db')
|
|
498
|
+
DB_PATH = os.path.join(config['hg38']['splicing_db'], 'mutation_data.db')
|
|
499
499
|
conn = sqlite3.connect(DB_PATH, isolation_level=None) # autocommit mode
|
|
500
500
|
cursor = conn.cursor()
|
|
501
501
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
geney/Fasta_segment.py,sha256=
|
|
1
|
+
geney/Fasta_segment.py,sha256=99HxNGNh_MfdVW6hhtlb1vOn7eSmT7oFoEfHDFMxG8w,11275
|
|
2
2
|
geney/Gene.py,sha256=JGWtfA6-d1W3I9YRASwaF8vaZ6CCuY0KEawQNdloIqY,6259
|
|
3
3
|
geney/SeqMats.py,sha256=jkXmXAs0OpnFeyCfiJcKKpHHSi9JpKgiOIwsu63e1CQ,18557
|
|
4
4
|
geney/Transcript.py,sha256=eRZXVVxDVBbv0l385bnAOBFRBSzBwppXcbBq8KXkwlo,14443
|
|
5
5
|
geney/__init__.py,sha256=eBdDl42N6UhcYeZDjOnv199Z88fI5_8Y6xW8447OKXM,755
|
|
6
6
|
geney/_mutation_utils.py,sha256=dHssUsnii_mf-wuRoMmF13UlD7k3ml_VwQMItTYnXpU,1132
|
|
7
|
-
geney/config_setup.py,sha256=
|
|
7
|
+
geney/config_setup.py,sha256=nblcGU3HIt8YjdrAoGfbEVKRxwJKv0PikJ5-7AL6axQ,723
|
|
8
8
|
geney/data_setup.py,sha256=2RHmuvcGUQbEglXQEZr0C2QPDTQYRZOEm0EcmyfQJgU,12229
|
|
9
9
|
geney/graphic_utils.py,sha256=oMsBpB9YeEn96gGpKh4MmtagJffWZbk-xPrIwHvkFhA,11016
|
|
10
10
|
geney/gtex_utils.py,sha256=asL2lHyU5KsbWpV096vkf1Ka7hSo_RRfZqw7p5nERmE,1919
|
|
@@ -15,7 +15,7 @@ geney/pangolin_utils.py,sha256=i5j5vEMCWOTIa1mRP2377BAhlUFZjHBzTQBips4lA_4,2934
|
|
|
15
15
|
geney/power_utils.py,sha256=MehZFUdkJ2EFUot709yPEDxSkXmH5XevMebX2HD768A,7330
|
|
16
16
|
geney/seqmat_utils.py,sha256=wzb3PX5it5bpIFQvcxyzlxfhoJTbHHbsjg0rzh05iVs,19753
|
|
17
17
|
geney/spliceai_utils.py,sha256=PFIhTK8Ihrj-cv5tgRN0UFPYEmC4uxtqXSP9bBLnZRM,3077
|
|
18
|
-
geney/splicing_utils.py,sha256=
|
|
18
|
+
geney/splicing_utils.py,sha256=sDohbrEQx2cevpj6YPPPsfa-ic7R2j6RRpOlbyC5foc,26366
|
|
19
19
|
geney/survival_utils.py,sha256=KnAzEviMuXh6SnVXId9PgsFLSbgkduTvYoIthxN7FPA,6886
|
|
20
20
|
geney/tcga_utils.py,sha256=D_BNHm-D_K408dlcJm3hzH2c6QNFjQsKvUcOPiQRk7g,17612
|
|
21
21
|
geney/tis_utils.py,sha256=2makfGfVlDFVIbxzXE85AY9jmAjcNmxyIAxjvkRA5LY,7396
|
|
@@ -24,7 +24,7 @@ geney/translation_initiation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
24
24
|
geney/translation_initiation/tis_utils.py,sha256=AF3siFjuQH-Rs44EV-80zHdbxRMvN4woLFSHroWIETc,4448
|
|
25
25
|
geney/translation_initiation/resources/kozak_pssm.json,sha256=pcd0Olziutq-6H3mFWDCD9cujQ_AlZO-iiOvBl82hqE,1165
|
|
26
26
|
geney/translation_initiation/resources/tis_regressor_model.joblib,sha256=IXb4DUDhJ5rBDKcqMk9zE3ECTZZcdj7Jixz3KpoZ7OA,2592025
|
|
27
|
-
geney-1.3.
|
|
28
|
-
geney-1.3.
|
|
29
|
-
geney-1.3.
|
|
30
|
-
geney-1.3.
|
|
27
|
+
geney-1.3.7.dist-info/METADATA,sha256=lf_Sup4GRMD5YZZUuIpO0WKbhNX5NBJ53R6AQR5AkfU,994
|
|
28
|
+
geney-1.3.7.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
|
29
|
+
geney-1.3.7.dist-info/top_level.txt,sha256=O-FuNUMb5fn9dhZ-dYCgF0aZtfi1EslMstnzhc5IIVo,6
|
|
30
|
+
geney-1.3.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|