Skip to content

Commit 6450fbf

Browse files
authored
Remove restatement of params defaults
1 parent d00cd97 commit 6450fbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/deseq2_qc.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ if (min(dim(count.table))<=1) { # No point if only one sample, or one gene
103103
}
104104
if (!opt$vst) {
105105
vst_name <- "rlog"
106-
rld <- rlog(dds, blind=TRUE) # blind=TRUE is the default and already implied by design=~1
106+
rld <- rlog(dds)
107107
} else {
108108
vst_name <- "vst"
109-
rld <- varianceStabilizingTransformation(dds, blind=TRUE)
109+
rld <- varianceStabilizingTransformation(dds)
110110
}
111111

112112
assay(dds, vst_name) <- assay(rld)

0 commit comments

Comments
 (0)