Skip to content
Snippets Groups Projects
Commit 87396efb authored by bow's avatar bow
Browse files

Update heatmap wrapper

parent 4f78c3f1
No related branches found
No related tags found
No related merge requests found
......@@ -25,11 +25,15 @@ class PlotHeatmap(val root: Configurable) extends RScriptCommandLineFunction {
@Output(doc = "Output plot", required = false)
var output: File = null
var countType: Option[String] = config("count_type")
var useLog: Boolean = config("use_log", default = false)
var tmmNormalize: Boolean = config("tmm_normalize", default = false)
def cmdLine = {
RScriptCommand +
conditional(tmmNormalize, "-T") +
conditional(useLog, "-L") +
required("-C", countType) +
required("-I", input) +
required("-O", output)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment