From 334a09696fe8b63504a63806186a4d8157a5ebbb Mon Sep 17 00:00:00 2001
From: Peter van 't Hof <p.j.van_t_hof@lumc.nl>
Date: Thu, 17 Sep 2015 19:12:56 +0200
Subject: [PATCH] Fix LinePlot

---
 .../main/scala/nl/lumc/sasc/biopet/utils/rscript/LinePlot.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/public/biopet-utils/src/main/scala/nl/lumc/sasc/biopet/utils/rscript/LinePlot.scala b/public/biopet-utils/src/main/scala/nl/lumc/sasc/biopet/utils/rscript/LinePlot.scala
index fb0e2f0a0..195460919 100644
--- a/public/biopet-utils/src/main/scala/nl/lumc/sasc/biopet/utils/rscript/LinePlot.scala
+++ b/public/biopet-utils/src/main/scala/nl/lumc/sasc/biopet/utils/rscript/LinePlot.scala
@@ -48,5 +48,5 @@ class LinePlot(val root: Configurable) extends Rscript {
     ylabel.map(Seq("--ylabel", _)).getOrElse(Seq()) ++
     llabel.map(Seq("--llabel", _)).getOrElse(Seq()) ++
     title.map(Seq("--title", _)).getOrElse(Seq()) ++
-    (if (removeZero) Seq("--removeZero") else Seq())
+    (if (removeZero) Seq("--removeZero", "true") else Seq())
 }
-- 
GitLab