Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed dependencies #4

Merged
merged 6 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ conda activate oor-benchmark-env
2. Install R and R dependencies

```bash
conda install conda-forge::r-base==4.0.5 bioconda::bioconductor-edger==3.32.1 conda-forge::r-statmod==1.4.37
conda install conda-forge::r-base==4.0.5 bioconda::bioconductor-edger conda-forge::r-statmod
```

<!--
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ dependencies = [
"anndata",
"scanpy",
"scvi-tools",
"rpy2<=3.5.12",
"milopy @ git+https://github.com/emdann/milopy.git@master",
"sklearn",
"scikit-learn",
"meld",
"cna"
"cna",
"multianndata",
]

[project.optional-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion tests/test_methods_cna.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import pytest
import numpy as np

from oor_benchmark.api import check_method, sample_dataset
from oor_benchmark.methods import scArches_cna


@pytest.mark.skip(reason="Silencing this because of updates in CNA.")
def test_method_output():
adata = sample_dataset()
adata.obsm["X_scVI"] = adata.obsm["X_pca"].copy()
Expand Down
Loading