-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added simulation framework tests. * Add initialization test. * Update `README` to better reflect current dev workflow. Also make some formatting improvements. * Added multigroup test for spatial affinity groups. * Remove deprecated arguments in `load_anndata`. Also reformat `io.py`. * Add linter configurations to `pyproject.toml`. * Fix import name for `test_util.py`. * Add configuration for pre-commit. * Update test data. * Fix analysis tests. Fix analysis functions to match new tests. Fix code style. * Add tests for and refactor `simulation_framework.py`. * Finish `MultiReplicateSyntheticDataset` tests. Refactor accordingly. Add test data/expected outputs. * Fixes to `_canvas.py` and `simulation_framework.py`. * Add documentation for simulations. Fix intiialization tests. * Fix up binning test. Also update dependencies to use compatible versions of newest `squidpy` and `anndata`. See `https://github.com/scverse/squidpy/pull/891`.
- Loading branch information
1 parent
9ed6df9
commit cf49313
Showing
137 changed files
with
73,767 additions
and
46,014 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
repos: | ||
- repo: https://github.com/adrienverge/yamllint.git | ||
rev: v1.35.1 | ||
hooks: | ||
- id: yamllint | ||
args: [-c=.yamllint.yml] | ||
|
||
- repo: https://github.com/pycqa/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
args: ["--profile", "black"] | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
|
||
- repo: https://github.com/asottile/add-trailing-comma | ||
rev: v3.1.0 | ||
hooks: | ||
- id: add-trailing-comma | ||
|
||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.16.0 | ||
hooks: | ||
- id: pyupgrade | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
args: ["--safe"] | ||
|
||
- repo: https://github.com/PyCQA/docformatter | ||
rev: v1.7.5 | ||
hooks: | ||
- id: docformatter | ||
name: Format docstring | ||
args: [--in-place, --wrap-summaries, "80", --wrap-descriptions, "80", --blank] | ||
|
||
- repo: https://github.com/executablebooks/mdformat | ||
rev: 0.7.17 | ||
hooks: | ||
- id: mdformat | ||
name: Format markdown | ||
additional_dependencies: | ||
- mdformat-gfm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.