-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds Sparse PCA for rapids-singlecell (#36)
* adds ruff & Sparse PCA * ruff updates * updates PCA_sparse * adds test for sparse PCA * fixes plotting api * fixes plotting * version bump
- Loading branch information
Showing
42 changed files
with
582 additions
and
293 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
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
from . import cunnData | ||
from . import pp | ||
from . import dcg | ||
from . import tl | ||
from . import pl | ||
from . import gr | ||
from . import cunnData, dcg, gr, pl, pp, tl | ||
|
||
__version__ = "0.7.2" | ||
__version__ = "0.7.5" |
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
from ._hvg import highly_variable_genes | ||
from ._normalize import log1p, normalize_pearson_residuals, normalize_total | ||
from ._pca import pca | ||
from ._regress_out import regress_out | ||
from ._scale import scale | ||
from ._pca import pca | ||
from ._hvg import highly_variable_genes | ||
from ._normalize import normalize_pearson_residuals, log1p, normalize_total | ||
from ._simple import filter_cells, filter_genes, filter_highly_variable | ||
from ._simple import calculate_qc_metrics, flag_gene_family | ||
from ._simple import ( | ||
calculate_qc_metrics, | ||
filter_cells, | ||
filter_genes, | ||
filter_highly_variable, | ||
flag_gene_family, | ||
) |
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.