dclab 0.62.9__cp38-cp38-win_amd64.whl → 0.62.10__cp38-cp38-win_amd64.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 dclab might be problematic. Click here for more details.

dclab/_version.py CHANGED
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.62.9'
16
- __version_tuple__ = version_tuple = (0, 62, 9)
15
+ __version__ = version = '0.62.10'
16
+ __version_tuple__ = version_tuple = (0, 62, 10)
Binary file
@@ -178,42 +178,51 @@ def basin_definition_copy(src_h5file, dst_h5file, features_iter):
178
178
  relevant for the internal basin.
179
179
  """
180
180
  dst_h5file.require_group("basins")
181
- for b_key in src_h5file["basins"]:
181
+ # Load the basin information
182
+ basin_dicts = RTDC_HDF5.basin_get_dicts_from_h5file(src_h5file)
183
+ for bn in basin_dicts:
184
+ b_key = bn["key"]
185
+
182
186
  if b_key in dst_h5file["basins"]:
183
- # This basin already exists.
187
+ # already stored therein
184
188
  continue
185
- # Load the basin information
186
- basin_dicts = RTDC_HDF5.basin_get_dicts_from_h5file(src_h5file)
187
- for bn in basin_dicts:
188
- if bn["type"] == "internal":
189
- # Make sure we define the internal features selected
190
- feat_used = [f for f in bn["features"] if f in features_iter]
191
- if len(feat_used) == 0:
192
- # We don't have any internal features, don't write anything
193
- continue
194
- elif feat_used != bn["features"]:
195
- bn["features"] = feat_used
196
- rewrite = True
197
- else:
198
- rewrite = False
189
+
190
+ # sanity check
191
+ if b_key not in src_h5file["basins"]:
192
+ raise ValueError(
193
+ f"Failed to parse basin information correctly. Source file "
194
+ f"{src_h5file} does not contain basin {b_key} which I got "
195
+ f"from `RTDC_HDF5.basin_get_dicts_from_h5file`.")
196
+
197
+ if bn["type"] == "internal":
198
+ # Make sure we define the internal features selected
199
+ feat_used = [f for f in bn["features"] if f in features_iter]
200
+ if len(feat_used) == 0:
201
+ # We don't have any internal features, don't write anything
202
+ continue
203
+ elif feat_used != bn["features"]:
204
+ bn["features"] = feat_used
205
+ rewrite = True
199
206
  else:
200
- # We do not have an internal basin, just copy everything
201
207
  rewrite = False
208
+ else:
209
+ # We do not have an internal basin, just copy everything
210
+ rewrite = False
202
211
 
203
- if rewrite:
204
- # Convert edited `bn` to JSON and write feature data
205
- b_lines = json.dumps(bn, indent=2).split("\n")
206
- key = hashobj(b_lines)
207
- if key not in dst_h5file["basins"]:
208
- with RTDCWriter(dst_h5file) as hw:
209
- hw.write_text(dst_h5file["basins"], key, b_lines)
210
- else:
211
- # copy only
212
- h5ds_copy(src_loc=src_h5file["basins"],
213
- src_name=b_key,
214
- dst_loc=dst_h5file["basins"],
215
- dst_name=b_key,
216
- recursive=False)
212
+ if rewrite:
213
+ # Convert edited `bn` to JSON and write feature data
214
+ b_lines = json.dumps(bn, indent=2).split("\n")
215
+ key = hashobj(b_lines)
216
+ if key not in dst_h5file["basins"]:
217
+ with RTDCWriter(dst_h5file) as hw:
218
+ hw.write_text(dst_h5file["basins"], key, b_lines)
219
+ else:
220
+ # copy only
221
+ h5ds_copy(src_loc=src_h5file["basins"],
222
+ src_name=b_key,
223
+ dst_loc=dst_h5file["basins"],
224
+ dst_name=b_key,
225
+ recursive=False)
217
226
 
218
227
 
219
228
  def h5ds_copy(src_loc, src_name, dst_loc, dst_name=None,
@@ -319,18 +319,21 @@ class Export(object):
319
319
 
320
320
  # write export log
321
321
  hw.store_log(time.strftime("dclab-export_%Y-%m-%d_%H.%M.%S"),
322
- json.dumps({
323
- "dclab version": version_tuple,
324
- "kwargs": {
325
- "features": features,
326
- "filtered": filtered,
327
- "logs": logs,
328
- "tables": tables,
329
- "basins": basins,
330
- "meta_prefix": meta_prefix,
331
- "skip_checks": skip_checks
332
- }
333
- }).split("\n"))
322
+ json.dumps(
323
+ {"dclab version": version_tuple,
324
+ "kwargs": {
325
+ "features": features,
326
+ "filtered": filtered,
327
+ "logs": logs,
328
+ "tables": tables,
329
+ "basins": basins,
330
+ "meta_prefix": meta_prefix,
331
+ "skip_checks": skip_checks
332
+ }
333
+ },
334
+ indent=2,
335
+ sort_keys=True,
336
+ ).split("\n"))
334
337
 
335
338
  if logs:
336
339
  # write logs
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dclab
3
- Version: 0.62.9
3
+ Version: 0.62.10
4
4
  Summary: Library for real-time deformability cytometry (RT-DC)
5
5
  Author: Benedikt Hartmann, Eoghan O'Connell, Maik Herbig, Maximilian Schlögel, Nadia Sbaa, Paul Müller, Philipp Rosendahl, Raghava Alajangi
6
6
  Maintainer-email: Paul Müller <dev@craban.de>
@@ -1,7 +1,7 @@
1
1
  dclab/__init__.py,sha256=7_y6YtYcoL_a5M6Q9PiwZPzHSxS66yCTgs_uuK5C1dg,835
2
- dclab/_version.py,sha256=NL_KF0HMvQA9ov7bA-jEvOCXhXF0zvRwnc5Mbv4n8RM,429
2
+ dclab/_version.py,sha256=24GJ4WG-lYF3ho697oXBQgdaa52ggyKu0hOZMiA4lV8,431
3
3
  dclab/cached.py,sha256=t01BYTf43VEsBYa0c-bMxgceF5vKoGV73b42UlLH6Lo,3014
4
- dclab/downsampling.cp38-win_amd64.pyd,sha256=XQU_KjcUsxy_JnqR-tw2R6V7jqBHC6aQ37mo-1Csj40,188416
4
+ dclab/downsampling.cp38-win_amd64.pyd,sha256=7Dn9G9T8NPYvqAwWIlJUEWotfaGv7HBftBhbCZ7XCZ8,188416
5
5
  dclab/downsampling.pyx,sha256=Ez6MbNbzCUzs2IXXKtAYsjtYqP22kI8hdA1IE-3mqvY,7488
6
6
  dclab/http_utils.py,sha256=nneq9Cx8dw8ChQx5oIg2pN0xGkvNWCMSY5VYmttqyXA,11232
7
7
  dclab/kde_contours.py,sha256=k0Y1UsJNtuYY8iqYmfQ-Nml-dFpJAcigd3vmt9U6zsY,6967
@@ -35,14 +35,14 @@ dclab/external/packaging/version.py,sha256=NgEgv7me4UCvFMyiNYD-nc_28b9UHUvBVh8RD
35
35
  dclab/external/skimage/LICENSE,sha256=Tdv08zzxYV32WRdYnco9P3nVyS5w17OTxIAFeRSd1wc,1480
36
36
  dclab/external/skimage/__init__.py,sha256=icOIlThkyn_hxmnM_i7OpbU7fhvqYWNpGdNGD38qthU,74
37
37
  dclab/external/skimage/_find_contours.py,sha256=auRMNfZg7B73DX7kPXxgD8gMXXB3Lk9QDWt4wlQnUWg,9556
38
- dclab/external/skimage/_find_contours_cy.cp38-win_amd64.pyd,sha256=w1ki1KOaPiGNx2YdWm2O5fSRGj9jUFaIV1CATKpErDU,143360
38
+ dclab/external/skimage/_find_contours_cy.cp38-win_amd64.pyd,sha256=31sf9bXw8y_RzG-yHLE9k8vFt326u92soA4stVsDnak,143360
39
39
  dclab/external/skimage/_find_contours_cy.pyx,sha256=c-EobLhKjZNCpuqWxmvrcH35uAY_Bu-_hZiUHbXODms,7349
40
- dclab/external/skimage/_pnpoly.cp38-win_amd64.pyd,sha256=wp6bA4-bCIzfjzvBP1AvT9a5JbOIpAgOg7QJySzPke4,159232
40
+ dclab/external/skimage/_pnpoly.cp38-win_amd64.pyd,sha256=aHSm5u_aPbp3fhJBZVYYk3m3crF0fLi7-deHnuzt1SE,159232
41
41
  dclab/external/skimage/_pnpoly.pyx,sha256=eHV3DlIGcBhAQ12-Y58EYq8xcq0Sibyc4xTxzX9NJsk,2603
42
42
  dclab/external/skimage/measure.py,sha256=rzyI0HCr9O9GJNieVW8pcqDjTGRAdSehDUawD8QkIAE,254
43
43
  dclab/external/skimage/pnpoly.py,sha256=zB4rSxjHJyY1OsGZ7QfFQqxIEDLGK8CWPehwutoFqm4,1400
44
44
  dclab/external/skimage/_shared/__init__.py,sha256=q29esTsNh0HfQxcd2EuwdYNbEBJwo_qY4dfv7RihzoA,38
45
- dclab/external/skimage/_shared/geometry.cp38-win_amd64.pyd,sha256=yH5tAYkqm75XVjR9I8Wrsv_KUevp4eYHE5885yyb_js,21504
45
+ dclab/external/skimage/_shared/geometry.cp38-win_amd64.pyd,sha256=DA120W-ghZdBcIMPyKanblVz6Eyy5kEOW7AyiG2OouY,21504
46
46
  dclab/external/skimage/_shared/geometry.pxd,sha256=3gJ7fbXXsxJunSN4biE0dzEbZpX9ZqzR4cUDDN0JnAU,352
47
47
  dclab/external/skimage/_shared/geometry.pyx,sha256=b6hADE8chse63haO1Kdt13_oQ54J9tkBf7dVA22-s-M,1722
48
48
  dclab/external/statsmodels/LICENSE,sha256=8D7nwukc6YgsZCdN9mG0psM3I9j-z8fuUgFyVhnMXpU,1672
@@ -82,9 +82,9 @@ dclab/lme4/wrapr.py,sha256=tZYvUy5LUM7sM3d8NiOIlxbrtu89LAihG4hqI6MSv2Q,15403
82
82
  dclab/rtdc_dataset/__init__.py,sha256=BuWKEUm7QUe-Kj1wMR0AXON_XN2mzXlbOgouHdnvAw4,501
83
83
  dclab/rtdc_dataset/check.py,sha256=l2QoIL3gno_Z2-e8RvYHAurHZP_oLGtZk8l6jUDiuTA,35908
84
84
  dclab/rtdc_dataset/config.py,sha256=HVJiqKlqd-SpYqnNTKSr1yUsq2Bkfq5s5zluT-8PUc0,17965
85
- dclab/rtdc_dataset/copier.py,sha256=f8ySDHnuSWfZYI_kPCCrzickTOo6NqovBGvzMTCbK4M,14339
85
+ dclab/rtdc_dataset/copier.py,sha256=imD0ijAz9BY0nksF2zUBeoGmeo_dUTUnBgY9TqRaD4g,14528
86
86
  dclab/rtdc_dataset/core.py,sha256=7pQOcFGEO2AnI7r8rJLjXkAi8mXkY4GCQ41eXfBHMx0,38999
87
- dclab/rtdc_dataset/export.py,sha256=iqWzj9BjPVhs-d3898DLM9y5rLxTSIaN0S3po42IPdU,30219
87
+ dclab/rtdc_dataset/export.py,sha256=gdcg8FSacFBdIfCPbquEOV7J96FlHAvWu9PpK2KTdkc,30351
88
88
  dclab/rtdc_dataset/feat_basin.py,sha256=nDMMkjBmVrH26_lhSJ4pmgUfcwdV1wDON-Hu-864is8,21622
89
89
  dclab/rtdc_dataset/feat_temp.py,sha256=5QiF8Nc8MVoTtinYlvfoSuoopND-uvWVWKjMggBTHLw,3796
90
90
  dclab/rtdc_dataset/filter.py,sha256=IRaEUt0tWtZGLKYvtqzfYO2kN5yhqx9eLoHd3VOLCTE,10286
@@ -129,9 +129,9 @@ dclab/rtdc_dataset/fmt_tdms/event_mask.py,sha256=cW-Tw2PIe6X1Hc4UZJ22-mI_qFaIMWA
129
129
  dclab/rtdc_dataset/fmt_tdms/event_trace.py,sha256=ktWnXfMir1v5Wfeo7tOd0txSOe1bgsXotf9Ul5T5-B4,5361
130
130
  dclab/rtdc_dataset/fmt_tdms/exc.py,sha256=FfxUY4LGIMPGJTYmGITmEm7X5iu8GBsj7OfZR8Zb-IE,850
131
131
  dclab/rtdc_dataset/fmt_tdms/naming.py,sha256=SFeWiwIN7sg0qNe0Aya2bZshN1Zbw4YcOKunZ6kfIGM,5524
132
- dclab-0.62.9.dist-info/LICENSE,sha256=ayjnuJcdf_kpkDyD61tUcVqVAQaNSYXJ73m5HVB4G8s,18474
133
- dclab-0.62.9.dist-info/METADATA,sha256=u-w5rYXwQgpAm20yw-JZO8O5NlxpWX8aJRS5U7Vc0_s,4900
134
- dclab-0.62.9.dist-info/WHEEL,sha256=rTcqimtzpX3smAWAhGmiRSWAxTY4PqYPNE-p4kscHDQ,99
135
- dclab-0.62.9.dist-info/entry_points.txt,sha256=eOpjgznu-eW-9utUpLU-77O5098YyUEgGF3ksGMdtec,273
136
- dclab-0.62.9.dist-info/top_level.txt,sha256=irvwZMgs1edY1Zj60ZFk7Almb9Zhk4k6E6aC4YPFnnM,6
137
- dclab-0.62.9.dist-info/RECORD,,
132
+ dclab-0.62.10.dist-info/LICENSE,sha256=ayjnuJcdf_kpkDyD61tUcVqVAQaNSYXJ73m5HVB4G8s,18474
133
+ dclab-0.62.10.dist-info/METADATA,sha256=BK3yCJmIW35QfOANM9-gPElFn5cnwWw7Tqj_Mm3D70Q,4901
134
+ dclab-0.62.10.dist-info/WHEEL,sha256=rTcqimtzpX3smAWAhGmiRSWAxTY4PqYPNE-p4kscHDQ,99
135
+ dclab-0.62.10.dist-info/entry_points.txt,sha256=eOpjgznu-eW-9utUpLU-77O5098YyUEgGF3ksGMdtec,273
136
+ dclab-0.62.10.dist-info/top_level.txt,sha256=irvwZMgs1edY1Zj60ZFk7Almb9Zhk4k6E6aC4YPFnnM,6
137
+ dclab-0.62.10.dist-info/RECORD,,