Switch to unified view

a b/vignettes/BloodCancerMultiOmics2017.Rmd
1
---
2
title: "BloodCancerMultiOmics2017 - complete analysis"
3
vignette: >
4
  %\VignetteIndexEntry{BloodCancerMultiOmics2017}
5
  %\VignetteEngine{knitr::rmarkdown}
6
  %\VignetteEncoding{UTF-8}
7
output:
8
  BiocStyle::html_document
9
---
10
11
12
# Introduction
13
14
`Biocpkg("BloodCancerMultiOmics2017")` is a multi-omic dataset comprising genome, transcriptome, DNA methylome data together with data from the *ex vivo* drug sensitivity screen of the primary blood tumor samples.
15
16
***
17
18
In this vignette we present the analysis of the Primary Blood Cancer Encyclopedia (PACE) project and source code for the paper
19
20
<br />
21
22
**Drug-perturbation-based stratification of blood cancer**
23
24
Sascha Dietrich\*, Małgorzata Oleś\*, Junyan Lu\*,
25
Leopold Sellner, Simon Anders, Britta Velten, Bian Wu, Jennifer Hüllein, Michelle da Silva Liberio, Tatjana Walther, Lena Wagner, Sophie Rabe, Sonja Ghidelli-Disse, Marcus Bantscheff, Andrzej K. Oleś, Mikołaj Słabicki, Andreas Mock, Christopher C. Oakes, Shihui Wang, Sina Oppermann, Marina Lukas, Vladislav Kim, Martin Sill, Axel Benner, Anna Jauch, Lesley Ann Sutton, Emma Young, Richard Rosenquist, Xiyang Liu, Alexander Jethwa, Kwang Seok Lee, Joe Lewis, Kerstin Putzker, Christoph Lutz, Davide Rossi, Andriy Mokhir, Thomas Oellerich, Katja Zirlik, Marco Herling, Florence Nguyen-Khac, Christoph Plass, Emma Andersson, Satu Mustjoki, Christof von Kalle, Anthony D. Ho, Manfred Hensel, Jan Dürig, Ingo Ringshausen, Marc Zapatka,
26
Wolfgang Huber and Thorsten Zenz
27
<br>
28
*J. Clin. Invest.* (2018); 128(1):427–445. doi:10.1172/JCI93801. 
29
30
31
The presented analysis was done by Małgorzata Oleś, Sascha Dietrich, Junyan Lu, Britta Velten, Andreas Mock, Vladislav Kim and Wolfgang Huber.
32
33
*This vignette was put together by Małgorzata Oleś.*
34
35
<br />
36
37
38
This vignette is build from the sub-vignettes, which each can be build separately. The parts are separated by the horizontal lines. Each part finishes with removal of all the created objects.
39
40
41
```{r echo=FALSE}
42
.standalone=FALSE
43
```
44
45
```{r, message=FALSE, warning=FALSE, include=!.standalone}
46
library("AnnotationDbi")
47
library("abind")
48
library("beeswarm")
49
library("Biobase")
50
library("biomaRt")
51
library("broom")
52
library("colorspace")
53
library("cowplot")
54
library("dendsort")
55
library("DESeq2")
56
library("doParallel")
57
library("dplyr")
58
library("foreach")
59
library("forestplot")
60
library("genefilter")
61
library("ggbeeswarm")
62
library("ggdendro")
63
library("ggplot2")
64
#library("ggtern")
65
library("glmnet")
66
library("grid")
67
library("gridExtra")
68
library("gtable")
69
library("hexbin")
70
# library("IHW")
71
library("ipflasso")
72
library("knitr")
73
library("limma")
74
library("magrittr")
75
library("maxstat")
76
library("nat")
77
library("org.Hs.eg.db")
78
library("BloodCancerMultiOmics2017")
79
library("pheatmap")
80
library("piano")
81
library("readxl")
82
library("RColorBrewer")
83
library("reshape2")
84
library("Rtsne")
85
library("scales")
86
library("SummarizedExperiment")
87
library("survival")
88
library("tibble")
89
library("tidyr")
90
library("xtable")
91
```
92
93
***
94
95
<!-- **p1** -->
96
97
```{r p01, child = 'src/part01.Rmd'}
98
```
99
100
***
101
102
<!-- **p2** -->
103
104
```{r p02, child = 'src/part02.Rmd'}
105
```
106
107
***
108
109
<!-- **p14** -->
110
111
```{r p14, child = 'src/part14.Rmd'}
112
```
113
114
***
115
116
<!-- **p3**-->
117
118
```{r p03, child = 'src/part03.Rmd'}
119
```
120
121
***
122
123
<!-- **p10** -->
124
125
```{r p10, child = 'src/part10.Rmd'}
126
```
127
128
***
129
130
<!-- **p16** -->
131
132
```{r p16, child = 'src/part16.Rmd'}
133
```
134
135
***
136
137
<!-- **p7** -->
138
139
```{r p07, child = 'src/part07.Rmd'}
140
```
141
142
***
143
144
<!-- **p4** -->
145
146
```{r p04, child = 'src/part04.Rmd'}
147
```
148
149
***
150
151
<!-- **p5** -->
152
153
```{r p05, child = 'src/part05.Rmd'}
154
```
155
156
***
157
158
<!-- **p15** -->
159
160
```{r p15, child = 'src/part15.Rmd'}
161
```
162
163
***
164
165
<!-- **p13** -->
166
167
```{r p13, child = 'src/part13.Rmd'}
168
```
169
170
***
171
172
<!-- **p11** -->
173
174
```{r p11, child = 'src/part11.Rmd'}
175
```
176
177
***
178
179
<!-- **p8** -->
180
181
```{r p08, child = 'src/part08.Rmd'}
182
```
183
184
185
# End of session
186
187
```{r}
188
sessionInfo()
189
```