Mercurial > repos > mingchen0919 > aurora_fastqc_site
annotate 06_per_sequence_gc_content.Rmd @ 10:5286f3b1c9c2 draft default tip
planemo upload commit 363ef0a73d874c67326a67f51a78328906951248-dirty
| author | mingchen0919 |
|---|---|
| date | Fri, 30 Nov 2018 22:15:50 -0500 |
| parents | 94762f1cb779 |
| children |
| rev | line source |
|---|---|
| 1 | 1 --- |
| 2 output: html_document | |
| 3 --- | |
| 4 | |
| 5 ```{r setup, include=FALSE, warning=FALSE, message=FALSE} | |
|
8
94762f1cb779
planemo upload commit 76f9ca75d5b1c0c0fad6c10876d9dfeba7d5ecff-dirty
mingchen0919
parents:
3
diff
changeset
|
6 knitr::opts_knit$set(progress = FALSE) |
|
94762f1cb779
planemo upload commit 76f9ca75d5b1c0c0fad6c10876d9dfeba7d5ecff-dirty
mingchen0919
parents:
3
diff
changeset
|
7 knitr::opts_chunk$set(error = TRUE, echo = FALSE) |
| 1 | 8 ``` |
| 9 | |
| 3 | 10 ### Per sequence GC content |
| 1 | 11 |
| 12 ```{r 'Per sequence GC content', fig.width=10} | |
| 13 ## reads 1 | |
| 14 psGCc_1 = extract_data_module(paste0(opt$X_d, '/read_1_fastqc/fastqc_data.txt'), 'Per sequence GC content') | |
| 15 psGCc_1$trim = 'before' | |
| 16 | |
| 17 ## reads 2 | |
| 18 psGCc_2 = extract_data_module(paste0(opt$X_d, '/read_2_fastqc/fastqc_data.txt'), 'Per sequence GC content') | |
| 19 psGCc_2$trim = 'after' | |
| 20 | |
| 21 comb_psGCc = rbind(psGCc_1, psGCc_2) | |
| 22 comb_psGCc$trim = factor(levels = c('before', 'after'), comb_psGCc$trim) | |
| 23 | |
| 24 p = ggplot(data = comb_psGCc, aes(x = X.GC.Content, y = Count)) + | |
| 25 geom_line(color = 'red') + | |
| 26 facet_grid(. ~ trim) + | |
| 27 xlab('Mean Sequence Qaulity (Phred Score)') + | |
| 3 | 28 ylab('') + |
| 29 scale_color_discrete(name = '') + | |
| 30 theme_classic() | |
| 1 | 31 ggplotly(p) |
| 3 | 32 ``` |
