pycorerelator 0.0.1__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.
Files changed (38) hide show
  1. pycorerelator-0.0.1/.gitignore +203 -0
  2. pycorerelator-0.0.1/LICENSE +664 -0
  3. pycorerelator-0.0.1/MANIFEST.in +40 -0
  4. pycorerelator-0.0.1/PKG-INFO +179 -0
  5. pycorerelator-0.0.1/README-pypi.md +139 -0
  6. pycorerelator-0.0.1/README.md +176 -0
  7. pycorerelator-0.0.1/pyCoreRelator/__init__.py +258 -0
  8. pycorerelator-0.0.1/pyCoreRelator/analysis/__init__.py +108 -0
  9. pycorerelator-0.0.1/pyCoreRelator/analysis/age_models.py +1013 -0
  10. pycorerelator-0.0.1/pyCoreRelator/analysis/diagnostics.py +212 -0
  11. pycorerelator-0.0.1/pyCoreRelator/analysis/dtw_core.py +1683 -0
  12. pycorerelator-0.0.1/pyCoreRelator/analysis/path_combining.py +226 -0
  13. pycorerelator-0.0.1/pyCoreRelator/analysis/path_finding.py +953 -0
  14. pycorerelator-0.0.1/pyCoreRelator/analysis/path_helpers.py +237 -0
  15. pycorerelator-0.0.1/pyCoreRelator/analysis/quality.py +955 -0
  16. pycorerelator-0.0.1/pyCoreRelator/analysis/segments.py +317 -0
  17. pycorerelator-0.0.1/pyCoreRelator/analysis/syn_strat.py +2008 -0
  18. pycorerelator-0.0.1/pyCoreRelator/analysis/syn_strat_plot.py +267 -0
  19. pycorerelator-0.0.1/pyCoreRelator/preprocessing/__init__.py +115 -0
  20. pycorerelator-0.0.1/pyCoreRelator/preprocessing/ct_plotting.py +370 -0
  21. pycorerelator-0.0.1/pyCoreRelator/preprocessing/ct_processing.py +1477 -0
  22. pycorerelator-0.0.1/pyCoreRelator/preprocessing/datum_picker.py +1405 -0
  23. pycorerelator-0.0.1/pyCoreRelator/preprocessing/gap_filling.py +1374 -0
  24. pycorerelator-0.0.1/pyCoreRelator/preprocessing/gap_filling_plots.py +899 -0
  25. pycorerelator-0.0.1/pyCoreRelator/preprocessing/rgb_plotting.py +218 -0
  26. pycorerelator-0.0.1/pyCoreRelator/preprocessing/rgb_processing.py +600 -0
  27. pycorerelator-0.0.1/pyCoreRelator/utils/__init__.py +71 -0
  28. pycorerelator-0.0.1/pyCoreRelator/utils/animation.py +693 -0
  29. pycorerelator-0.0.1/pyCoreRelator/utils/data_loader.py +1005 -0
  30. pycorerelator-0.0.1/pyCoreRelator/utils/helpers.py +53 -0
  31. pycorerelator-0.0.1/pyCoreRelator/utils/matrix_plots.py +669 -0
  32. pycorerelator-0.0.1/pyCoreRelator/utils/path_processing.py +145 -0
  33. pycorerelator-0.0.1/pyCoreRelator/utils/plotting.py +4976 -0
  34. pycorerelator-0.0.1/pycorerelator.egg-info/SOURCES.txt +35 -0
  35. pycorerelator-0.0.1/pyproject.toml +50 -0
  36. pycorerelator-0.0.1/requirements.txt +58 -0
  37. pycorerelator-0.0.1/setup.cfg +4 -0
  38. pycorerelator-0.0.1/setup.py +43 -0
@@ -0,0 +1,203 @@
1
+ # Include only pyCoreRelator folder
2
+ /*
3
+ !/pyCoreRelator/
4
+ !/.gitignore
5
+ !/pyCoreRelator_*.ipynb
6
+ !/example_data/
7
+ !/LICENSE
8
+ !/FUNCTION_DOCUMENTATION.md
9
+ !/requirements.txt
10
+ !/README.md
11
+ !/pyproject.toml
12
+ !/setup.py
13
+ !/requirements.txt
14
+ !/pyCoreRelator_logo.png
15
+ !/pyCoreRelator_logo_ani.gif
16
+
17
+ # Byte-compiled / optimized / DLL files
18
+ __pycache__/
19
+ *.py[cod]
20
+ *$py.class
21
+
22
+ # C extensions
23
+ *.so
24
+
25
+ # Distribution / packaging
26
+ .Python
27
+ build/
28
+ develop-eggs/
29
+ dist/
30
+ downloads/
31
+ eggs/
32
+ .eggs/
33
+ lib/
34
+ lib64/
35
+ parts/
36
+ sdist/
37
+ var/
38
+ wheels/
39
+ share/python-wheels/
40
+ *.egg-info/
41
+ .installed.cfg
42
+ *.egg
43
+ MANIFEST
44
+
45
+ # PyInstaller
46
+ # Usually these files are written by a python script from a template
47
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
48
+ *.manifest
49
+ *.spec
50
+
51
+ # Installer logs
52
+ pip-log.txt
53
+ pip-delete-this-directory.txt
54
+
55
+ # Unit test / coverage reports
56
+ htmlcov/
57
+ .tox/
58
+ .nox/
59
+ .coverage
60
+ .coverage.*
61
+ .cache
62
+ nosetests.xml
63
+ coverage.xml
64
+ *.cover
65
+ *.py,cover
66
+ .hypothesis/
67
+ .pytest_cache/
68
+ cover/
69
+
70
+ # Translations
71
+ *.mo
72
+ *.pot
73
+
74
+ # Django stuff:
75
+ *.log
76
+ local_settings.py
77
+ db.sqlite3
78
+ db.sqlite3-journal
79
+
80
+ # Flask stuff:
81
+ instance/
82
+ .webassets-cache
83
+
84
+ # Scrapy stuff:
85
+ .scrapy
86
+
87
+ # Sphinx documentation
88
+ docs/_build/
89
+
90
+ # PyBuilder
91
+ .pybuilder/
92
+ target/
93
+
94
+ # Jupyter Notebook
95
+ .ipynb_checkpoints
96
+
97
+ # IPython
98
+ profile_default/
99
+ ipython_config.py
100
+
101
+ # pyenv
102
+ # For a library or package, you might want to ignore these files since the code is
103
+ # intended to run in multiple environments; otherwise, check them in:
104
+ # .python-version
105
+
106
+ # pipenv
107
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
108
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
109
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
110
+ # install all needed dependencies.
111
+ #Pipfile.lock
112
+
113
+ # UV
114
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
115
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
116
+ # commonly ignored for libraries.
117
+ #uv.lock
118
+
119
+ # poetry
120
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
121
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
122
+ # commonly ignored for libraries.
123
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
124
+ #poetry.lock
125
+
126
+ # pdm
127
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
128
+ #pdm.lock
129
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
130
+ # in version control.
131
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
132
+ .pdm.toml
133
+ .pdm-python
134
+ .pdm-build/
135
+
136
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
137
+ __pypackages__/
138
+
139
+ # Celery stuff
140
+ celerybeat-schedule
141
+ celerybeat.pid
142
+
143
+ # SageMath parsed files
144
+ *.sage.py
145
+
146
+ # Environments
147
+ .env
148
+ .venv
149
+ env/
150
+ venv/
151
+ ENV/
152
+ env.bak/
153
+ venv.bak/
154
+
155
+ # Spyder project settings
156
+ .spyderproject
157
+ .spyproject
158
+
159
+ # Rope project settings
160
+ .ropeproject
161
+
162
+ # mkdocs documentation
163
+ /site
164
+
165
+ # mypy
166
+ .mypy_cache/
167
+ .dmypy.json
168
+ dmypy.json
169
+
170
+ # Pyre type checker
171
+ .pyre/
172
+
173
+ # pytype static type analyzer
174
+ .pytype/
175
+
176
+ # Cython debug symbols
177
+ cython_debug/
178
+
179
+ # PyCharm
180
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
181
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
182
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
183
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
184
+ #.idea/
185
+
186
+ # Abstra
187
+ .abstra/
188
+
189
+ # Visual Studio Code
190
+ # .vscode/
191
+
192
+ # Ruff stuff:
193
+ .ruff_cache/
194
+
195
+ # PyPI configuration file
196
+ .pypirc
197
+
198
+ # Cursor
199
+ .cursorignore
200
+ .cursorindexingignore
201
+
202
+ # macOS
203
+ .DS_Store