Skip to content

Commit

Permalink
add gene scoring test for zebrafish and c_elegans
Browse files Browse the repository at this point in the history
  • Loading branch information
mumichae committed Jan 10, 2025
1 parent 444bc6d commit 291b18d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions tests/preprocessing/test_gene_scoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ def test_human(adata_paul15):
)


def test_zebrafish(adata_paul15):
with pytest.raises(AssertionError):
scib.pp.score_cell_cycle(
adata_paul15,
organism="zebrafish",
)
# TODO
@pytest.mark.parametrize("adata_from_url", ["c_elegans", "zebrafish"], indirect=True)
def test_organism(adata_from_url):
scib.pp.score_cell_cycle(
adata_from_url,
organism=adata_from_url.uns["dataset_name"],
)

0 comments on commit 291b18d

Please sign in to comment.