[ea0fd6]: / tests / data / test_airway.py

Download this file

14 lines (10 with data), 324 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import unittest
from inmoose.data.airway import airway
class Test(unittest.TestCase):
def test_airway(self):
"""
check that the airway dataset is properly loaded
"""
adata = airway()
self.assertEqual(adata.shape, (8, 64102))
self.assertEqual(len(adata.obs.columns), 9)