-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
99 lines (67 loc) · 5.79 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
title: "recount3: human and mouse public RNA-seq data"
author: ""
site: bookdown::bookdown_site
documentclass: book
output:
bookdown::gitbook: default
bibliography: ["recount3.bib"]
biblio-style: "apalike"
link-citations: true
---
Welcome to the home of the `recount3` project! This website provides an overview of all the pieces that make up the `recount3` project that is a part of [**recount.bio**](https://recount.bio/).
# Overview {-}
**recount3** is an online resource consisting of RNA-seq gene, exon, and exon-exon junction counts as well as coverage bigWig files for 8,679 and 10,088 different studies for human and mouse respectively. It is the third generation of the [ReCount project](http://bowtie-bio.sourceforge.net/recount/).
The raw sequencing data were processed with [`recount-pump`](https://github.com/langmead-lab/recount-pump/) as described in the [recount3 paper](TODO) which created the coverage bigWig files and the recount-unified text files. While these raw output files are available through [IDIES SciServer](https://idies.jhu.edu/), for ease of statistical analysis, we provide through the `r BiocStyle::Biocpkg("recount3")` R/Bioconductor package an interface that builds [RangedSummarizedExperiment](https://doi.org/10.1038/nmeth.3252) R objects for gene, exon, and exon-exon junction counts for each study. Furthermore, `r BiocStyle::Biocpkg("snapcount")` enables query-based access of the `recount3` and `recount2` data. The coverage bigWig files can be used for annotation-agnostic expression analyses using for example `r BiocStyle::Biocpkg("megadepth")`, `r BiocStyle::Biocpkg("derfinder")` and other tools.
By taking care of several pre-processing steps and combining many datasets into one easily-accessible website, we make finding and analyzing RNA-seq data considerably more straightforward.
## How to cite `recount3` {-}
Thank you for your continued support of the `ReCount` family of projects! We greatly appreciate you citing our work.
```{r "citation"}
print(citation("recount3")[2], bibtex = TRUE)
```
### Related projects {-}
The `ReCount` project has three main publications over the years with implementation details that have been improved each time. Each phase of the project has had several companion publications that expanded the main resource in different directions. Please cite the appropriate expansions and results as you see relevant for your work.
### Previous `ReCount` projects {-}
* [`recount2`](https://jhubiostatistics.shinyapps.io/recount/)
* [`ReCount`](http://bowtie-bio.sourceforge.net/recount/)
### Related publications {-}
#### `recount3` {-}
#### `recount2` {-}
#### `ReCount` {-}
## Team members {-}
* [Christopher Wilks](https://github.com/) (the star behind `recount3`!)
* [Leonardo Collado Torres](https://github.com/lcolladotor)
* [Shijie Charles Zheng](https://github.com/)
## Teams involved {-}
* [Ben Langmead's lab at JHU Computer Science](http://www.langmead-lab.org/)
* [Kasper Daniel Hansen's lab at JHBSPH Biostatistics Department](https://www.hansenlab.org/)
* [Leonardo Collado-Torres](http://lcolladotor.github.io/) and [Andrew E. Jaffe](http://aejaffe.com/) from [LIBD](https://www.libd.org/)
* [Abhinav Nellore's lab at OHSU](http://nellore.bio/)
* [Jeff Leek's lab at JHBSPH Biostatistics Deparment](http://jtleek.com/)
* Data hosted by [SciServer from IDIES at JHU](https://www.sciserver.org/)
| | | | |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
| <a href="http://www.langmead-lab.org/"><img src="http://www.langmead-lab.org/wp-content/uploads/2014/01/Screen-Shot-2014-02-02-at-5.20.13-PM-1024x199.png" width="250px"></a> | <a href="https://www.libd.org/"><img src="http://lcolladotor.github.io/img/LIBD_logo.jpg" width="250px"></a> | <a href="http://nellore.bio/"><img src="https://seekvectorlogo.net/wp-content/uploads/2018/08/oregon-health-science-university-ohsu-vector-logo.png" width="250px"></a> | <a href="https://www.sciserver.org/"><img src="https://skyserver.sdss.org/dr14/en/images/sciserver_logo_inverted_vertical.png" width="250px"></a> |
This book was last updated on `r Sys.time()`.
## R session information {-}
Details on the R version used for making this book. The source code is available at [`lcolladotor/bioc_team_ds`](https://github.com/lcolladotor/bioc_team_ds).
```{r session_info_chunk, eval = FALSE}
## Load the package at the top of your script
library("sessioninfo")
## Reproducibility information
print('Reproducibility information:')
Sys.time()
proc.time()
options(width = 120)
session_info()
```
```{r "BiocPkgs", message = FALSE}
## For links
library("BiocStyle")
## Packages illustrated in the documentation
library("recount3")
library("megadepth")
```
```{r session_info, echo = FALSE}
<<session_info_chunk>>
```