Mercurial > repos > iuc > deseq2
diff deseq2.R @ 18:3bf1b3ec1ddf draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 commit 448dccb0c02aba00d8301247b0f0f406ab3d4fa2
author | iuc |
---|---|
date | Fri, 16 Nov 2018 14:47:19 -0500 |
parents | d9e5cadc7f0b |
children | c56e0689e46e |
line wrap: on
line diff
--- a/deseq2.R Wed Sep 05 15:54:03 2018 -0400 +++ b/deseq2.R Fri Nov 16 14:47:19 2018 -0500 @@ -49,6 +49,8 @@ "batch_factors", "", 1, "character", "outfile", "o", 1, "character", "countsfile", "n", 1, "character", + "rlogfile", "r", 1, "character", + "vstfile", "v", 1, "character", "header", "H", 0, "logical", "factors", "f", 1, "character", "files_to_labels", "l", 1, "character", @@ -56,6 +58,7 @@ "tximport", "i", 0, "logical", "txtype", "y", 1, "character", "tx2gene", "x", 1, "character", # a space-sep tx-to-gene map or GTF file (auto detect .gtf/.GTF) + "esf", "e", 1, "character", "fit_type", "t", 1, "integer", "many_contrasts", "m", 0, "logical", "outlier_replace_off" , "a", 0, "logical", @@ -188,7 +191,10 @@ } dds <- get_deseq_dataset(sampleTable, header=opt$header, designFormula=designFormula, tximport=opt$tximport, txtype=opt$txtype, tx2gene=opt$tx2gene) - +# estimate size factors for the chosen method +if(!is.null(opt$esf)){ + dds <- estimateSizeFactors(dds, type=opt$esf) +} apply_batch_factors <- function (dds, batch_factors) { rownames(batch_factors) <- batch_factors$identifier batch_factors <- subset(batch_factors, select = -c(identifier, condition)) @@ -284,6 +290,19 @@ write.table(normalizedCounts, file=opt$countsfile, sep="\t", col.names=NA, quote=FALSE) } +if (!is.null(opt$rlogfile)) { + rLogNormalized <-rlogTransformation(dds) + rLogNormalizedMat <- assay(rLogNormalized) + write.table(rLogNormalizedMat, file=opt$rlogfile, sep="\t", col.names=NA, quote=FALSE) +} + +if (!is.null(opt$vstfile)) { + vstNormalized<-varianceStabilizingTransformation(dds) + vstNormalizedMat <- assay(vstNormalized) + write.table(vstNormalizedMat, file=opt$vstfile, sep="\t", col.names=NA, quote=FALSE) +} + + if (is.null(opt$many_contrasts)) { # only contrast the first and second level of the primary factor ref <- allLevels[1]