File: README.md

package info (click to toggle)
r-bioc-goseq 1.58.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,416 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 845 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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")
```