-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
98 lines (64 loc) · 6.06 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
---
title: "recount3: human and mouse public RNA-seq data"
author: ""
site: bookdown::bookdown_site
documentclass: book
output:
bookdown::gitbook: default
---
# Overview {-}
Welcome to the home of the `recount3` project! This website is the home to the most updated version of all the documentation related to the `recount3` project.
**recount3** is an online resource consisting of RNA-seq gene, exon, and exon-exon junction counts as well as coverage bigWig files for *XX* and *YY* 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](https://biorxiv.org) which created the coverage bigWig files and the recount-unified text files. While these raw output files are available through [SciServer](), for ease of statistical analysis, we provide through the [`recount3`](https://bioconductor.org/packages/recount3) R/Bioconductor package an interface that builds [RangedSummarizedExperiment](https://bioconductor.org/packages/SummarizedExperiment) R objects for gene, exon, and exon-exon junction counts. The coverage bigWig files can be used for annotation-agnostic expression analyses using for example [`derfinder`](https://bioconductor.org/packages/derfinder), [`megadepth`]() and other tools.
By taking care of several preprocessing steps and combining many datasets into one easily-accessible website, we make finding and analyzing RNA-seq data considerably more straightforward.
## Related `recount3` websites {-}
`recount3` is composed of several related software tools and websites. Here is the full list, with all of them referring to this website for their unified documentation.
* [`recount-pump`](https://github.com/langmead-lab/recount-pump/): TODO
* `recount-unifier`: TODO
* `monorail`: TODO
* `megadepth`: TODO
* `recount3`: R package [source](https://github.com/LieberInstitute/recount3), Bioconductor [landing page](https://bioconductor.org/packages/recount3), `pkgdown` documentation [website](https://LieberInstitute.github.io/recount3)
* [`recount3-docs`](https://github.com/LieberInstitute/recount3-docs): the source code for this documentation [website](https://LieberInstitute.github.io/recount3-docs).
## 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/)
* Data hosted by [SciServer 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://aejaffe.com/media/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 session_info, echo = FALSE}
<<session_info_chunk>>
```