-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
38 lines (26 loc) · 993 Bytes
/
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
---
title: "RNAseqFunctions"
output: github_document
---
Build: <a href="https://travis-ci.org/EngeLab/sRNAseqFunctions"><img src="https://travis-ci.org/EngeLab/RNAseqFunctions.svg?branch=master"></a>
Test coverage: [![codecov](https://codecov.io/gh/EngeLab/RNAseqFunctions/branch/master/graph/badge.svg)](https://codecov.io/gh/EngeLab/RNAseqFunctions)
### Description
A package of RNAseq QC and analysis tools for the Enge lab.
### Installation
```{r, eval = FALSE}
if(!"devtools" %in% rownames(installed.packages())) {
install.packages("devtools")
}
devtools::install_github("EngeLab/RNAseqFunctions")
```
### Vignettes
The vignette for loading and filtering counts data can be viewed in R with the
following command:
```{r, eval = FALSE}
vignette("loadAndFilterFuns", package = "RNAseqFunctions")
```
The vignette for running t-SNE and plotting can be viewed in R with the
following command:
```{r, eval = FALSE}
vignette("tsneAndPlotting", package = "RNAseqFunctions")
```