Mercurial > repos > mingchen0919 > aurora_fastqc_site
diff 05_per_base_sequence_content.Rmd @ 3:b9c9d1dacda6 draft
reformat code
author | mingchen0919 |
---|---|
date | Fri, 09 Mar 2018 17:47:50 -0500 |
parents | 645291efd2e7 |
children | 94762f1cb779 |
line wrap: on
line diff
--- a/05_per_base_sequence_content.Rmd Tue Feb 27 10:39:23 2018 -0500 +++ b/05_per_base_sequence_content.Rmd Fri Mar 09 17:47:50 2018 -0500 @@ -11,7 +11,7 @@ ``` -# Per base sequence content +### Per base sequence content ```{r 'Per base sequence content', fig.width=10} ## reads 1 @@ -32,12 +32,14 @@ comb_pbsc = rbind(melt_pbsc_1, melt_pbsc_2) comb_pbsc$trim = factor(levels = c('before', 'after'), comb_pbsc$trim) -p = ggplot(data = comb_pbsc, aes(x = id, y = value, color = variable)) + - geom_line() + +p = ggplot(data = comb_pbsc) + + geom_line(mapping = aes(x = id, y = value, color = variable)) + facet_grid(. ~ trim) + xlim(min(comb_pbsc$id), max(comb_pbsc$id)) + ylim(0, 100) + xlab('Position in read (bp)') + - ylab('') + ylab('') + + scale_color_discrete(name = '') + + theme_classic() ggplotly(p) -``` \ No newline at end of file +```