Skip to content

Commit

Permalink
Merge pull request #13 from Intron7/v0.4.2
Browse files Browse the repository at this point in the history
v0.4.2
  • Loading branch information
Intron7 authored Jan 31, 2023
2 parents db49d84 + 5bc5512 commit 6a76e28
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,6 @@ cython_debug/
.DS_Store
._.*
._*

#R
.Rhistory
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ The functions are analogous versions of functions that can be found within [scan
### Conda
The easiest way to install *rapids-singlecell* is to use one of the *yaml* file provided in the [conda](https://github.com/Intron7/rapids_singlecell/tree/main/conda) folder. These *yaml* files install everything needed to run the example notbooks and get you started.
```
conda create -f conda/rsc_rapids_22.12.yml
conda env create -f conda/rsc_rapids_22.12.yml
# or
mamba create -f conda/rsc_rapids_23.02a.yml
mamba env create -f conda/rsc_rapids_23.02a.yml
```
### PyPI
As of version 0.4.0 *rapids-singlecell* is now on PyPI.
Expand Down
4 changes: 2 additions & 2 deletions rapids_singlecell/cunnData/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def __init__(

else:
inter = cp.sparse.csr_matrix(matrix, dtype=cp.float32)
self.layers[key] = inter.copy()
del inter
self.layers[key] = inter.copy()
del inter
if adata.obsm:
for key, matrix in adata.obsm.items():
self.obsm[key] = matrix
Expand Down

0 comments on commit 6a76e28

Please sign in to comment.