You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**`markeR`** is an R package that provides a modular and extensible framework for the systematic evaluation of gene sets as phenotypic markers using transcriptomic data. The package is designed to support both quantitative analyses and visual exploration of gene set behaviour across experimental and clinical phenotypes.
30
30
31
31
> **To cite `markeR` please use:**
32
32
>
33
-
> Martins-Silva R, Kaizeler A, Barbosa-Morais N (2025). _markeR: an R Toolkit for Evaluating Gene Sets as Phenotypic Markers_. Gulbenkian Institute for Molecular Medicine, Faculdade de Medicina, Universidade de Lisboa, Lisbon, Portugal. R package version 0.99.5, https://github.com/DiseaseTranscriptomicsLab/markeR.
33
+
> Martins-Silva R, Kaizeler A, Barbosa-Morais N (2025). _markeR: an R Toolkit for Evaluating Gene Sets as Phenotypic Markers_. Gulbenkian Institute for Molecular Medicine, Faculdade de Medicina, Universidade de Lisboa, Lisbon, Portugal. R package version 1.0.0, https://github.com/DiseaseTranscriptomicsLab/markeR.
34
34
35
35
The folder `inst/Paper/` is in the **paper** branch and contains all scripts and materials used in the original `markeR` paper to reproduce analyses and figures. You can browse it [here](https://github.com/DiseaseTranscriptomicsLab/markeR/tree/paper/inst/Paper).
36
36
@@ -57,8 +57,20 @@ The folder `inst/Paper/` is in the **paper** branch and contains all scripts and
57
57
58
58
## Installation
59
59
60
-
Install the latest development release of markeR from [GitHub](https://github.com/) with:
61
60
61
+
Install the latest release from Bioconductor:
62
+
63
+
```{r, eval=FALSE}
64
+
# Install from Bioconductor
65
+
if (!requireNamespace("BiocManager", quietly = TRUE))
66
+
install.packages("BiocManager")
67
+
BiocManager::install("markeR")
68
+
library(markeR)
69
+
```
70
+
71
+
72
+
Or install the latest development release of `markeR` from [GitHub](https://github.com/) with:
0 commit comments