Skip to content

Commit

Permalink
Merge pull request #299 from mixOmicsTeam/bioc-fix-24-10-23
Browse files Browse the repository at this point in the history
Bioc fix. Dependencies failing due to `devtools` call in vignette. Adjusted code block evaluation and version bump
  • Loading branch information
mixOmicsTeam authored Oct 23, 2023
2 parents f323e74 + 5dca024 commit e626b19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: mixOmics
Type: Package
Title: Omics Data Integration Project
Version: 6.23.4
Version: 6.23.5
Depends: R (>= 3.5.0),
MASS,
lattice,
Expand Down
4 changes: 2 additions & 2 deletions vignettes/vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -680,14 +680,14 @@ We can analyse these two data sets (genes and clinical measurements) using sPLS1

## Load the data {#04:load-data}

```{r 04-load-data2, echo = FALSE}
```{r 04-load-data2, echo = FALSE, eval = FALSE}
devtools::install_github("mixOmicsTeam/mixOmics")
data(liver.toxicity)
X <- liver.toxicity$gene
Y <- liver.toxicity$clinic
```

```{r 04-load-data, eval = FALSE}
```{r 04-load-data, eval = TRUE}
library(mixOmics)
data(liver.toxicity)
X <- liver.toxicity$gene
Expand Down

0 comments on commit e626b19

Please sign in to comment.