Mercurial > repos > mingchen0919 > aurora_fastqc_site
annotate 10_adapter_content.Rmd @ 2:c64267b9f754 draft default tip
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
author | mingchen0919 |
---|---|
date | Sun, 30 Dec 2018 12:48:14 -0500 |
parents | b7c115edd970 |
children |
rev | line source |
---|---|
0 | 1 --- |
2 output: html_document | |
3 --- | |
4 | |
5 ```{r setup, include=FALSE, warning=FALSE, message=FALSE} | |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
6 knitr::opts_knit$set(progress = FALSE) |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
7 knitr::opts_chunk$set(error = TRUE, echo = FALSE) |
0 | 8 ``` |
9 | |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
10 ### Adapter Content |
0 | 11 |
12 ```{r 'Adapter Content', fig.width=10} | |
13 ## reads 1 | |
14 ac_1 = extract_data_module(paste0(opt$X_d, '/read_1_fastqc/fastqc_data.txt'), 'Adapter Content') | |
15 ac_1$id = 1:length(ac_1$X.Position) | |
16 | |
17 melt_ac_1 = melt(ac_1, id=c('X.Position', 'id')) | |
18 melt_ac_1$trim = 'before' | |
19 | |
20 ## reads 2 | |
21 ac_2 = extract_data_module(paste0(opt$X_d, '/read_2_fastqc/fastqc_data.txt'), 'Adapter Content') | |
22 ac_2$id = 1:length(ac_2$X.Position) | |
23 | |
24 melt_ac_2 = melt(ac_2, id=c('X.Position', 'id')) | |
25 melt_ac_2$trim = 'after' | |
26 | |
27 comb_ac = rbind(melt_ac_1, melt_ac_2) | |
28 comb_ac$trim = factor(levels = c('before', 'after'), comb_ac$trim) | |
29 | |
30 p = ggplot(data = comb_ac, aes(x = id, y = value, color = variable)) + | |
31 geom_line() + | |
32 facet_grid(. ~ trim) + | |
33 xlim(min(comb_ac$id), max(comb_ac$id)) + | |
34 ylim(0, 1) + | |
35 xlab('Position in read (bp)') + | |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
36 ylab('') + |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
37 scale_color_discrete(name = '') + |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
38 theme(axis.text.x = element_text(size = 5), |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
39 panel.background = element_rect(fill = NA), |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
40 axis.line = element_line()) |
0 | 41 ggplotly(p) |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
42 ``` |