DESeq2 normalized

作者: 一路向前_莫问前程_前程似锦 | 来源:发表于2020-07-03 17:07 被阅读0次
conds <- factor( rep("samples", times=ncol(countsTable)) )
cds <- newCountDataSet( countsTable[setdiff(rownames(countsTable), tailrows),], conds )
cds <- estimateSizeFactors( cds )
countsNorm <- counts( cds, normalized=TRUE )
countsNorm <- round(countsNorm, digits=1)
write.table(countsNorm, file=file.path(res.path, paste(tumorname, ".normalized.count.all.features.txt", sep="")), row.names=T, col.names=NA, sep="\t", quote=F)

相关文章

网友评论

    本文标题:DESeq2 normalized

    本文链接:https://www.haomeiwen.com/subject/qhzsqktx.html