Skip to content

Commit

Permalink
adjusted anndata import in accordance to future warning
Browse files Browse the repository at this point in the history
  • Loading branch information
HAL9032 committed Nov 15, 2024
1 parent 0cface5 commit 5e5c383
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion episcanpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# read functions from AnnData
from anndata import AnnData
from anndata import read
from anndata import read_h5ad, read_csv, read_excel, read_hdf, read_loom, read_mtx, read_text, read_umi_tools
from anndata.io import read_h5ad, read_csv, read_excel, read_hdf, read_loom, read_mtx, read_text, read_umi_tools


# import multidata information
Expand Down
2 changes: 1 addition & 1 deletion episcanpy/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import scanpy as sc
from anndata import AnnData
from anndata import read as read_h5ad
from anndata import read_csv, read_excel, read_hdf, read_loom, read_mtx, read_text, read_umi_tools
from anndata.io import read_csv, read_excel, read_hdf, read_loom, read_mtx, read_text, read_umi_tools

from .. import __version__

Expand Down

0 comments on commit 5e5c383

Please sign in to comment.