Skip to content

Commit 046fc8a

Browse files
authored
Update test_count.py to fix some tests
1 parent 931f5ad commit 046fc8a

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

tests/test_count.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,7 @@ def test_filter_with_bustools_cellranger(self):
947947
'{}.genes.txt'.format(counts_prefix),
948948
t2g_path,
949949
cellranger_dir,
950+
gzip=False
950951
)
951952

952953
def test_stream_fastqs_local(self):
@@ -1642,7 +1643,7 @@ def test_count_cellranger(self):
16421643
'{}.mtx'.format(counts_prefix),
16431644
'{}.barcodes.txt'.format(counts_prefix),
16441645
'{}.genes.txt'.format(counts_prefix), self.t2g_path,
1645-
cellranger_dir
1646+
cellranger_dir, gzip=False
16461647
)
16471648

16481649
def test_count_filter(self):
@@ -1819,6 +1820,10 @@ def test_count_filter(self):
18191820
umi_gene=True,
18201821
em=False,
18211822
loom_names=['barcode', 'target_name'],
1823+
mm=False,
1824+
cellranger=False,
1825+
gzip=False,
1826+
count=True
18221827
)
18231828
convert_matrix.assert_not_called()
18241829

@@ -2263,6 +2268,10 @@ def test_count_kite_filter(self):
22632268
umi_gene=True,
22642269
em=False,
22652270
loom_names=['barcode', 'target_name'],
2271+
mm=False,
2272+
cellranger=False,
2273+
gzip=False,
2274+
count=True
22662275
)
22672276
convert_matrix.assert_not_called()
22682277

0 commit comments

Comments
 (0)