Skip to content

Commit 9faa85d

Browse files
committed
Package updated
1 parent 5eed30f commit 9faa85d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='AnnSQL',
8-
version='v0.9.0',
8+
version='v0.9.1',
99
author="Kenny Pavan",
1010
author_email="pavan@ohsu.edu",
1111
description="A Python SQL tool for converting Anndata objects to a relational DuckDb database. Methods are included for querying and basic single-cell preprocessing (experimental). ",

src/AnnSQL.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: AnnSQL
3-
Version: 0.9.0
3+
Version: 0.9.1
44
Summary: A Python SQL tool for converting Anndata objects to a relational DuckDb database. Methods are included for querying and basic single-cell preprocessing (experimental).
55
Home-page: https://github.com/kennypavan/AnnSQL
66
Author: Kenny Pavan
@@ -60,7 +60,7 @@ adata_sql.query("SELECT * FROM adata", return_type="parquet")
6060
For larger datasets, AnnSQL can create a local database (asql) from the AnnData object. This database is stored on-disk and queried. Storage requirements are similar to the original AnnData h5ad filesize; however, complex aggregative functions can now benefit from the DuckDb engine with full SQL support. Please see <a href="#">manuscript</a> for benchmarks.
6161
```python
6262
import scanpy as sc
63-
from MakeDb import MakeDb
63+
from AnnSQL.MakeDb import MakeDb
6464

6565
#read sample data
6666
adata = sc.datasets.pbmc68k_reduced()

0 commit comments

Comments
 (0)