masster 0.5.15__py3-none-any.whl → 0.5.17__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 +1 -1
- masster/_version.py +1 -1
- masster/study/plot.py +3 -0
- masster/wizard/__init__.py +2 -2
- masster/wizard/wizard.py +492 -825
- {masster-0.5.15.dist-info → masster-0.5.17.dist-info}/METADATA +1 -3
- {masster-0.5.15.dist-info → masster-0.5.17.dist-info}/RECORD +10 -10
- {masster-0.5.15.dist-info → masster-0.5.17.dist-info}/WHEEL +0 -0
- {masster-0.5.15.dist-info → masster-0.5.17.dist-info}/entry_points.txt +0 -0
- {masster-0.5.15.dist-info → masster-0.5.17.dist-info}/licenses/LICENSE +0 -0
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
|
|
25
|
+
from masster.wizard import Wizard
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
__all__ = [
|
masster/_version.py
CHANGED
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
|
|
masster/wizard/__init__.py
CHANGED
|
@@ -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,
|
|
15
|
+
from .wizard import Wizard, wizard_def, create_scripts
|
|
16
16
|
|
|
17
|
-
__all__ = ["Wizard", "wizard_def", "
|
|
17
|
+
__all__ = ["Wizard", "wizard_def", "create_scripts"]
|