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

Download this file

15 lines (10 with data), 334 Bytes

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