chromaquant 0.3.1__py3-none-any.whl → 0.5.0__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 (47) hide show
  1. chromaquant/__init__.py +9 -2
  2. chromaquant/data/__init__.py +14 -0
  3. chromaquant/data/breakdown.py +430 -0
  4. chromaquant/data/dataset.py +195 -0
  5. chromaquant/data/table.py +412 -0
  6. chromaquant/data/value.py +215 -0
  7. chromaquant/formula/__init__.py +13 -0
  8. chromaquant/formula/base_formulas.py +168 -0
  9. chromaquant/formula/formula.py +507 -0
  10. chromaquant/import_local_packages.py +55 -0
  11. chromaquant/logging_and_handling.py +76 -0
  12. chromaquant/match/__init__.py +13 -0
  13. chromaquant/match/match.py +184 -0
  14. chromaquant/match/match_config.py +296 -0
  15. chromaquant/match/match_tools.py +154 -0
  16. chromaquant/{Handle → results}/__init__.py +2 -2
  17. chromaquant/results/reporting_tools.py +190 -0
  18. chromaquant/results/results.py +250 -0
  19. chromaquant/utils/__init__.py +14 -0
  20. chromaquant/utils/categories.py +127 -0
  21. chromaquant/utils/chemical_formulas.py +104 -0
  22. chromaquant/utils/dataframe_processing.py +222 -0
  23. chromaquant/utils/file_tools.py +100 -0
  24. chromaquant/utils/formula_tools.py +119 -0
  25. chromaquant-0.5.0.dist-info/METADATA +61 -0
  26. chromaquant-0.5.0.dist-info/RECORD +29 -0
  27. {chromaquant-0.3.1.dist-info → chromaquant-0.5.0.dist-info}/WHEEL +1 -1
  28. {chromaquant-0.3.1.dist-info → chromaquant-0.5.0.dist-info}/licenses/LICENSE.txt +1 -1
  29. chromaquant-0.5.0.dist-info/licenses/LICENSES_bundled.txt +251 -0
  30. chromaquant/Handle/handleDirectories.py +0 -89
  31. chromaquant/Manual/HydroUI.py +0 -418
  32. chromaquant/Manual/QuantUPP.py +0 -373
  33. chromaquant/Manual/Quantification.py +0 -1305
  34. chromaquant/Manual/__init__.py +0 -10
  35. chromaquant/Manual/duplicateMatch.py +0 -211
  36. chromaquant/Manual/fpm_match.py +0 -798
  37. chromaquant/Manual/label-type.py +0 -179
  38. chromaquant/Match/AutoFpmMatch.py +0 -1133
  39. chromaquant/Match/__init__.py +0 -12
  40. chromaquant/Quant/AutoQuantification.py +0 -1329
  41. chromaquant/Quant/__init__.py +0 -12
  42. chromaquant/__main__.py +0 -493
  43. chromaquant/properties.json +0 -4
  44. chromaquant-0.3.1.dist-info/METADATA +0 -189
  45. chromaquant-0.3.1.dist-info/RECORD +0 -22
  46. chromaquant-0.3.1.dist-info/entry_points.txt +0 -2
  47. chromaquant-0.3.1.dist-info/licenses/LICENSES_bundled.txt +0 -1035
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env python3
2
- # -*- coding: utf-8 -*-
3
-
4
- """
5
- ChromaQuant.Match package initialization
6
-
7
- Julia Hancock
8
- Created 10-19-2024
9
-
10
- """
11
-
12
- from .AutoFpmMatch import main_AutoFpmMatch