Skip to content
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: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ Suggests: dbplyr,
reshape2,
testthat,
tidyselect
Remotes:
calico/romic
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.2
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ mzroll_lists can then be filtered, floored to the limit of detection, and normal

# Initial Setup

The package can be installed from GitHub using:
The package can be installed from GitHub. First, install Bioconductor packages:

```r
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install(c("fgsea", "qvalue"))
```

Then, install `claman` using `remotes`:

```r
# install.packages("remotes")
Expand Down
Loading