forked from denisagniel/tcgsaseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
50 lines (34 loc) · 2.09 KB
/
README.Rmd
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# `tcgsaseq`
[](https://cran.r-project.org/package=tcgsaseq)
[](https://travis-ci.org/denisagniel/tcgsaseq)
[](https://ci.appveyor.com/project/denisagniel/tcgsaseq)
[](https://codecov.io/github/denisagniel/tcgsaseq?branch=master)
[](https://www.r-pkg.org/pkg/tcgsaseq)
## Overview
`tcgsaseq` is a package for analyzing RNA-seq data. The 2 main functions of the package are `varseq` and `tcgsa_seq`:
* **Gene-wise Differential Analysis of RNA-seq data** can be performed using the function `varseq`.
* **Gene Set Analysis of RNA-seq data** can be performed using the function `tcgsa_seq`.
The method implemented in this package is detailed in the following article:
> Agniel D & Hejblum BP (2017). Variance component score test for time-course gene set analysis of longitudinal RNA-seq data, 2017, [*Biostatistics*](https://academic.oup.com/biostatistics/article-abstract/18/4/589/3065599), 18(4):589-604. [arXiv:1605.02351](https://arxiv.org/abs/1605.02351v4) [DOI: 10.1093/biostatistics/kxx005](https://doi.org/10.1093/biostatistics/kxx005)
## Installation
The easiest way to get `tcgsaseq` is to install it from [CRAN](https://cran.r-project.org/package=tcgsaseq):
```{r CRAN-install, eval=FALSE}
install.packages("tcgsaseq")
```
Or to get the development version from [GitHub](https://github.com/denisagniel/tcgsaseq):
```{r GitHub-install, eval=FALSE}
#install.packages("devtools")
devtools::install_github("denisagniel/tcgsaseq")
```
-- Denis Agniel and Boris Hejblum