Mercurial > repos > mingchen0919 > aurora_fastqc_site
annotate 05_per_base_sequence_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 ### Per base sequence content |
0 | 11 |
12 ```{r 'Per base sequence content', fig.width=10} | |
13 ## reads 1 | |
14 pbsc_1 = extract_data_module(paste0(opt$X_d, '/read_1_fastqc/fastqc_data.txt'), 'Per base sequence content') | |
15 pbsc_1$id = 1:length(pbsc_1$X.Base) | |
16 | |
17 melt_pbsc_1 = melt(pbsc_1, id=c('X.Base', 'id')) | |
18 melt_pbsc_1$trim = 'before' | |
19 | |
20 | |
21 ## reads 2 | |
22 pbsc_2 = extract_data_module(paste0(opt$X_d, '/read_2_fastqc/fastqc_data.txt'), 'Per base sequence content') | |
23 pbsc_2$id = 1:length(pbsc_2$X.Base) | |
24 | |
25 melt_pbsc_2 = melt(pbsc_2, id=c('X.Base', 'id')) | |
26 melt_pbsc_2$trim = 'after' | |
27 | |
28 comb_pbsc = rbind(melt_pbsc_1, melt_pbsc_2) | |
29 comb_pbsc$trim = factor(levels = c('before', 'after'), comb_pbsc$trim) | |
30 | |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
31 p = ggplot(data = comb_pbsc) + |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
32 geom_line(mapping = aes(x = id, y = value, color = variable)) + |
0 | 33 facet_grid(. ~ trim) + |
34 xlim(min(comb_pbsc$id), max(comb_pbsc$id)) + | |
35 ylim(0, 100) + | |
36 xlab('Position in read (bp)') + | |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
37 ylab('') + |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
38 scale_color_discrete(name = '') + |
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
39 theme_classic() |
0 | 40 ggplotly(p) |
2
c64267b9f754
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
mingchen0919
parents:
0
diff
changeset
|
41 ``` |