EasyFlowQ 1.4.8__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.
Files changed (51) hide show
  1. EasyFlowQ/FlowCal/README.md +2 -0
  2. EasyFlowQ/FlowCal/ReadmeLicense/README.rst +24 -0
  3. EasyFlowQ/FlowCal/ReadmeLicense/license.txt +21 -0
  4. EasyFlowQ/FlowCal/__init__.py +17 -0
  5. EasyFlowQ/FlowCal/excel_ui.py +1593 -0
  6. EasyFlowQ/FlowCal/gate.py +584 -0
  7. EasyFlowQ/FlowCal/io.py +2248 -0
  8. EasyFlowQ/FlowCal/mef.py +1208 -0
  9. EasyFlowQ/FlowCal/plot.py +3863 -0
  10. EasyFlowQ/FlowCal/stats.py +316 -0
  11. EasyFlowQ/FlowCal/transform.py +338 -0
  12. EasyFlowQ/__init__.py +0 -0
  13. EasyFlowQ/backend/__init__.py +0 -0
  14. EasyFlowQ/backend/comp.py +169 -0
  15. EasyFlowQ/backend/efio.py +329 -0
  16. EasyFlowQ/backend/gates.py +650 -0
  17. EasyFlowQ/backend/plotWidgets.py +449 -0
  18. EasyFlowQ/backend/qtModels.py +315 -0
  19. EasyFlowQ/backend/utils.py +48 -0
  20. EasyFlowQ/localSettings.default.json +6 -0
  21. EasyFlowQ/main_entry.py +64 -0
  22. EasyFlowQ/uiDesigns/AboutWindow.ui +50 -0
  23. EasyFlowQ/uiDesigns/CompWindow.ui +115 -0
  24. EasyFlowQ/uiDesigns/CompWizard.ui +374 -0
  25. EasyFlowQ/uiDesigns/CompWizard_SmplAssignBox.ui +40 -0
  26. EasyFlowQ/uiDesigns/MainWindow.ui +916 -0
  27. EasyFlowQ/uiDesigns/MainWindow_FigOptions.py +186 -0
  28. EasyFlowQ/uiDesigns/MainWindow_FigOptions.ui +675 -0
  29. EasyFlowQ/uiDesigns/MainWindow_SmplSect.py +167 -0
  30. EasyFlowQ/uiDesigns/MainWindow_SmplSect.ui +162 -0
  31. EasyFlowQ/uiDesigns/RenameWindow_CF.ui +97 -0
  32. EasyFlowQ/uiDesigns/RenameWindow_Map.ui +83 -0
  33. EasyFlowQ/uiDesigns/SettingsWindow.ui +209 -0
  34. EasyFlowQ/uiDesigns/StatWindow.ui +116 -0
  35. EasyFlowQ/uiDesigns/__init__.py +0 -0
  36. EasyFlowQ/uiDesigns/resource/PelatteIcon2.tif +0 -0
  37. EasyFlowQ/uiDesigns/resource/qt_resource.qrc +5 -0
  38. EasyFlowQ/uiDesigns/resource/qt_resource_rc.py +146 -0
  39. EasyFlowQ/window_About.py +14 -0
  40. EasyFlowQ/window_Comp.py +176 -0
  41. EasyFlowQ/window_Main.py +877 -0
  42. EasyFlowQ/window_RenameCF.py +207 -0
  43. EasyFlowQ/window_RenameMap.py +88 -0
  44. EasyFlowQ/window_Settings.py +112 -0
  45. EasyFlowQ/window_Stats.py +210 -0
  46. EasyFlowQ/wizard_Comp.py +427 -0
  47. easyflowq-1.4.8.dist-info/METADATA +52 -0
  48. easyflowq-1.4.8.dist-info/RECORD +51 -0
  49. easyflowq-1.4.8.dist-info/WHEEL +4 -0
  50. easyflowq-1.4.8.dist-info/entry_points.txt +2 -0
  51. easyflowq-1.4.8.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,2 @@
1
+ This is a adopted version of the FLowCal library. The orignal code is hosted on https://github.com/ym3141/FlowCal, a fork from https://github.com/taborlab/FlowCal.
2
+ Please refer to the "ReadmeLicense" folder for the original readme and license files.
@@ -0,0 +1,24 @@
1
+ ===========
2
+ ``FlowCal``
3
+ ===========
4
+ ``FlowCal`` is a library for processing and analyzing flow cytometry data in Python.
5
+ It features:
6
+
7
+ * Extraction of Flow Cytometry Standard (FCS) files into numpy array-like structures
8
+ * Traditional and non-standard gating, including automatic density-based two-dimensional gating.
9
+ * Traditional transformation functions, such as exponentiation.
10
+ * Analysis of calibration beads data, standard curve generation, and transformation to absolute units (Molecules of Equivalent Fluorophore, MEF).
11
+ * Plotting, including generation of histograms, density plots and scatter plots.
12
+ * A user-fiendly Excel UI to gate, transform, plot, and generate statistics from a list of flow cytometry samples in a simple fashion.
13
+
14
+ Documentation
15
+ =============
16
+ The official documentation can be found in https://flowcal.readthedocs.io. Here you will find installation instructions, tutorials, and more.
17
+
18
+ Report Bugs
19
+ ===========
20
+ The official way to report a bug is through the issue tracker on github (https://github.com/taborlab/FlowCal/issues). Try to be as explicit as possible when describing your issue. Ideally, a set of instructions to reproduce the error should be provided, together with the version of all the relevant packages you are using.
21
+
22
+ Request Features
23
+ ================
24
+ Features can also be requested through the issue tracker on github. Try to be as descriptive as possible about the desired feature.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 John Sexton, Brian Landry, Sebastian Castillo-Hair
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,17 @@
1
+ """
2
+ `FlowCal`: Calibration and analysis of flow cytometry data.
3
+
4
+ """
5
+
6
+ # Versions should comply with PEP440. For a discussion on single-sourcing
7
+ # the version across setup.py and the project code, see
8
+ # https://packaging.python.org/en/latest/single_source_version.html
9
+ __version__ = '1.3.0'
10
+
11
+ from . import io
12
+ # from . import excel_ui
13
+ # from . import gate
14
+ from . import transform
15
+ # from . import mef
16
+ from . import plot
17
+ # from . import stats