[ea0fd6]: / inmoose / data / airway / __init__.py

Download this file

14 lines (10 with data), 401 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def airway():
"""
Retrieve the airway dataset as an :class:`AnnData` object
The airway dataset is an RNA-Seq experiment on four human airway smooth
muscle cell lines treated with dexamethasone [Himes2014]_.
"""
import importlib.resources
import anndata
data_dir = importlib.resources.files(__package__)
return anndata.read_h5ad(data_dir.joinpath("airway.h5ad"))