You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I want to use scATAC-seq dataset to deconvolute 10x Visium dataset, is it feasible?
When I prepare anndata for the regression model, some warings appeared as follows:
cell2location.models.RegressionModel.setup_anndata(adata=adata_sc,
... batch_key='orig.ident', # 10X reaction / sample / batch
... labels_key='celltype' # cell type, covariate used for constructing signatures
... )
:119: FutureWarning: SparseDataset is deprecated and will be removed in late 2024. It has been replaced by the public classes CSRDataset and CSCDataset.
For instance checks, use isinstance(X, (anndata.experimental.CSRDataset, anndata.experimental.CSCDataset)) instead.
For creation, use anndata.experimental.sparse_dataset(X) instead.
An NVIDIA GPU may be present on this machine, but a CUDA-enabled jaxlib is not installed. Falling back to cpu.
What should I do?
The text was updated successfully, but these errors were encountered:
Hello, I want to use scATAC-seq dataset to deconvolute 10x Visium dataset, is it feasible?
When I prepare anndata for the regression model, some warings appeared as follows:
cell2location.models.RegressionModel.setup_anndata(adata=adata_sc,
... batch_key='orig.ident', # 10X reaction / sample / batch
... labels_key='celltype' # cell type, covariate used for constructing signatures
... )
:119: FutureWarning: SparseDataset is deprecated and will be removed in late 2024. It has been replaced by the public classes CSRDataset and CSCDataset.
For instance checks, use
isinstance(X, (anndata.experimental.CSRDataset, anndata.experimental.CSCDataset))
instead.For creation, use
anndata.experimental.sparse_dataset(X)
instead.An NVIDIA GPU may be present on this machine, but a CUDA-enabled jaxlib is not installed. Falling back to cpu.
What should I do?
The text was updated successfully, but these errors were encountered: