geney 1.4.10__py2.py3-none-any.whl → 1.4.12__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/utils/SeqMats.py CHANGED
@@ -39,6 +39,7 @@ class SeqMat:
39
39
  rev: bool = field(default=False, init=False, repr=False)
40
40
 
41
41
  predicted_splicing: pd.DataFrame = field(init=False, repr=False)
42
+ _pos_to_idx: dict = field(default_factory=dict, init=False, repr=False)
42
43
 
43
44
  def __init__(
44
45
  self,
@@ -149,6 +150,9 @@ class SeqMat:
149
150
  cloned.version = self.version
150
151
  cloned.notes = self.notes.copy()
151
152
  cloned.rev = self.rev
153
+
154
+ cloned._pos_to_idx = {pos: i for i, pos in enumerate(cloned.seq_array["index"])}
155
+
152
156
  return cloned
153
157
 
154
158
  def apply_mutation(self, pos: int, ref: str, alt: str, only_snps: bool = False):
@@ -193,7 +197,7 @@ class SeqMat:
193
197
  pos_idx = self._pos_to_idx.get(pos)
194
198
  if pos_idx is None:
195
199
  raise ValueError(f"Position {pos} not found in index")
196
-
200
+
197
201
  end_idx = pos_idx + len(ref)
198
202
  if end_idx > len(self.seq_array):
199
203
  raise ValueError(f"Substitution range exceeds sequence length at position {pos}.")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: geney
3
- Version: 1.4.10
3
+ Version: 1.4.12
4
4
  Summary: A Python package for gene expression modeling.
5
5
  Home-page: https://github.com/nicolaslynn/geney
6
6
  Author: Nicolas Lynn
@@ -37,7 +37,7 @@ geney/translation_initiation/tis_utils.py,sha256=AF3siFjuQH-Rs44EV-80zHdbxRMvN4w
37
37
  geney/translation_initiation/resources/kozak_pssm.json,sha256=pcd0Olziutq-6H3mFWDCD9cujQ_AlZO-iiOvBl82hqE,1165
38
38
  geney/translation_initiation/resources/tis_regressor_model.joblib,sha256=IXb4DUDhJ5rBDKcqMk9zE3ECTZZcdj7Jixz3KpoZ7OA,2592025
39
39
  geney/utils/Fasta_segment.py,sha256=weB5NJ65P0XiyAJCiCHx4T9sHC1pWLpuQeOy0B85gyg,11364
40
- geney/utils/SeqMats.py,sha256=kpv5v_6VgUc72Qip3fLYZV_7Jb6dIoQLIrECL5BCBl4,18207
40
+ geney/utils/SeqMats.py,sha256=HegxEEacLQmtFnXOoEjLfrdSN4k8NqNCigb2geUmDN8,18362
41
41
  geney/utils/TranscriptLibrary.py,sha256=ma_ZVPgglxXDDneEvdqxxeqxG8eSFL-zgLUXyC6BqY8,2070
42
42
  geney/utils/__init__.py,sha256=-nJ-DMx1JzP-ZCe_QuQCeM0ZYIT_16jxoXDhUaO_4Oc,714
43
43
  geney/utils/mutation_utils.py,sha256=r-pHr56gEa5kh_DPX8MjFY3ZfYaOtyo4CUfJ5ZHlXPw,3243
@@ -45,7 +45,7 @@ geney/utils/pangolin_utils.py,sha256=JQSPbWxdzqGFYfWQktkfLMaMSGR28eGQhNzO7MLMe5M
45
45
  geney/utils/spliceai_utils.py,sha256=VtrIbjyQxk_3lw86eWjftRYyal9OzxArJ0GV5u_ymTg,2721
46
46
  geney/utils/splicing_utils.py,sha256=vPCGnCPR1ooEZEHR79yFHLmRQXEJHXEQjjxpBR-YWOs,20635
47
47
  geney/utils/utils.py,sha256=m51Vd0cEbrcIHo6_8BAuI9YSPcKRs22e5LfVd2Qj6Is,2181
48
- geney-1.4.10.dist-info/METADATA,sha256=sC6GeWBSkBjO3TiAdksz4Xs0SZEx-gGwpf9Eu-s8q6w,990
49
- geney-1.4.10.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
50
- geney-1.4.10.dist-info/top_level.txt,sha256=O-FuNUMb5fn9dhZ-dYCgF0aZtfi1EslMstnzhc5IIVo,6
51
- geney-1.4.10.dist-info/RECORD,,
48
+ geney-1.4.12.dist-info/METADATA,sha256=9-B8eMGFWZs4gALtUZeGTNZZVAaj3JZuPLcaCzSDQvU,990
49
+ geney-1.4.12.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
50
+ geney-1.4.12.dist-info/top_level.txt,sha256=O-FuNUMb5fn9dhZ-dYCgF0aZtfi1EslMstnzhc5IIVo,6
51
+ geney-1.4.12.dist-info/RECORD,,
File without changes