Name Mode Size
.github 040000
R 040000
data 040000
inst 040000
man 040000
pkgdown 040000
vignettes 040000
.Rbuildignore 100644 0 kb
DESCRIPTION 100644 1 kb
NAMESPACE 100644 1 kb
NEWS.md 100644 0 kb
README.md 100644 1 kb
_pkgdown.yml 100644 0 kb
README.md
# goseq <!-- badges: start --> [![R-CMD-check](https://github.com/federicomarini/goseq/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/federicomarini/goseq/actions/workflows/R-CMD-check.yaml) <!-- badges: end --> The `goseq` package provides a method to detect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data. `goseq` can be found on Bioconductor (<https://www.bioconductor.org/packages/goseq>). ## Installation You can install the version of `goseq` which is on Bioconductor with these commands: ``` r if (!require("BiocManager")) { install.packages("BiocManager") } BiocManager::install("goseq") ``` Alternatively, you can install the development version of `goseq` from GitHub with: ``` r library("remotes") remotes::install_github("federicomarini/goseq") ```