masster 0.5.15__py3-none-any.whl → 0.5.16__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 masster might be problematic. Click here for more details.

masster/__init__.py CHANGED
@@ -22,7 +22,7 @@ from masster.lib import Lib
22
22
  from masster.sample.sample import Sample
23
23
  from masster.spectrum import Spectrum
24
24
  from masster.study.study import Study
25
- from masster.wizard import Wizard, wizard_def
25
+ from masster.wizard import Wizard
26
26
 
27
27
 
28
28
  __all__ = [
masster/_version.py CHANGED
@@ -1,7 +1,7 @@
1
1
  from __future__ import annotations
2
2
 
3
3
 
4
- __version__ = "0.5.15"
4
+ __version__ = "0.5.16"
5
5
 
6
6
 
7
7
  def get_version():
masster/study/plot.py CHANGED
@@ -449,6 +449,9 @@ def plot_alignment(
449
449
  rt_current = row_dict["rt"]
450
450
  mz = row_dict["mz"]
451
451
  inty = row_dict["inty"]
452
+ # Skip if inty is None
453
+ if inty is None:
454
+ continue
452
455
  alpha = inty / max_inty
453
456
  size = markersize + 2 if sample_idx == 0 else markersize
454
457
 
@@ -12,6 +12,6 @@ The analyze() function combines create_analysis() with immediate execution of th
12
12
  generated script for fully automated processing.
13
13
  """
14
14
 
15
- from .wizard import Wizard, wizard_def, create_analysis, analyze
15
+ from .wizard import Wizard, wizard_def, create_scripts
16
16
 
17
- __all__ = ["Wizard", "wizard_def", "create_analysis", "analyze"]
17
+ __all__ = ["Wizard", "wizard_def", "create_scripts"]