spec-rt 0.1.1__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.
- spec_rt/__init__.py +22 -0
- spec_rt/spectra_decomposing.py +877 -0
- spec_rt/spectra_decomposing_io.py +280 -0
- spec_rt/spectra_decomposing_plotting.py +114 -0
- spec_rt/spectra_decomposing_utils.py +30 -0
- spec_rt-0.1.1.dist-info/LICENSE +21 -0
- spec_rt-0.1.1.dist-info/METADATA +46 -0
- spec_rt-0.1.1.dist-info/RECORD +10 -0
- spec_rt-0.1.1.dist-info/WHEEL +5 -0
- spec_rt-0.1.1.dist-info/top_level.txt +1 -0
spec_rt/__init__.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Public package interface for specRT."""
|
|
2
|
+
|
|
3
|
+
from gaussFitSpec import SpectrumFitResult, fit_spectrum, plot_fit, read_spectrum, save_components_csv
|
|
4
|
+
from .spectra_decomposing import SpectraDecomposing
|
|
5
|
+
from .spectra_decomposing_io import load_six_column_spectrum, validate_absorption_input
|
|
6
|
+
from .spectra_decomposing_plotting import create_legacy_axes
|
|
7
|
+
|
|
8
|
+
sd = SpectraDecomposing
|
|
9
|
+
|
|
10
|
+
__all__ = [
|
|
11
|
+
"SpectrumFitResult",
|
|
12
|
+
"SpectraDecomposing",
|
|
13
|
+
"fit_spectrum",
|
|
14
|
+
"plot_fit",
|
|
15
|
+
"read_spectrum",
|
|
16
|
+
"save_components_csv",
|
|
17
|
+
"sd",
|
|
18
|
+
"load_six_column_spectrum",
|
|
19
|
+
"validate_absorption_input",
|
|
20
|
+
"create_legacy_axes",
|
|
21
|
+
]
|
|
22
|
+
__version__ = "0.1.1"
|