-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* removed plotting * cunnData deprecated * added anndata and 64 bit support * switch from scanpy_gpu to tools * start to updating docs * update test to work with anndata * swtiched harmony to pp * switched harmony to pp * updated docs * fix docs * added utils * updated documentation * updated docs * move to anndata * updated doc strings * use next anndata * adata version * updated docs * try to fix utils docs * update for dense hvg * added dense normalization test * update and test utils * update test * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * update api docs * updated docs * test docs * fix docs * added release-notes * updated 0.8.1 * fix for realease-notedocs * fixed links * try to fix release-notes * bumped scanpydoc * test css * make c array safe * enables cunndata to anndata_GPU * update notebooks * updated docs * maybe fix docs * update utils docstring * reset docs * added extlinks * fixes AnnData * update AnnData * added AnnData * updated docs * fixes broken link * test releasenotes * updated conf.py * creates utils in docs * renamed Params Parameters * switched to boolean index * added batching * prepare for transformer API * enhance harmony reproducability * harmony 64 bit * work with dense matrices * added release node * updated ruff * update notebooks * remove cpx raw import * remove cugraph default import * fixed import * make doc-strings pretty * added leiden disclaimer to notebooks * added test for harmonypy * added import test * added profimp for testing * updated anndata-dep --------- Co-authored-by: Lukas Heumos <[email protected]> Co-authored-by: Philipp A <[email protected]>
- Loading branch information
1 parent
b65e766
commit ba36e67
Showing
77 changed files
with
3,916 additions
and
3,663 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ __pycache__/ | |
# Sphinx documentation | ||
/docs/_build/ | ||
/docs/generated/ | ||
/docs/api/generated/ | ||
|
||
# Venvs | ||
*venv/ |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* for the sphinx design cards */ | ||
body { | ||
--sd-color-shadow: dimgrey; | ||
} | ||
|
||
dl.citation>dt { | ||
float: left; | ||
margin-right: 15px; | ||
font-weight: bold; | ||
} | ||
|
||
/* for custom small role */ | ||
.small { | ||
font-size: 40% !important | ||
} | ||
|
||
.smaller, | ||
.pr { | ||
font-size: 70% !important | ||
} |
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
# cunnData | ||
|
||
{class}`~rapids_singlecell.cunnData.cunnData` is deprecated and will be removed in 2024. Please start switching to {class}`~anndata.AnnData` | ||
|
||
```{eval-rst} | ||
.. module:: rapids_singlecell.cunnData | ||
.. currentmodule:: rapids_singlecell | ||
.. autosummary:: | ||
:toctree: generated | ||
cunnData.cunnData | ||
``` |
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,14 @@ | ||
# decoupler-GPU: `dcg` | ||
|
||
{mod}`decoupler` contains different statistical methods to extract biological activities. {mod}`rapids_singlecell.dcg` acclerates some of these methods. | ||
|
||
```{eval-rst} | ||
.. module:: rapids_singlecell.dcg | ||
.. currentmodule:: rapids_singlecell | ||
.. autosummary:: | ||
:toctree: generated | ||
dcg.run_mlm | ||
dcg.run_wsum | ||
``` |
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,18 @@ | ||
# API | ||
|
||
Import rapids-singlecell as: | ||
|
||
``` | ||
import rapids_singlecell as rsc | ||
``` | ||
|
||
|
||
```{toctree} | ||
:maxdepth: 2 | ||
scanpy_gpu | ||
squidpy_gpu | ||
decoupler_gpu | ||
utils | ||
cunndata | ||
``` |
Oops, something went wrong.