-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improved inline and external documentation * Attempt to make kernel density clearer * Run precommit hooks * Add more testing, including plot testing * Some function refactoring
- Loading branch information
1 parent
46fcc82
commit 1025079
Showing
59 changed files
with
1,337 additions
and
500 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.4.0 | ||
current_version = 0.4.4 | ||
tag = True | ||
commit = True | ||
|
||
|
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
{ | ||
"template": "https://github.com/scverse/cookiecutter-scverse", | ||
"commit": "28f47a97470826ca5000df24fd272e0d32d1c6fa", | ||
"checkout": "v0.1.0", | ||
"context": { | ||
"cookiecutter": { | ||
"project_name": "monkeybread", | ||
"package_name": "monkeybread", | ||
"project_description": "Tool for analyzing cell closeness in spatial transcriptomic data", | ||
"author_full_name": "Immunitas Therapeutics", | ||
"author_email": "[email protected]", | ||
"github_user": "dillydally414", | ||
"project_repo": "https://github.com/immunitastx/monkeybread", | ||
"license": "MIT License", | ||
"_copy_without_render": [ | ||
".github/workflows/**.yaml", | ||
"docs/_templates/autosummary/**.rst" | ||
], | ||
"_template": "https://github.com/scverse/cookiecutter-scverse" | ||
} | ||
}, | ||
"directory": null | ||
"template": "https://github.com/scverse/cookiecutter-scverse", | ||
"commit": "28f47a97470826ca5000df24fd272e0d32d1c6fa", | ||
"checkout": "v0.1.0", | ||
"context": { | ||
"cookiecutter": { | ||
"project_name": "monkeybread", | ||
"package_name": "monkeybread", | ||
"project_description": "Tool for analyzing cell closeness in spatial transcriptomic data", | ||
"author_full_name": "Immunitas Therapeutics", | ||
"author_email": "[email protected]", | ||
"github_user": "dillydally414", | ||
"project_repo": "https://github.com/immunitastx/monkeybread", | ||
"license": "MIT License", | ||
"_copy_without_render": [ | ||
".github/workflows/**.yaml", | ||
"docs/_templates/autosummary/**.rst" | ||
], | ||
"_template": "https://github.com/scverse/cookiecutter-scverse" | ||
} | ||
}, | ||
"directory": null | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,3 +77,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# Test figures | ||
/tests/plot/figures/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# monkeybread | ||
|
||
[![Tests][badge-tests]][link-tests] | ||
[![Documentation][badge-docs]][link-docs] | ||
|
||
[badge-tests]: https://img.shields.io/github/workflow/status/immunitastx/monkeybread/Test/main | ||
[link-tests]: https://github.com/immunitastx/monkeybread/actions/workflows/test.yml | ||
[badge-docs]: https://img.shields.io/readthedocs/monkeybread | ||
|
||
Tool for analyzing cell closeness in spatial transcriptomic data. Developed at | ||
[Immunitas Therapeutics](https://www.immunitastx.com/). | ||
|
||
## Getting started | ||
|
||
Please refer to the [documentation][link-docs]. In particular, the | ||
|
||
- [API documentation][link-api]. | ||
|
||
## Installation | ||
|
||
You need to have Python 3.8 or newer installed on your system. If you don't have | ||
Python installed, we recommend installing [Mambaforge](https://github.com/conda-forge/miniforge#mambaforge). | ||
|
||
There are several alternative options to install monkeybread: | ||
|
||
<!-- | ||
1) Install the latest release of `monkeybread` from `PyPI <https://pypi.org/project/monkeybread/>`_: | ||
```bash | ||
pip install monkeybread | ||
``` | ||
--> | ||
|
||
1. Install the latest development version: | ||
|
||
```bash | ||
pip install git+https://github.com/immunitastx/monkeybread.git@main | ||
``` | ||
|
||
## Release notes | ||
|
||
See the [changelog][changelog]. | ||
|
||
## Contact | ||
|
||
For questions and help requests, you can reach out in the [scverse discourse][scverse-discourse]. | ||
If you found a bug, please use the [issue tracker][issue-tracker]. | ||
|
||
## Citation | ||
|
||
> t.b.a | ||
[scverse-discourse]: https://discourse.scverse.org/ | ||
[issue-tracker]: https://github.com/immunitastx/monkeybread/issues | ||
[changelog]: https://monkeybread.readthedocs.io/en/latest/changelog.html | ||
[link-docs]: https://monkeybread.readthedocs.io | ||
[link-api]: https://monkeybread.readthedocs.io/en/latest/api.html |
Oops, something went wrong.