diff --git a/public/gentrap/src/main/scala/nl/lumc/sasc/biopet/pipelines/gentrap/Gentrap.scala b/public/gentrap/src/main/scala/nl/lumc/sasc/biopet/pipelines/gentrap/Gentrap.scala index 0e7088e6ea660cd2287f496ecee3695113972535..455bbd9c9d3a6dbd2070095de25bdcf842f9e06a 100644 --- a/public/gentrap/src/main/scala/nl/lumc/sasc/biopet/pipelines/gentrap/Gentrap.scala +++ b/public/gentrap/src/main/scala/nl/lumc/sasc/biopet/pipelines/gentrap/Gentrap.scala @@ -160,7 +160,7 @@ class Gentrap(val root: Configurable) extends QScript /** Pipeline settings shown in the summary file */ override def summarySettings: Map[String, Any] = super.summarySettings ++ Map( "expression_measures" -> expMeasures().toList.map(_.toString), - "strand_protocol" -> strandProtocol.toString, + "strand_protocol" -> strandProtocol().toString, "call_variants" -> shivaVariantcalling.isDefined, "remove_ribosomal_reads" -> removeRibosomalReads ) @@ -170,6 +170,9 @@ class Gentrap(val root: Configurable) extends QScript super.init() if (expMeasures().isEmpty) Logging.addError("'expression_measures' is missing in the config") + require(Gentrap.StrandProtocol.values.contains(strandProtocol())) + if (removeRibosomalReads && ribosomalRefFlat().isEmpty) + Logging.addError("removeRibosomalReads is enabled but no ribosomalRefFlat is given") executedMeasures.foreach(x => x.outputDir = new File(outputDir, "expresion_measures" + File.separator + x.name)) }