Skip to content

Commit f89cdea

Browse files
authored
show installation code for BioC moxels (#682)
* Doc changes for #680 * use remotes for installs
1 parent d8eb53f commit f89cdea

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

man/details_pls_mixOmics.Rd

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/rmd/pls_mixOmics.Rmd

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,20 @@ pls(num_comp = integer(1), predictor_prop = double(1)) %>%
5959

6060
In this case, [plsmod::pls_fit()] has the same role as above but eventually targets [mixOmics::plsda()] or [mixOmics::splsda()] .
6161

62+
## Installing mixOmics
63+
64+
This package is available via the Bioconductor repository and is not accessible via CRAN. You can install using:
65+
66+
```{r eval = FALSE}
67+
if (!require("remotes", quietly = TRUE)) {
68+
install.packages("remotes")
69+
}
70+
71+
remotes::install_bioc("mixOmics")
72+
```
73+
74+
75+
6276
## Preprocessing requirements
6377

6478
```{r child = "template-makes-dummies.Rmd"}

man/rmd/pls_mixOmics.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,21 @@ pls(num_comp = integer(1), predictor_prop = double(1)) %>%
7979

8080
In this case, [plsmod::pls_fit()] has the same role as above but eventually targets [mixOmics::plsda()] or [mixOmics::splsda()] .
8181

82+
## Installing mixOmics
83+
84+
This package is available via the Bioconductor repository and is not accessible via CRAN. You can install using:
85+
86+
87+
```r
88+
if (!require("remotes", quietly = TRUE)) {
89+
install.packages("remotes")
90+
}
91+
92+
remotes::install_bioc("mixOmics")
93+
```
94+
95+
96+
8297
## Preprocessing requirements
8398

8499

0 commit comments

Comments
 (0)