sapiopycommons 2024.10.31a349__py3-none-any.whl → 2024.11.7a354__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 sapiopycommons might be problematic. Click here for more details.
- sapiopycommons/chem/IndigoMolecules.py +1 -0
- sapiopycommons/chem/Molecules.py +77 -19
- sapiopycommons/flowcyto/flow_cyto.py +77 -0
- sapiopycommons/flowcyto/flowcyto_data.py +75 -0
- sapiopycommons/multimodal/multimodal_data.py +6 -3
- {sapiopycommons-2024.10.31a349.dist-info → sapiopycommons-2024.11.7a354.dist-info}/METADATA +1 -1
- {sapiopycommons-2024.10.31a349.dist-info → sapiopycommons-2024.11.7a354.dist-info}/RECORD +9 -7
- {sapiopycommons-2024.10.31a349.dist-info → sapiopycommons-2024.11.7a354.dist-info}/WHEEL +0 -0
- {sapiopycommons-2024.10.31a349.dist-info → sapiopycommons-2024.11.7a354.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,6 +9,7 @@ indigo.setOption("ignore-stereochemistry-errors", True)
|
|
|
9
9
|
indigo.setOption("render-stereo-style", "ext")
|
|
10
10
|
indigo.setOption("aromaticity-model", "generic")
|
|
11
11
|
indigo.setOption("render-coloring", True)
|
|
12
|
+
indigo.setOption("molfile-saving-mode", "3000")
|
|
12
13
|
indigo_inchi = IndigoInchi(indigo);
|
|
13
14
|
|
|
14
15
|
|
sapiopycommons/chem/Molecules.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Author Yechen Qiao
|
|
2
2
|
# Common Molecule Utilities for Molecule Transfers with Sapio
|
|
3
|
+
from typing import cast
|
|
3
4
|
|
|
4
5
|
from rdkit import Chem
|
|
5
6
|
from rdkit.Chem import Crippen, MolToInchi
|
|
@@ -20,6 +21,25 @@ tautomer_params.tautomerReassignStereo = False
|
|
|
20
21
|
tautomer_params.tautomerRemoveIsotopicHs = True
|
|
21
22
|
enumerator = rdMolStandardize.TautomerEnumerator(tautomer_params)
|
|
22
23
|
|
|
24
|
+
|
|
25
|
+
def get_enhanced_stereo_reg_hash(mol: Mol, enhanced_stereo: bool) -> str:
|
|
26
|
+
"""
|
|
27
|
+
Get the Registration Hash for the molecule by the current registration configuration.
|
|
28
|
+
When we are running if we are canonicalization of tautomers or cleaning up any other way, do they first before calling.
|
|
29
|
+
:param mol: The molecule to obtain hash for.
|
|
30
|
+
:param canonical_tautomer: Whether the registry system canonicalize the tautomers.
|
|
31
|
+
:param enhanced_stereo: Whether we are computing enhanced stereo at all.
|
|
32
|
+
:return: The enhanced stereo hash.
|
|
33
|
+
"""
|
|
34
|
+
if enhanced_stereo:
|
|
35
|
+
from rdkit.Chem.RegistrationHash import GetMolLayers, GetMolHash, HashScheme
|
|
36
|
+
layers = GetMolLayers(mol, enable_tautomer_hash_v2=True)
|
|
37
|
+
hash_scheme: HashScheme = HashScheme.TAUTOMER_INSENSITIVE_LAYERS
|
|
38
|
+
return GetMolHash(layers, hash_scheme=hash_scheme)
|
|
39
|
+
else:
|
|
40
|
+
return ""
|
|
41
|
+
|
|
42
|
+
|
|
23
43
|
def neutralize_atoms(mol) -> Mol:
|
|
24
44
|
"""
|
|
25
45
|
Neutralize atoms per https://baoilleach.blogspot.com/2019/12/no-charge-simple-approach-to.html
|
|
@@ -86,7 +106,6 @@ def mol_to_img(mol_str: str) -> str:
|
|
|
86
106
|
return renderer.renderToString(mol)
|
|
87
107
|
|
|
88
108
|
|
|
89
|
-
|
|
90
109
|
def mol_to_sapio_partial_pojo(mol: Mol):
|
|
91
110
|
"""
|
|
92
111
|
Get the minimum information about molecule to Sapio, just its SMILES, V3000, and image data.
|
|
@@ -96,7 +115,7 @@ def mol_to_sapio_partial_pojo(mol: Mol):
|
|
|
96
115
|
Chem.SanitizeMol(mol)
|
|
97
116
|
mol.UpdatePropertyCache()
|
|
98
117
|
smiles = Chem.MolToSmiles(mol)
|
|
99
|
-
molBlock = Chem.MolToMolBlock(mol)
|
|
118
|
+
molBlock = Chem.MolToMolBlock(mol, forceV3000=True)
|
|
100
119
|
img = mol_to_img(mol)
|
|
101
120
|
molecule = dict()
|
|
102
121
|
molecule["smiles"] = smiles
|
|
@@ -105,23 +124,52 @@ def mol_to_sapio_partial_pojo(mol: Mol):
|
|
|
105
124
|
return molecule
|
|
106
125
|
|
|
107
126
|
|
|
108
|
-
def
|
|
127
|
+
def get_cxs_smiles_hash(mol: Mol, enhanced_stereo: bool) -> str:
|
|
128
|
+
"""
|
|
129
|
+
Return the SHA1 CXS Smiles hash for the canonical, isomeric CXS SMILES of the molecule.
|
|
130
|
+
"""
|
|
131
|
+
if not enhanced_stereo:
|
|
132
|
+
return ""
|
|
133
|
+
import hashlib
|
|
134
|
+
return hashlib.sha1(Chem.MolToCXSmiles(mol, canonical=True, isomericSmiles=True).encode()).hexdigest()
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
def get_has_or_group(mol: Mol, enhanced_stereo: bool) -> bool:
|
|
138
|
+
"""
|
|
139
|
+
Return true if and only if: enhanced stereochemistry is enabled and there is at least one OR group in mol.
|
|
140
|
+
"""
|
|
141
|
+
if not enhanced_stereo:
|
|
142
|
+
return False
|
|
143
|
+
from rdkit.Chem import StereoGroup_vect, STEREO_OR
|
|
144
|
+
stereo_groups: StereoGroup_vect = mol.GetStereoGroups()
|
|
145
|
+
for stereo_group in stereo_groups:
|
|
146
|
+
if stereo_group.GetGroupType() == STEREO_OR:
|
|
147
|
+
return True
|
|
148
|
+
return False
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def mol_to_sapio_substance(mol: Mol, include_stereoisomers=False,
|
|
109
152
|
normalize: bool = False, remove_salt: bool = False, make_images: bool = False,
|
|
110
|
-
salt_def: str | None = None, canonical_tautomer: bool = True
|
|
153
|
+
salt_def: str | None = None, canonical_tautomer: bool = True,
|
|
154
|
+
enhanced_stereo: bool = False, remove_atom_map: bool = True):
|
|
111
155
|
"""
|
|
112
156
|
Convert a molecule in RDKit to a molecule POJO in Sapio.
|
|
113
157
|
|
|
114
158
|
:param mol: The molecule in RDKit.
|
|
115
|
-
:param include_stereoisomers: If true, will compute all stereoisomer permutations of this molecule.
|
|
116
159
|
:param normalize If true, will normalize the functional groups and return normalized result.
|
|
117
160
|
:param remove_salt If true, we will remove salts iteratively from the molecule before returning their data.
|
|
118
161
|
We will also populate desaltedList with molecules we deleted.
|
|
162
|
+
:param make_images Whether to make images as part of the result without having another script to resolve it.
|
|
119
163
|
:param salt_def: if not none, specifies custom salt to be used during the desalt process.
|
|
120
164
|
:param canonical_tautomer: if True, we will attempt to compute canonical tautomer for the molecule. Slow!
|
|
121
165
|
This is needed for a registry. Note it stops after enumeration of 1000.
|
|
166
|
+
:param enhanced_stereo: If enabled, enhanced stereo hash will be produced.
|
|
167
|
+
:param remove_atom_map: When set, clear all atom AAM maps that were set had it been merged into some reactions earlier.
|
|
122
168
|
:return: The molecule POJO for Sapio.
|
|
123
169
|
"""
|
|
124
170
|
molecule = dict()
|
|
171
|
+
if remove_atom_map:
|
|
172
|
+
[a.SetAtomMapNum(0) for a in mol.GetAtoms()]
|
|
125
173
|
Chem.SanitizeMol(mol)
|
|
126
174
|
mol.UpdatePropertyCache()
|
|
127
175
|
Chem.GetSymmSSSR(mol)
|
|
@@ -157,7 +205,7 @@ def mol_to_sapio_substance(mol: Mol, include_stereoisomers: bool = False,
|
|
|
157
205
|
exactMass = Descriptors.ExactMolWt(mol)
|
|
158
206
|
molFormula = rdMolDescriptors.CalcMolFormula(mol)
|
|
159
207
|
charge = Chem.GetFormalCharge(mol)
|
|
160
|
-
molBlock = Chem.MolToMolBlock(mol)
|
|
208
|
+
molBlock = Chem.MolToMolBlock(mol, forceV3000=True)
|
|
161
209
|
|
|
162
210
|
molecule["cLogP"] = cLogP
|
|
163
211
|
molecule["tpsa"] = tpsa
|
|
@@ -181,28 +229,38 @@ def mol_to_sapio_substance(mol: Mol, include_stereoisomers: bool = False,
|
|
|
181
229
|
# We need to test the INCHI can be loaded back to indigo.
|
|
182
230
|
indigo_mol = indigo.loadMolecule(molBlock)
|
|
183
231
|
indigo_mol.aromatize()
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
232
|
+
if enhanced_stereo:
|
|
233
|
+
# Remove enhanced stereo layer when generating InChI as the stereo hash is generated separately for reg.
|
|
234
|
+
mol_copy: Mol = Chem.Mol(mol)
|
|
235
|
+
Chem.CanonicalizeEnhancedStereo(mol_copy)
|
|
236
|
+
molecule["inchi"] = Chem.MolToInchi(mol_copy)
|
|
237
|
+
molecule["inchiKey"] = Chem.MolToInchiKey(mol_copy)
|
|
238
|
+
else:
|
|
239
|
+
indigo_inchi.resetOptions()
|
|
240
|
+
indigo_inchi_str = indigo_inchi.getInchi(indigo_mol)
|
|
241
|
+
molecule["inchi"] = indigo_inchi_str
|
|
242
|
+
indigo_inchi_key_str = indigo_inchi.getInchiKey(indigo_inchi_str)
|
|
243
|
+
molecule["inchiKey"] = indigo_inchi_key_str
|
|
189
244
|
molecule["smiles"] = indigo_mol.smiles()
|
|
245
|
+
molecule["reg_hash"] = get_enhanced_stereo_reg_hash(mol, enhanced_stereo=enhanced_stereo)
|
|
246
|
+
molecule["cxsmiles_hash"] = get_cxs_smiles_hash(mol, enhanced_stereo=enhanced_stereo)
|
|
247
|
+
molecule["has_or_group"] = get_has_or_group(mol, enhanced_stereo=enhanced_stereo)
|
|
190
248
|
|
|
191
|
-
if include_stereoisomers and has_chiral_centers(mol):
|
|
192
|
-
stereoisomers = find_all_possible_stereoisomers(mol, only_unassigned=False, try_embedding=False, unique=True)
|
|
193
|
-
molecule["stereoisomers"] = [mol_to_sapio_partial_pojo(x) for x in stereoisomers]
|
|
194
249
|
return molecule
|
|
195
250
|
|
|
196
251
|
|
|
197
|
-
def mol_to_sapio_compound(mol: Mol, include_stereoisomers: bool = False,
|
|
252
|
+
def mol_to_sapio_compound(mol: Mol, include_stereoisomers=False, enhanced_stereo: bool = False,
|
|
198
253
|
salt_def: str | None = None, resolve_canonical: bool = True,
|
|
199
|
-
make_images: bool = False, canonical_tautomer: bool = True
|
|
254
|
+
make_images: bool = False, canonical_tautomer: bool = True,
|
|
255
|
+
remove_atom_map: bool = True):
|
|
200
256
|
ret = dict()
|
|
201
|
-
ret['originalMol'] = mol_to_sapio_substance(mol, include_stereoisomers,
|
|
257
|
+
ret['originalMol'] = mol_to_sapio_substance(mol, include_stereoisomers=False,
|
|
202
258
|
normalize=False, remove_salt=False, make_images=make_images,
|
|
203
|
-
canonical_tautomer=canonical_tautomer
|
|
259
|
+
canonical_tautomer=canonical_tautomer,
|
|
260
|
+
enhanced_stereo=enhanced_stereo, remove_atom_map=remove_atom_map)
|
|
204
261
|
if resolve_canonical:
|
|
205
262
|
ret['canonicalMol'] = mol_to_sapio_substance(mol, include_stereoisomers=False,
|
|
206
263
|
normalize=True, remove_salt=True, make_images=make_images,
|
|
207
|
-
salt_def=salt_def, canonical_tautomer=canonical_tautomer
|
|
264
|
+
salt_def=salt_def, canonical_tautomer=canonical_tautomer,
|
|
265
|
+
enhanced_stereo=enhanced_stereo, remove_atom_map=remove_atom_map)
|
|
208
266
|
return ret
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from weakref import WeakValueDictionary
|
|
4
|
+
|
|
5
|
+
from sapiopylib.rest.User import SapioUser
|
|
6
|
+
from databind.json import dumps
|
|
7
|
+
|
|
8
|
+
from sapiopycommons.flowcyto.flowcyto_data import FlowJoWorkspaceInputJson, UploadFCSInputJson, \
|
|
9
|
+
ComputeFlowStatisticsInputJson
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class FlowCytoManager:
|
|
13
|
+
"""
|
|
14
|
+
This manager includes flow cytometry analysis tools that would require FlowCyto license to use.
|
|
15
|
+
"""
|
|
16
|
+
_user: SapioUser
|
|
17
|
+
|
|
18
|
+
__instances: WeakValueDictionary[SapioUser, FlowCytoManager] = WeakValueDictionary()
|
|
19
|
+
__initialized: bool
|
|
20
|
+
|
|
21
|
+
def __new__(cls, user: SapioUser):
|
|
22
|
+
"""
|
|
23
|
+
Observes singleton pattern per record model manager object.
|
|
24
|
+
|
|
25
|
+
:param user: The user that will make the webservice request to the application.
|
|
26
|
+
"""
|
|
27
|
+
obj = cls.__instances.get(user)
|
|
28
|
+
if not obj:
|
|
29
|
+
obj = object.__new__(cls)
|
|
30
|
+
obj.__initialized = False
|
|
31
|
+
cls.__instances[user] = obj
|
|
32
|
+
return obj
|
|
33
|
+
|
|
34
|
+
def __init__(self, user: SapioUser):
|
|
35
|
+
if self.__initialized:
|
|
36
|
+
return
|
|
37
|
+
self._user = user
|
|
38
|
+
self.__initialized = True
|
|
39
|
+
|
|
40
|
+
def create_flowjo_workspace(self, workspace_input: FlowJoWorkspaceInputJson) -> int:
|
|
41
|
+
"""
|
|
42
|
+
Create FlowJo Workspace and return the workspace record ID of workspace root record,
|
|
43
|
+
after successful creation.
|
|
44
|
+
:param workspace_input: the request data payload.
|
|
45
|
+
:return: The new workspace record ID.
|
|
46
|
+
"""
|
|
47
|
+
payload = dumps(workspace_input, FlowJoWorkspaceInputJson)
|
|
48
|
+
response = self._user.plugin_post("flowcyto/workspace", payload=payload, is_payload_plain_text=True)
|
|
49
|
+
self._user.raise_for_status(response)
|
|
50
|
+
return int(response.json())
|
|
51
|
+
|
|
52
|
+
def upload_fcs_for_sample(self, upload_input: UploadFCSInputJson) -> int:
|
|
53
|
+
"""
|
|
54
|
+
Upload FCS file as root of the sample FCS.
|
|
55
|
+
:param upload_input: The request data payload
|
|
56
|
+
:return: The root FCS file uploaded under sample.
|
|
57
|
+
"""
|
|
58
|
+
payload = dumps(upload_input, UploadFCSInputJson)
|
|
59
|
+
response = self._user.plugin_post("flowcyto/fcs", payload=payload, is_payload_plain_text=True)
|
|
60
|
+
self._user.raise_for_status(response)
|
|
61
|
+
return int(response.json())
|
|
62
|
+
|
|
63
|
+
def compute_statistics(self, stat_compute_input: ComputeFlowStatisticsInputJson) -> list[int]:
|
|
64
|
+
"""
|
|
65
|
+
Requests to compute flow cytometry statistics.
|
|
66
|
+
The children are of type FCSStatistic.
|
|
67
|
+
If the FCS files have not been evaluated yet,
|
|
68
|
+
then the lazy evaluation will be performed immediately prior to computing statistics, which can take longer.
|
|
69
|
+
If any new statistics are computed as children of FCS, they will be returned in the result record id list.
|
|
70
|
+
Note: if input has multiple FCS files, the client should try to get parent FCS file from each record to figure out which one is for which FCS.
|
|
71
|
+
:param stat_compute_input:
|
|
72
|
+
:return:
|
|
73
|
+
"""
|
|
74
|
+
payload = dumps(stat_compute_input, ComputeFlowStatisticsInputJson)
|
|
75
|
+
response = self._user.plugin_post("flowcyto/statistics", payload=payload, is_payload_plain_text=True)
|
|
76
|
+
self._user.raise_for_status(response)
|
|
77
|
+
return list(response.json())
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import base64
|
|
2
|
+
from enum import Enum
|
|
3
|
+
|
|
4
|
+
from databind.core.dataclasses import dataclass
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class ChannelStatisticType(Enum):
|
|
8
|
+
"""
|
|
9
|
+
All supported channel statistics type.
|
|
10
|
+
"""
|
|
11
|
+
MEAN = "(Mean) MFI"
|
|
12
|
+
MEDIAN = "(Median) MFI"
|
|
13
|
+
STD_EV = "Std. Dev."
|
|
14
|
+
COEFFICIENT_OF_VARIATION = "CV"
|
|
15
|
+
|
|
16
|
+
display_name: str
|
|
17
|
+
|
|
18
|
+
def __init__(self, display_name: str):
|
|
19
|
+
self.display_name = display_name
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
@dataclass
|
|
23
|
+
class ChannelStatisticsParameterJSON:
|
|
24
|
+
channelNameList: list[str]
|
|
25
|
+
statisticsType: ChannelStatisticType
|
|
26
|
+
|
|
27
|
+
def __init__(self, channel_name_list: list[str], stat_type: ChannelStatisticType):
|
|
28
|
+
self.channelNameList = channel_name_list
|
|
29
|
+
self.statisticsType = stat_type
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
@dataclass
|
|
33
|
+
class ComputeFlowStatisticsInputJson:
|
|
34
|
+
fcsFileRecordIdList: list[int]
|
|
35
|
+
statisticsParameterList: list[ChannelStatisticsParameterJSON]
|
|
36
|
+
|
|
37
|
+
def __init__(self, fcs_file_record_id_list: list[int], statistics_parameter_list: list[ChannelStatisticsParameterJSON]):
|
|
38
|
+
self.fcsFileRecordIdList = fcs_file_record_id_list
|
|
39
|
+
self.statisticsParameterList = statistics_parameter_list
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@dataclass
|
|
43
|
+
class FlowJoWorkspaceInputJson:
|
|
44
|
+
filePath: str
|
|
45
|
+
base64Data: str
|
|
46
|
+
|
|
47
|
+
def __init__(self, filePath: str, file_data: bytes):
|
|
48
|
+
self.filePath = filePath
|
|
49
|
+
self.base64Data = base64.b64encode(file_data).decode('utf-8')
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
@dataclass
|
|
53
|
+
class UploadFCSInputJson:
|
|
54
|
+
"""
|
|
55
|
+
Request to upload new FCS file
|
|
56
|
+
Attributes:
|
|
57
|
+
filePath: The file name of the FCS file to be uploaded. For FlowJo workspace, this is important to match the file in group (via file names).
|
|
58
|
+
attachmentDataType: the attachment data type that contains already-uploaded FCS data.
|
|
59
|
+
attachmentRecordId: the attachment record ID that contains already-uploaded FCS data.
|
|
60
|
+
associatedRecordDataType: the "parent" association for the FCS. Can either be a workspace or a sample record.
|
|
61
|
+
associatedRecordId: the "parent" association for the FCS. Can either be a workspace or a sample record.
|
|
62
|
+
"""
|
|
63
|
+
filePath: str
|
|
64
|
+
attachmentDataType: str
|
|
65
|
+
attachmentRecordId: int
|
|
66
|
+
associatedRecordDataType: str
|
|
67
|
+
associatedRecordId: int
|
|
68
|
+
|
|
69
|
+
def __init__(self, associated_record_data_type: str, associated_record_id: int,
|
|
70
|
+
file_path: str, attachment_data_type: str, attachment_record_id: int):
|
|
71
|
+
self.filePath = file_path
|
|
72
|
+
self.attachmentDataType = attachment_data_type
|
|
73
|
+
self.attachmentRecordId = attachment_record_id
|
|
74
|
+
self.associatedRecordDataType = associated_record_data_type
|
|
75
|
+
self.associatedRecordId = associated_record_id
|
|
@@ -38,6 +38,9 @@ class PyMolecule:
|
|
|
38
38
|
normError: str | None
|
|
39
39
|
desaltError: str | None
|
|
40
40
|
desaltedList: list[str] | None
|
|
41
|
+
registrationHash: str | None
|
|
42
|
+
hasOrGroup: bool
|
|
43
|
+
CXSMILESHash: str | None
|
|
41
44
|
|
|
42
45
|
|
|
43
46
|
@dataclass
|
|
@@ -100,9 +103,9 @@ class PyMoleculeLoaderResult:
|
|
|
100
103
|
compoundList: the compounds successfully loaded.
|
|
101
104
|
errorList: an error record is added here for each one we failed to load in Sapio.
|
|
102
105
|
"""
|
|
103
|
-
compoundByStr: dict[str, PyCompound]
|
|
104
|
-
compoundList: list[PyCompound]
|
|
105
|
-
errorList: list[ChemLoadingError]
|
|
106
|
+
compoundByStr: dict[str, PyCompound] | None
|
|
107
|
+
compoundList: list[PyCompound] | None
|
|
108
|
+
errorList: list[ChemLoadingError] | None
|
|
106
109
|
|
|
107
110
|
|
|
108
111
|
@dataclass
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: sapiopycommons
|
|
3
|
-
Version: 2024.
|
|
3
|
+
Version: 2024.11.7a354
|
|
4
4
|
Summary: Official Sapio Python API Utilities Package
|
|
5
5
|
Project-URL: Homepage, https://github.com/sapiosciences
|
|
6
6
|
Author-email: Jonathan Steck <jsteck@sapiosciences.com>, Yechen Qiao <yqiao@sapiosciences.com>
|
|
@@ -2,8 +2,8 @@ sapiopycommons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
sapiopycommons/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
sapiopycommons/callbacks/callback_util.py,sha256=nb6cXK8yFq96gtG0Z2NiK-qdNaRh88bavUH-ZoBjh18,67953
|
|
4
4
|
sapiopycommons/callbacks/field_builder.py,sha256=8n0jcbMgtMUHjie4C1-IkpAuHz4zBxbZtWpr4y0kABU,36868
|
|
5
|
-
sapiopycommons/chem/IndigoMolecules.py,sha256=
|
|
6
|
-
sapiopycommons/chem/Molecules.py,sha256=
|
|
5
|
+
sapiopycommons/chem/IndigoMolecules.py,sha256=3f-aig3AJkKJhRmhlQ0cI-5G8oeaQk_3foJTDZCvoko,2040
|
|
6
|
+
sapiopycommons/chem/Molecules.py,sha256=SQKnqdZnhYj_6HGtEZmE_1DormonRR1-nBAQ__z4gms,11485
|
|
7
7
|
sapiopycommons/chem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
sapiopycommons/customreport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
sapiopycommons/customreport/column_builder.py,sha256=0RO53e9rKPZ07C--KcepN6_tpRw_FxF3O9vdG0ilKG8,3014
|
|
@@ -25,6 +25,8 @@ sapiopycommons/files/file_data_handler.py,sha256=SCsjODMJIPEBSsahzXUeOM7CfSCmYwP
|
|
|
25
25
|
sapiopycommons/files/file_util.py,sha256=wbL3rxcFc-t2mXaPWWkoFWYGopvTcQts9Wf-L5GkhT8,29498
|
|
26
26
|
sapiopycommons/files/file_validator.py,sha256=4OvY98ueJWPJdpndwnKv2nqVvLP9S2W7Il_dM0Y0ojo,28709
|
|
27
27
|
sapiopycommons/files/file_writer.py,sha256=96Xl8TTT46Krxe_J8rmmlEMtel4nzZB961f5Yqtl1-I,17616
|
|
28
|
+
sapiopycommons/flowcyto/flow_cyto.py,sha256=YlkKJR_zEHYRuNW0bnTqlTyZeXs0lOaeSCfG2fnfD7E,3227
|
|
29
|
+
sapiopycommons/flowcyto/flowcyto_data.py,sha256=mYKFuLbtpJ-EsQxLGtu4tNHVlygTxKixgJxJqD68F58,2596
|
|
28
30
|
sapiopycommons/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
31
|
sapiopycommons/general/accession_service.py,sha256=HYgyOsH_UaoRnoury-c2yTW8SeG4OtjLemdpCzoV4R8,13484
|
|
30
32
|
sapiopycommons/general/aliases.py,sha256=tdDBNWSGx6s39eHJ3n2kscc4xxW3ZYaUfDftct6FmJE,12910
|
|
@@ -36,7 +38,7 @@ sapiopycommons/general/sapio_links.py,sha256=o9Z-8y2rz6AI0Cy6tq58ElPge9RBnisGc9N
|
|
|
36
38
|
sapiopycommons/general/storage_util.py,sha256=ovmK_jN7v09BoX07XxwShpBUC5WYQOM7dbKV_VeLXJU,8892
|
|
37
39
|
sapiopycommons/general/time_util.py,sha256=jUAWmQLNcLHZa4UYB4ht_I3d6uoi63VxYdo7T80Ydw0,7458
|
|
38
40
|
sapiopycommons/multimodal/multimodal.py,sha256=A1QsC8QTPmgZyPr7KtMbPRedn2Ie4WIErodUvQ9otgU,6724
|
|
39
|
-
sapiopycommons/multimodal/multimodal_data.py,sha256=
|
|
41
|
+
sapiopycommons/multimodal/multimodal_data.py,sha256=t-0uY4cVgm88uXaSOL4ZeB6zmdHufowXuLFlMk61wFg,15087
|
|
40
42
|
sapiopycommons/processtracking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
43
|
sapiopycommons/processtracking/custom_workflow_handler.py,sha256=0Si5RQ1YFmqmcZWV8jNDKTffix2iZnQJ6b97fn31pbc,23859
|
|
42
44
|
sapiopycommons/processtracking/endpoints.py,sha256=w5bziI2xC7450M95rCF8JpRwkoni1kEDibyAux9B12Q,10848
|
|
@@ -51,7 +53,7 @@ sapiopycommons/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
51
53
|
sapiopycommons/webhook/webhook_context.py,sha256=D793uLsb1691SalaPnBUk3rOSxn_hYLhdvkaIxjNXss,1909
|
|
52
54
|
sapiopycommons/webhook/webhook_handlers.py,sha256=JTquLBln49L1pJ9txJ4oc4Hpzy9kYtMKs0m4SLaFx78,18363
|
|
53
55
|
sapiopycommons/webhook/webservice_handlers.py,sha256=1J56zFI0pWl5MHoNTznvcZumITXgAHJMluj8-2BqYEw,3315
|
|
54
|
-
sapiopycommons-2024.
|
|
55
|
-
sapiopycommons-2024.
|
|
56
|
-
sapiopycommons-2024.
|
|
57
|
-
sapiopycommons-2024.
|
|
56
|
+
sapiopycommons-2024.11.7a354.dist-info/METADATA,sha256=n4E46KTnsKNHfAy2cPXalibDb5jALEdZVfaveMktPfc,3176
|
|
57
|
+
sapiopycommons-2024.11.7a354.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
58
|
+
sapiopycommons-2024.11.7a354.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
|
|
59
|
+
sapiopycommons-2024.11.7a354.dist-info/RECORD,,
|
|
File without changes
|
{sapiopycommons-2024.10.31a349.dist-info → sapiopycommons-2024.11.7a354.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|