Skip to content
Snippets Groups Projects
Commit 9c2720bf authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fix RGPI config var

parent 8b4d55c2
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ class Mapping(val root: Configurable) extends QScript with BiopetQScript {
var RGDT: Date = _
@Argument(doc = "Readgroup predicted insert size", shortName = "RGPI", required = false)
var RGPI: Int = config("RGPI")
var RGPI: Option[Int] = config("RGPI")
var paired: Boolean = false
val flexiprep = new Flexiprep(this)
......@@ -300,7 +300,7 @@ class Mapping(val root: Configurable) extends QScript with BiopetQScript {
if (RGCN != null) RG += "CN:" + RGCN + "\\t"
if (RGDS != null) RG += "DS" + RGDS + "\\t"
if (RGDT != null) RG += "DT" + RGDT + "\\t"
if (RGPI > 0) RG += "PI" + RGPI + "\\t"
if (RGPI.isDefined) RG += "PI" + RGPI.get + "\\t"
return RG.substring(0, RG.lastIndexOf("\\t"))
}
......
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