comparison DESeq_results_03.Rmd @ 0:6f94b4b9de44 draft

planemo upload
author mingchen0919
date Tue, 27 Feb 2018 23:57:53 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6f94b4b9de44
1 ---
2 output: html_document
3 ---
4
5 ```{r setup, include=FALSE, warning=FALSE, message=FALSE}
6 knitr::opts_chunk$set(
7 echo = as.logical(opt$X_e),
8 error = TRUE
9 )
10 ```
11
12
13 # Histogram of p values
14
15 ```{r}
16 hist(res$pvalue[res$baseMean > 1], breaks = 0:20/20,
17 col = "grey50", border = "white", main = "",
18 xlab = "Mean normalized count larger than 1")
19 ```
20