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

Implemented LazyCheck

parent a43106b2
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ package nl.lumc.sasc.biopet.core.annotations ...@@ -2,6 +2,7 @@ package nl.lumc.sasc.biopet.core.annotations
import nl.lumc.sasc.biopet.core.BiopetQScript import nl.lumc.sasc.biopet.core.BiopetQScript
import nl.lumc.sasc.biopet.core.BiopetQScript.InputFile import nl.lumc.sasc.biopet.core.BiopetQScript.InputFile
import nl.lumc.sasc.biopet.utils.LazyCheck
import org.broadinstitute.gatk.queue.QScript import org.broadinstitute.gatk.queue.QScript
/** /**
...@@ -27,21 +28,21 @@ trait AnnotationBed extends BiopetQScript { qscript: QScript => ...@@ -27,21 +28,21 @@ trait AnnotationBed extends BiopetQScript { qscript: QScript =>
trait AnnotationRefFlat extends BiopetQScript { qscript: QScript => trait AnnotationRefFlat extends BiopetQScript { qscript: QScript =>
/** GTF reference file */ /** GTF reference file */
lazy val annotationRefFlat: File = { lazy val annotationRefFlat = new LazyCheck({
val file: File = config("annotation_refflat", freeVar = true) val file: File = config("annotation_refflat", freeVar = true)
inputFiles :+ InputFile(file, config("annotation_refflat_md5", freeVar = true)) inputFiles :+ InputFile(file, config("annotation_refflat_md5", freeVar = true))
file file
} })
} }
trait RibosomalRefFlat extends BiopetQScript { qscript: QScript => trait RibosomalRefFlat extends BiopetQScript { qscript: QScript =>
/** GTF reference file */ /** GTF reference file */
lazy val ribosomalRefFlat: Option[File] = { lazy val ribosomalRefFlat = new LazyCheck({
val file: Option[File] = config("ribosome_refflat", freeVar = true) val file: Option[File] = config("ribosome_refflat", freeVar = true)
file match { file match {
case Some(f) => inputFiles :+ InputFile(f, config("ribosome_refflat_md5", freeVar = true)) case Some(f) => inputFiles :+ InputFile(f, config("ribosome_refflat_md5", freeVar = true))
case _ => case _ =>
} }
file file
} })
} }
package nl.lumc.sasc.biopet.utils
/**
* Created by pjvan_thof on 1/25/16.
*/
class LazyCheck[T](function: => T) {
private var _isSet = false
def isSet = _isSet
lazy val value = {
val chache = function
_isSet = true
chache
}
def apply() = value
def get = value
}
...@@ -23,7 +23,7 @@ import nl.lumc.sasc.biopet.pipelines.gentrap.Gentrap.{ StrandProtocol, ExpMeasur ...@@ -23,7 +23,7 @@ import nl.lumc.sasc.biopet.pipelines.gentrap.Gentrap.{ StrandProtocol, ExpMeasur
import nl.lumc.sasc.biopet.pipelines.gentrap.measures._ import nl.lumc.sasc.biopet.pipelines.gentrap.measures._
import nl.lumc.sasc.biopet.pipelines.mapping.MultisampleMappingTrait import nl.lumc.sasc.biopet.pipelines.mapping.MultisampleMappingTrait
import nl.lumc.sasc.biopet.pipelines.shiva.ShivaVariantcalling import nl.lumc.sasc.biopet.pipelines.shiva.ShivaVariantcalling
import nl.lumc.sasc.biopet.utils.Logging import nl.lumc.sasc.biopet.utils.{ LazyCheck, Logging }
import nl.lumc.sasc.biopet.utils.config._ import nl.lumc.sasc.biopet.utils.config._
import org.broadinstitute.gatk.queue.QScript import org.broadinstitute.gatk.queue.QScript
import picard.analysis.directed.RnaSeqMetricsCollector.StrandSpecificity import picard.analysis.directed.RnaSeqMetricsCollector.StrandSpecificity
...@@ -53,15 +53,17 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -53,15 +53,17 @@ class Gentrap(val root: Configurable) extends QScript
/** Expression measurement modes */ /** Expression measurement modes */
// see the enumeration below for valid modes // see the enumeration below for valid modes
lazy val expMeasures = config("expression_measures", default = Nil).asStringList.map(value => lazy val expMeasures = new LazyCheck({
ExpMeasures.values.find(_.toString == Gentrap.camelize(value)) match { config("expression_measures", default = Nil).asStringList.map(value =>
case Some(v) => v ExpMeasures.values.find(_.toString == Gentrap.camelize(value)) match {
case _ => throw new IllegalArgumentException(s"'$value' is not a valid Expression measurement") case Some(v) => v
} case _ => throw new IllegalArgumentException(s"'$value' is not a valid Expression measurement")
).toSet }
).toSet
})
/** Strandedness modes */ /** Strandedness modes */
val strandProtocol: StrandProtocol.Value = { lazy val strandProtocol = new LazyCheck({
val value: String = config("strand_protocol") val value: String = config("strand_protocol")
StrandProtocol.values.find(_.toString == Gentrap.camelize(value)) match { StrandProtocol.values.find(_.toString == Gentrap.camelize(value)) match {
case Some(v) => v case Some(v) => v
...@@ -69,23 +71,25 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -69,23 +71,25 @@ class Gentrap(val root: Configurable) extends QScript
Logging.addError(s"'$other' is no strand_protocol or strand_protocol is not given") Logging.addError(s"'$other' is no strand_protocol or strand_protocol is not given")
StrandProtocol.NonSpecific StrandProtocol.NonSpecific
} }
} })
/** Whether to remove rRNA regions or not */ /** Whether to remove rRNA regions or not */
lazy val removeRibosomalReads: Boolean = config("remove_ribosomal_reads", default = false) lazy val removeRibosomalReads: Boolean = config("remove_ribosomal_reads", default = false)
/** Default pipeline config */ /** Default pipeline config */
override def defaults = Map( override def defaults = Map(
"htseqcount" -> Map("stranded" -> (strandProtocol match { "htseqcount" -> (if (strandProtocol.isSet) Map("stranded" -> (strandProtocol() match {
case StrandProtocol.NonSpecific => "no" case StrandProtocol.NonSpecific => "no"
case StrandProtocol.Dutp => "reverse" case StrandProtocol.Dutp => "reverse"
case otherwise => throw new IllegalStateException(otherwise.toString) case otherwise => throw new IllegalStateException(otherwise.toString)
})), }))
"cufflinks" -> Map("library_type" -> (strandProtocol match { else Map()),
"cufflinks" -> (if (strandProtocol.isSet) Map("library_type" -> (strandProtocol() match {
case StrandProtocol.NonSpecific => "fr-unstranded" case StrandProtocol.NonSpecific => "fr-unstranded"
case StrandProtocol.Dutp => "fr-firststrand" case StrandProtocol.Dutp => "fr-firststrand"
case otherwise => throw new IllegalStateException(otherwise.toString) case otherwise => throw new IllegalStateException(otherwise.toString)
})), }))
else Map()),
"merge_strategy" -> "preprocessmergesam", "merge_strategy" -> "preprocessmergesam",
"gsnap" -> Map( "gsnap" -> Map(
"novelsplicing" -> 1, "novelsplicing" -> 1,
...@@ -95,14 +99,14 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -95,14 +99,14 @@ class Gentrap(val root: Configurable) extends QScript
"shivavariantcalling" -> Map("variantcallers" -> List("varscan_cns_singlesample")), "shivavariantcalling" -> Map("variantcallers" -> List("varscan_cns_singlesample")),
"bammetrics" -> Map( "bammetrics" -> Map(
"transcript_refflat" -> annotationRefFlat, "transcript_refflat" -> annotationRefFlat,
"collectrnaseqmetrics" -> ((if (strandProtocol != null) Map( "collectrnaseqmetrics" -> ((if (strandProtocol.isSet) Map(
"strand_specificity" -> (strandProtocol match { "strand_specificity" -> (strandProtocol() match {
case StrandProtocol.NonSpecific => StrandSpecificity.NONE.toString case StrandProtocol.NonSpecific => StrandSpecificity.NONE.toString
case StrandProtocol.Dutp => StrandSpecificity.SECOND_READ_TRANSCRIPTION_STRAND.toString case StrandProtocol.Dutp => StrandSpecificity.SECOND_READ_TRANSCRIPTION_STRAND.toString
case otherwise => throw new IllegalStateException(otherwise.toString) case otherwise => throw new IllegalStateException(otherwise.toString)
}) })
) )
else Map()) ++ (if (ribosomalRefFlat != null) ribosomalRefFlat.map("ribosomal_intervals" -> _.getAbsolutePath).toList else Nil)) else Map()) ++ (if (ribosomalRefFlat.isSet) ribosomalRefFlat().map("ribosomal_intervals" -> _.getAbsolutePath).toList else Nil))
), ),
"cutadapt" -> Map("minimum_length" -> 20), "cutadapt" -> Map("minimum_length" -> 20),
// avoid conflicts when merging since the MarkDuplicate tags often cause merges to fail // avoid conflicts when merging since the MarkDuplicate tags often cause merges to fail
...@@ -115,22 +119,22 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -115,22 +119,22 @@ class Gentrap(val root: Configurable) extends QScript
) )
) )
lazy val fragmentsPerGene = if (expMeasures.contains(ExpMeasures.FragmentsPerGene)) lazy val fragmentsPerGene = if (expMeasures().contains(ExpMeasures.FragmentsPerGene))
Some(new FragmentsPerGene(this)) else None Some(new FragmentsPerGene(this)) else None
lazy val fragmentsPerExon = if (expMeasures.contains(ExpMeasures.FragmentsPerExon)) lazy val fragmentsPerExon = if (expMeasures().contains(ExpMeasures.FragmentsPerExon))
Some(new FragmentsPerExon(this)) else None Some(new FragmentsPerExon(this)) else None
lazy val baseCounts = if (expMeasures.contains(ExpMeasures.BaseCounts)) lazy val baseCounts = if (expMeasures().contains(ExpMeasures.BaseCounts))
Some(new BaseCounts(this)) else None Some(new BaseCounts(this)) else None
lazy val cufflinksBlind = if (expMeasures.contains(ExpMeasures.CufflinksBlind)) lazy val cufflinksBlind = if (expMeasures().contains(ExpMeasures.CufflinksBlind))
Some(new CufflinksBlind(this)) else None Some(new CufflinksBlind(this)) else None
lazy val cufflinksGuided = if (expMeasures.contains(ExpMeasures.CufflinksGuided)) lazy val cufflinksGuided = if (expMeasures().contains(ExpMeasures.CufflinksGuided))
Some(new CufflinksGuided(this)) else None Some(new CufflinksGuided(this)) else None
lazy val cufflinksStrict = if (expMeasures.contains(ExpMeasures.CufflinksStrict)) lazy val cufflinksStrict = if (expMeasures().contains(ExpMeasures.CufflinksStrict))
Some(new CufflinksStrict(this)) else None Some(new CufflinksStrict(this)) else None
def executedMeasures = (fragmentsPerGene :: fragmentsPerExon :: baseCounts :: cufflinksBlind :: def executedMeasures = (fragmentsPerGene :: fragmentsPerExon :: baseCounts :: cufflinksBlind ::
...@@ -148,14 +152,14 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -148,14 +152,14 @@ class Gentrap(val root: Configurable) extends QScript
/** Files that will be listed in the summary file */ /** Files that will be listed in the summary file */
override def summaryFiles: Map[String, File] = super.summaryFiles ++ Map( override def summaryFiles: Map[String, File] = super.summaryFiles ++ Map(
"annotation_refflat" -> annotationRefFlat "annotation_refflat" -> annotationRefFlat()
) ++ Map( ) ++ Map(
"ribosome_refflat" -> ribosomalRefFlat "ribosome_refflat" -> ribosomalRefFlat()
).collect { case (key, Some(value)) => key -> value } ).collect { case (key, Some(value)) => key -> value }
/** Pipeline settings shown in the summary file */ /** Pipeline settings shown in the summary file */
override def summarySettings: Map[String, Any] = super.summarySettings ++ Map( override def summarySettings: Map[String, Any] = super.summarySettings ++ Map(
"expression_measures" -> expMeasures.toList.map(_.toString), "expression_measures" -> expMeasures().toList.map(_.toString),
"strand_protocol" -> strandProtocol.toString, "strand_protocol" -> strandProtocol.toString,
"call_variants" -> shivaVariantcalling.isDefined, "call_variants" -> shivaVariantcalling.isDefined,
"remove_ribosomal_reads" -> removeRibosomalReads "remove_ribosomal_reads" -> removeRibosomalReads
...@@ -165,7 +169,7 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -165,7 +169,7 @@ class Gentrap(val root: Configurable) extends QScript
override def init(): Unit = { override def init(): Unit = {
super.init() super.init()
if (expMeasures.isEmpty) Logging.addError("'expression_measures' is missing in the config") if (expMeasures().isEmpty) Logging.addError("'expression_measures' is missing in the config")
executedMeasures.foreach(x => x.outputDir = new File(outputDir, "expresion_measures" + File.separator + x.name)) executedMeasures.foreach(x => x.outputDir = new File(outputDir, "expresion_measures" + File.separator + x.name))
} }
...@@ -197,7 +201,7 @@ class Gentrap(val root: Configurable) extends QScript ...@@ -197,7 +201,7 @@ class Gentrap(val root: Configurable) extends QScript
override lazy val preProcessBam = if (removeRibosomalReads) { override lazy val preProcessBam = if (removeRibosomalReads) {
val job = new WipeReads(qscript) val job = new WipeReads(qscript)
job.inputBam = bamFile.get job.inputBam = bamFile.get
ribosomalRefFlat.foreach(job.intervalFile = _) ribosomalRefFlat().foreach(job.intervalFile = _)
job.outputBam = createFile(".cleaned.bam") job.outputBam = createFile(".cleaned.bam")
job.discardedBam = createFile(".rrna.bam") job.discardedBam = createFile(".rrna.bam")
add(job) add(job)
......
...@@ -21,7 +21,7 @@ class BaseCounts(val root: Configurable) extends QScript with Measurement with A ...@@ -21,7 +21,7 @@ class BaseCounts(val root: Configurable) extends QScript with Measurement with A
baseCounter.bamFile = file baseCounter.bamFile = file
baseCounter.outputDir = new File(outputDir, id) baseCounter.outputDir = new File(outputDir, id)
baseCounter.prefix = id baseCounter.prefix = id
baseCounter.refFlat = annotationRefFlat baseCounter.refFlat = annotationRefFlat()
add(baseCounter) add(baseCounter)
id -> baseCounter id -> baseCounter
} }
......
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