Skip to content

Commit 5dcd31f

Browse files
committed
fixing dependency error
1 parent a7a6e96 commit 5dcd31f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/check-bioc.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
config:
19-
- { os: ubuntu-latest, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
19+
- { os: ubuntu-latest, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/noble/latest" }
2020
env:
2121
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
2222
RSPM: ${{ matrix.config.rspm }}
@@ -138,8 +138,9 @@ jobs:
138138
install.packages(c("pkgdown", "sctransform"))
139139
install.packages(c("stringi", "ridge"), type="source", repos="https://cloud.r-project.org/")
140140
BiocManager::install(c("OmnipathR", "progeny"), ask=FALSE)
141-
install.packages(c("janitor", "reticulate", "Seurat", "SeuratObject", "tidyverse", "factoextra"))
141+
install.packages(c("janitor", "reticulate", "tidyverse", "factoextra"))
142142
remotes::install_github("saezlab/DOT")
143+
remotes::install_github("satijalab/seurat")
143144
144145
## modified from pkgdown::deploy_to_branch
145146
deploy_to_branch_mod <- function(pkg = ".", commit_message = pkgdown:::construct_commit_message(pkg),

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MISTy facilitates an in-depth understanding of marker interactions by profiling
1616

1717
**mistyR** is a R package implementing MISTy.
1818

19-
## Recent developments
19+
## Recent Developments
2020

2121
A **new** and improved version of mistyR is available and actively developed at [jtanevski/mistyR](https://github.com/jtanevski/mistyR). Among other improvements it:
2222

vignettes/FunctionalAndStructuralPipeline.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ library(janitor)
5151
We will use some functions in python since the computation time is significantly shorter than in R. Python chunks start with a #In Python. Install and load the necessary package for Python:
5252

5353
```{r}
54-
py_install(c("decoupler","omnipath"), pip =TRUE)
54+
py_install(c("decoupler<2.0.0","omnipath"), pip =TRUE)
5555
```
5656

5757
```{python}

0 commit comments

Comments
 (0)