FlowCyPy 0.5.13__tar.gz → 0.5.15__tar.gz
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.
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/_version.py +2 -2
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy.egg-info/PKG-INFO +1 -1
- {flowcypy-0.5.13 → flowcypy-0.5.15}/PKG-INFO +1 -1
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/extras/flow_cytometer_signal.py +1 -1
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/tutorials/workflow.py +1 -1
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.flake8 +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.github/dependabot.yml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.github/workflows/deploy_PyPi.yml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.github/workflows/deploy_anaconda.yml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.github/workflows/deploy_coverage.yml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.github/workflows/deploy_documentation.yml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/.gitignore +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/__init__.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/classifier.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/coupling_mechanism/__init__.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/coupling_mechanism/empirical.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/coupling_mechanism/mie.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/coupling_mechanism/rayleigh.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/coupling_mechanism/uniform.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/cytometer.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/detector.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/directories.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/__init__.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/base_class.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/delta.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/lognormal.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/normal.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/particle_size_distribution.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/uniform.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/distribution/weibull.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/event_correlator.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/flow_cell.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/helper.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/logger.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/noises.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/particle_count.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/peak_locator/__init__.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/peak_locator/base_class.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/peak_locator/basic.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/peak_locator/derivative.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/peak_locator/moving_average.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/physical_constant.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/population.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/populations_instances.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/scatterer_collection.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/source.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/units.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy/utils.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy.egg-info/SOURCES.txt +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy.egg-info/dependency_links.txt +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy.egg-info/requires.txt +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/FlowCyPy.egg-info/top_level.txt +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/LICENSE +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/README.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/Untitled.ipynb +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/doc/internship.pdf +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/concentration_comparison.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/create_images.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/data_analysis.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_beads_analysis.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_canto.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_classifier.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_shot_noise_check.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_study_on_ri.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_study_on_size.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/dev_temp.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/mat2csv.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/developments/scripts/profiler.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/Makefile +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/density_plots/1_populations.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/density_plots/2_populations.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/density_plots/3_populations.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/density_plots/README.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/density_plots/custom_populations.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/extras/README.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/extras/distributions.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/extras/full_workflow.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/extras/scatterer_distribution.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/noise_sources/README.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/noise_sources/dark_current.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/noise_sources/shot_noise.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/noise_sources/thermal.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/tutorials/README.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/examples/tutorials/limit_of_detection.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/distributions/Delta.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/distributions/LogNormal.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/distributions/Normal.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/distributions/RosinRammler.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/distributions/Uniform.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/distributions/Weibull.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/example_0.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/example_1.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/example_2.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/example_3.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/flow_cytometer.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/images/logo.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/make.bat +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/_static/default.css +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/_static/logo.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/_static/thumbnail.png +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/analysis.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/base.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/detector.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/distributions.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/flow_cell.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/flow_cytometer.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/peak_locator.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/scatterer.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code/source.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/code.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/conf.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/examples.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/index.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/core_components.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/getting_started.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/objectives/main.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/objectives/pre.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/objectives/stretch.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/prerequisites/index.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/prerequisites/mathematics.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/prerequisites/optics.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/prerequisites/programming.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/ressources.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal/tasks.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/internal.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/references.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/sg_execution_times.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/docs/source/theory.rst +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/meta.yaml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/notebook.ipynb +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/pyproject.toml +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/setup.cfg +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/__init__.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_coupling_mechanism.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_detector_noise.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_distribution.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_extra.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_flow_cytometer.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_noises.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_peak_algorithm.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_peak_analyzer.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_population.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_scatterer_distribution.py +0 -0
- {flowcypy-0.5.13 → flowcypy-0.5.15}/tests/test_source.py +0 -0
|
@@ -116,7 +116,7 @@ cytometer._log_statistics()
|
|
|
116
116
|
# Step 9: Visualize the generated signals
|
|
117
117
|
# ---------------------------------------
|
|
118
118
|
# Plot the simulated signals for both FSC and SSC detectors.
|
|
119
|
-
cytometer.plot()
|
|
119
|
+
cytometer.plot.signals()
|
|
120
120
|
|
|
121
121
|
# %%
|
|
122
122
|
#
|
|
@@ -36,7 +36,7 @@ from FlowCyPy import NoiseSetting
|
|
|
36
36
|
NoiseSetting.include_noises = True
|
|
37
37
|
NoiseSetting.include_shot_noise = False
|
|
38
38
|
NoiseSetting.include_thermal_noise = False
|
|
39
|
-
NoiseSetting.
|
|
39
|
+
NoiseSetting.include_dark_current_noise = False
|
|
40
40
|
|
|
41
41
|
np.random.seed(3) # Ensure reproducibility
|
|
42
42
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|