差异基因分析

source("https://bioconductor.org/biocLite.R") #载入安装工具

biocLite("DESeq2")  #安装包

library("DESeq2") #测试是否安装成功


R里面的取整函数:

> x<-3.555555

> ceiling(x)

[1] 4

> floor(x)

[1] 3

> trunc(x)

[1] 3

>

> round(x, digits = 0)

[1] 4

> signif(x, digits = 6)

[1] 3.55556

你可能感兴趣的:(差异基因分析)