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

Merge remote-tracking branch 'remotes/origin/develop' into feature-snp_test

parents 51f89433 180bb97e
No related branches found
No related tags found
No related merge requests found
Showing
with 30 additions and 30 deletions
...@@ -138,7 +138,7 @@ Setting up the pipeline is done within the pipeline itself, fine-tuning is alway ...@@ -138,7 +138,7 @@ Setting up the pipeline is done within the pipeline itself, fine-tuning is alway
For our new pipeline, one should setup the (default) config options. For our new pipeline, one should setup the (default) config options.
Since our pipeline is called `HelloPipeline`, the root of the configoptions will called `hellopipeline` (lowercaps). Since our pipeline is called `HelloPipeline`, the root of the namespace for our pipeline will be called `hellopipeline` (lowercaps).
```json ```json
{ {
......
...@@ -20,7 +20,7 @@ We assume here that the cluster will amplify those values by the number of threa ...@@ -20,7 +20,7 @@ We assume here that the cluster will amplify those values by the number of threa
- **residentFactor**: 1.2 - **residentFactor**: 1.2
- **vmemFactor**: 1.4, 2.0 for java jobs - **vmemFactor**: 1.4, 2.0 for java jobs
This are de defaults of biopet but each extension in biopet can set their own defaults. As example the *bwa mem* tools This are the defaults of biopet but each extension in biopet can set their own defaults. As example the *bwa mem* tools
use by default 8 `threads` and `core_memory` of 6.0. use by default 8 `threads` and `core_memory` of 6.0.
### Config ### Config
......
...@@ -34,7 +34,7 @@ Please refer [to our mapping pipeline](mapping.md) for information about how the ...@@ -34,7 +34,7 @@ Please refer [to our mapping pipeline](mapping.md) for information about how the
#### Required configuration values #### Required configuration values
| Submodule | Name | Type | Default | Function | | namespace | Name | Type | Default | Function |
| --------- | ---- | ---- | ------- | -------- | | --------- | ---- | ---- | ------- | -------- |
| shiva | variantcallers | List[String] | | Which variant caller to use | | shiva | variantcallers | List[String] | | Which variant caller to use |
| - | output_dir | Path | Path to output directory | | - | output_dir | Path | Path to output directory |
...@@ -44,7 +44,7 @@ Please refer [to our mapping pipeline](mapping.md) for information about how the ...@@ -44,7 +44,7 @@ Please refer [to our mapping pipeline](mapping.md) for information about how the
Specific configuration options additional to Basty are: Specific configuration options additional to Basty are:
| Submodule | Name | Type | Default | Function | | namespace | Name | Type | Default | Function |
| --------- | ---- | ---- | ------- | -------- | | --------- | ---- | ---- | ------- | -------- |
| raxml | seed | Integer | 12345 | RAxML Random seed| | raxml | seed | Integer | 12345 | RAxML Random seed|
| raxml | raxml_ml_model | String | GTRGAMMAX | RAxML model | | raxml | raxml_ml_model | String | GTRGAMMAX | RAxML model |
......
...@@ -105,7 +105,7 @@ To view all possible config options please navigate to our Gitlab wiki page ...@@ -105,7 +105,7 @@ To view all possible config options please navigate to our Gitlab wiki page
<a href="https://git.lumc.nl/biopet/biopet/wikis/GATK-Variantcalling-Pipeline" target="_blank">Config</a> <a href="https://git.lumc.nl/biopet/biopet/wikis/GATK-Variantcalling-Pipeline" target="_blank">Config</a>
### Required settings ### Required settings
| Namespace | Name | Type | Default | Function | | Confignamespace | Name | Type | Default | Function |
| ----------- | ---- | ---- | ------- | -------- | | ----------- | ---- | ---- | ------- | -------- |
| - | output_dir | String | | Path to output directory | | - | output_dir | String | | Path to output directory |
| Shiva | variantcallers | List[String] | | Which variant callers to use | | Shiva | variantcallers | List[String] | | Which variant callers to use |
...@@ -113,7 +113,7 @@ To view all possible config options please navigate to our Gitlab wiki page ...@@ -113,7 +113,7 @@ To view all possible config options please navigate to our Gitlab wiki page
### Config options ### Config options
| Namespace | Name | Type | Default | Function | | ConfignNamespace | Name | Type | Default | Function |
| ----------- | ---- | ----- | ------- | -------- | | ----------- | ---- | ----- | ------- | -------- |
| shiva | species | String | unknown_species | Name of species, like H.sapiens | | shiva | species | String | unknown_species | Name of species, like H.sapiens |
| shiva | reference_name | String | unknown_reference_name | Name of reference, like hg19 | | shiva | reference_name | String | unknown_reference_name | Name of reference, like hg19 |
...@@ -161,7 +161,7 @@ The other mode, `library_variantcalling`, will call simultaneously call all libr ...@@ -161,7 +161,7 @@ The other mode, `library_variantcalling`, will call simultaneously call all libr
The config for these therefore is: The config for these therefore is:
| Namespace | Name | Type | Default | Function | | namespace | Name | Type | Default | Function |
| ----------- | ---- | ---- | ------- | -------- | | ----------- | ---- | ---- | ------- | -------- |
| shiva | multisample_variantcalling | Boolean | true | Default, multisample calling | | shiva | multisample_variantcalling | Boolean | true | Default, multisample calling |
| shiva | single_sample_variantcalling | Boolean | false | Not-recommended, single sample, merged bam | | shiva | single_sample_variantcalling | Boolean | false | Not-recommended, single sample, merged bam |
......
...@@ -26,7 +26,7 @@ class VariantRecalibrator(val root: Configurable) extends org.broadinstitute.gat ...@@ -26,7 +26,7 @@ class VariantRecalibrator(val root: Configurable) extends org.broadinstitute.gat
object VariantRecalibrator { object VariantRecalibrator {
def apply(root: Configurable, input: File, recal_file: File, tranches_file: File, indel: Boolean = false): VariantRecalibrator = { def apply(root: Configurable, input: File, recal_file: File, tranches_file: File, indel: Boolean = false): VariantRecalibrator = {
val vr = new VariantRecalibrator(root) { val vr = new VariantRecalibrator(root) {
override lazy val configName = "variantrecalibrator" override lazy val configNamespace = "variantrecalibrator"
override def configPath: List[String] = (if (indel) "indel" else "snp") :: super.configPath override def configPath: List[String] = (if (indel) "indel" else "snp") :: super.configPath
if (indel) { if (indel) {
mode = org.broadinstitute.gatk.tools.walkers.variantrecalibration.VariantRecalibratorArgumentCollection.Mode.INDEL mode = org.broadinstitute.gatk.tools.walkers.variantrecalibration.VariantRecalibratorArgumentCollection.Mode.INDEL
......
...@@ -20,15 +20,15 @@ class Shiva(val root: Configurable) extends QScript with ShivaTrait { ...@@ -20,15 +20,15 @@ class Shiva(val root: Configurable) extends QScript with ShivaTrait {
qscript => qscript =>
def this() = this(null) def this() = this(null)
/** Make variantcalling submodule, this with the gatk modes in there */ /** Make variantcalling namespace, this with the gatk modes in there */
override def makeVariantcalling(multisample: Boolean = false) = { override def makeVariantcalling(multisample: Boolean = false) = {
if (multisample) new ShivaVariantcalling(qscript) { if (multisample) new ShivaVariantcalling(qscript) {
override def namePrefix = "multisample" override def namePrefix = "multisample"
override def configName = "shivavariantcalling" override def configNamespace = "shivavariantcalling"
override def configPath: List[String] = super.configPath ::: "multisample" :: Nil override def configPath: List[String] = super.configPath ::: "multisample" :: Nil
} }
else new ShivaVariantcalling(qscript) { else new ShivaVariantcalling(qscript) {
override def configName = "shivavariantcalling" override def configNamespace = "shivavariantcalling"
} }
} }
......
...@@ -27,7 +27,7 @@ import org.testng.annotations.{ DataProvider, Test } ...@@ -27,7 +27,7 @@ import org.testng.annotations.{ DataProvider, Test }
class ShivaTest extends TestNGSuite with Matchers { class ShivaTest extends TestNGSuite with Matchers {
def initPipeline(map: Map[String, Any]): Shiva = { def initPipeline(map: Map[String, Any]): Shiva = {
new Shiva() { new Shiva() {
override def configName = "shiva" override def configNamespace = "shiva"
override def globalConfig = new Config(ConfigUtils.mergeMaps(map, ShivaTest.config)) override def globalConfig = new Config(ConfigUtils.mergeMaps(map, ShivaTest.config))
qSettings = new QSettings qSettings = new QSettings
qSettings.runName = "test" qSettings.runName = "test"
......
...@@ -29,7 +29,7 @@ import scala.collection.mutable.ListBuffer ...@@ -29,7 +29,7 @@ import scala.collection.mutable.ListBuffer
class ShivaVariantcallingTest extends TestNGSuite with Matchers { class ShivaVariantcallingTest extends TestNGSuite with Matchers {
def initPipeline(map: Map[String, Any]): ShivaVariantcalling = { def initPipeline(map: Map[String, Any]): ShivaVariantcalling = {
new ShivaVariantcalling() { new ShivaVariantcalling() {
override def configName = "shivavariantcalling" override def configNamespace = "shivavariantcalling"
override def globalConfig = new Config(ConfigUtils.mergeMaps(map, ShivaVariantcallingTest.config)) override def globalConfig = new Config(ConfigUtils.mergeMaps(map, ShivaVariantcallingTest.config))
qSettings = new QSettings qSettings = new QSettings
qSettings.runName = "test" qSettings.runName = "test"
......
...@@ -37,7 +37,7 @@ class BamMetricsTest extends TestNGSuite with Matchers { ...@@ -37,7 +37,7 @@ class BamMetricsTest extends TestNGSuite with Matchers {
def initPipeline(map: Map[String, Any]): BamMetrics = { def initPipeline(map: Map[String, Any]): BamMetrics = {
new BamMetrics() { new BamMetrics() {
override def configName = "bammetrics" override def configNamespace = "bammetrics"
override def globalConfig = new Config(map) override def globalConfig = new Config(map)
qSettings = new QSettings qSettings = new QSettings
qSettings.runName = "test" qSettings.runName = "test"
......
...@@ -131,11 +131,11 @@ trait BastyTrait extends MultiSampleQScript { ...@@ -131,11 +131,11 @@ trait BastyTrait extends MultiSampleQScript {
raxmlMl.p = Some(seed) raxmlMl.p = Some(seed)
raxmlMl.n = outputName + "_ml" raxmlMl.n = outputName + "_ml"
raxmlMl.w = dirSufixRaxml raxmlMl.w = dirSufixRaxml
raxmlMl.N = config("ml_runs", default = 20, submodule = "raxml") raxmlMl.N = config("ml_runs", default = 20, namespace = "raxml")
add(raxmlMl) add(raxmlMl)
val r = new scala.util.Random(seed) val r = new scala.util.Random(seed)
val numBoot = config("boot_runs", default = 100, submodule = "raxml").asInt val numBoot = config("boot_runs", default = 100, namespace = "raxml").asInt
val bootList = for (t <- 0 until numBoot) yield { val bootList = for (t <- 0 until numBoot) yield {
val raxmlBoot = new Raxml(this) val raxmlBoot = new Raxml(this)
raxmlBoot.input = variants raxmlBoot.input = variants
......
...@@ -30,7 +30,7 @@ import scala.collection.JavaConversions._ ...@@ -30,7 +30,7 @@ import scala.collection.JavaConversions._
/** Biopet command line trait to auto check executable and cluster values */ /** Biopet command line trait to auto check executable and cluster values */
trait BiopetCommandLineFunction extends CommandLineResources { biopetFunction => trait BiopetCommandLineFunction extends CommandLineResources { biopetFunction =>
analysisName = configName analysisName = configNamespace
@Input(doc = "deps", required = false) @Input(doc = "deps", required = false)
var deps: List[File] = Nil var deps: List[File] = Nil
......
...@@ -19,7 +19,7 @@ import org.broadinstitute.gatk.queue.function.JavaCommandLineFunction ...@@ -19,7 +19,7 @@ import org.broadinstitute.gatk.queue.function.JavaCommandLineFunction
/** Biopet commandline class for java based programs */ /** Biopet commandline class for java based programs */
trait BiopetJavaCommandLineFunction extends JavaCommandLineFunction with BiopetCommandLineFunction { trait BiopetJavaCommandLineFunction extends JavaCommandLineFunction with BiopetCommandLineFunction {
executable = config("java", default = "java", submodule = "java", freeVar = false) executable = config("java", default = "java", namespace = "java", freeVar = false)
javaGCThreads = config("java_gc_threads", default = 4) javaGCThreads = config("java_gc_threads", default = 4)
javaGCHeapFreeLimit = config("java_gc_heap_freelimit", default = 10) javaGCHeapFreeLimit = config("java_gc_heap_freelimit", default = 10)
......
...@@ -74,7 +74,7 @@ class BiopetPipe(val commands: List[BiopetCommandLineFunction]) extends BiopetCo ...@@ -74,7 +74,7 @@ class BiopetPipe(val commands: List[BiopetCommandLineFunction]) extends BiopetCo
override def defaultThreads = 0 override def defaultThreads = 0
val root: Configurable = commands.head.root val root: Configurable = commands.head.root
override def configName = commands.map(_.configName).mkString("-") override def configNamespace = commands.map(_.configNamespace).mkString("-")
def cmdLine: String = { def cmdLine: String = {
"(" + commands.head.cmdLine + (if (commands.head.stdinFile.isDefined) { "(" + commands.head.cmdLine + (if (commands.head.stdinFile.isDefined) {
" < " + required(commands.head.stdinFile.map(_.getAbsoluteFile)) " < " + required(commands.head.stdinFile.map(_.getAbsoluteFile))
......
...@@ -31,7 +31,7 @@ trait BiopetQScript extends Configurable with GatkLogging { qscript: QScript => ...@@ -31,7 +31,7 @@ trait BiopetQScript extends Configurable with GatkLogging { qscript: QScript =>
@Argument(doc = "JSON / YAML config file(s)", fullName = "config_file", shortName = "config", required = false) @Argument(doc = "JSON / YAML config file(s)", fullName = "config_file", shortName = "config", required = false)
val configfiles: List[File] = Nil val configfiles: List[File] = Nil
@Argument(doc = "Config values, value should be formatted like 'key=value' or 'path:path:key=value'", fullName = "config_value", shortName = "cv", required = false) @Argument(doc = "Config values, value should be formatted like 'key=value' or 'namespace:namespace:key=value'", fullName = "config_value", shortName = "cv", required = false)
val configValues: List[String] = Nil val configValues: List[String] = Nil
/** Output directory of pipeline */ /** Output directory of pipeline */
......
...@@ -88,7 +88,7 @@ trait CommandLineResources extends CommandLineFunction with Configurable { ...@@ -88,7 +88,7 @@ trait CommandLineResources extends CommandLineFunction with Configurable {
else residentLimit = Some((_coreMemory + (0.5 * retryMultipler)) * residentFactor) else residentLimit = Some((_coreMemory + (0.5 * retryMultipler)) * residentFactor)
if (!config.contains("vmem")) vmem = Some((_coreMemory * (vmemFactor + (0.5 * retryMultipler))) + "G") if (!config.contains("vmem")) vmem = Some((_coreMemory * (vmemFactor + (0.5 * retryMultipler))) + "G")
jobName = configName + ":" + (if (firstOutput != null) firstOutput.getName else jobOutputFile) jobName = configNamespace + ":" + (if (firstOutput != null) firstOutput.getName else jobOutputFile)
} }
override def setupRetry(): Unit = { override def setupRetry(): Unit = {
......
...@@ -70,7 +70,7 @@ trait MultiSampleQScript extends SummaryQScript { qscript: QScript => ...@@ -70,7 +70,7 @@ trait MultiSampleQScript extends SummaryQScript { qscript: QScript =>
def libDir = new File(sampleDir, "lib_" + libId) def libDir = new File(sampleDir, "lib_" + libId)
lazy val libTags: Map[String, Any] = lazy val libTags: Map[String, Any] =
config("tags", default = Map(), freeVar = false, submodule = libId, path = List("samples", sampleId, "libraries")) config("tags", default = Map(), freeVar = false, namespace = libId, path = List("samples", sampleId, "libraries"))
def sampleId = sample.sampleId def sampleId = sample.sampleId
...@@ -91,7 +91,7 @@ trait MultiSampleQScript extends SummaryQScript { qscript: QScript => ...@@ -91,7 +91,7 @@ trait MultiSampleQScript extends SummaryQScript { qscript: QScript =>
val libraries: Map[String, Library] = libIds.map(id => id -> makeLibrary(id)).toMap val libraries: Map[String, Library] = libIds.map(id => id -> makeLibrary(id)).toMap
lazy val sampleTags: Map[String, Any] = lazy val sampleTags: Map[String, Any] =
config("tags", default = Map(), freeVar = false, submodule = sampleId, path = List("samples")) config("tags", default = Map(), freeVar = false, namespace = sampleId, path = List("samples"))
lazy val gender = { lazy val gender = {
val g: Option[String] = sampleTags.get("gender").map(_.toString) val g: Option[String] = sampleTags.get("gender").map(_.toString)
......
...@@ -36,7 +36,7 @@ object WriteDependencies extends Logging with Configurable { ...@@ -36,7 +36,7 @@ object WriteDependencies extends Logging with Configurable {
val cache: mutable.Map[String, Int] = mutable.Map() val cache: mutable.Map[String, Int] = mutable.Map()
for (function <- functions) { for (function <- functions) {
val baseName = function match { val baseName = function match {
case f: Configurable => f.configName case f: Configurable => f.configNamespace
case f => f.getClass.getSimpleName case f => f.getClass.getSimpleName
} }
cache += baseName -> (cache.getOrElse(baseName, 0) + 1) cache += baseName -> (cache.getOrElse(baseName, 0) + 1)
......
...@@ -24,7 +24,7 @@ trait PythonCommandLineFunction extends BiopetCommandLineFunction { ...@@ -24,7 +24,7 @@ trait PythonCommandLineFunction extends BiopetCommandLineFunction {
@Input(doc = "Python script", required = false) @Input(doc = "Python script", required = false)
var pythonScript: File = _ var pythonScript: File = _
executable = config("exe", default = "python", submodule = "python", freeVar = false) executable = config("exe", default = "python", namespace = "python", freeVar = false)
protected var pythonScriptName: String = _ protected var pythonScriptName: String = _
......
...@@ -37,7 +37,7 @@ trait SummaryQScript extends BiopetQScript { qscript: QScript => ...@@ -37,7 +37,7 @@ trait SummaryQScript extends BiopetQScript { qscript: QScript =>
private[summary] var summaryQScripts: List[SummaryQScript] = Nil private[summary] var summaryQScripts: List[SummaryQScript] = Nil
/** Name of the pipeline in the summary */ /** Name of the pipeline in the summary */
var summaryName = configName var summaryName = configNamespace
/** Must return a map with used settings for this pipeline */ /** Must return a map with used settings for this pipeline */
def summarySettings: Map[String, Any] def summarySettings: Map[String, Any]
...@@ -103,7 +103,7 @@ trait SummaryQScript extends BiopetQScript { qscript: QScript => ...@@ -103,7 +103,7 @@ trait SummaryQScript extends BiopetQScript { qscript: QScript =>
if (writeSummary.md5sum) { if (writeSummary.md5sum) {
if (!SummaryQScript.md5sumCache.contains(file)) { if (!SummaryQScript.md5sumCache.contains(file)) {
val md5sum = new Md5sum(this) { val md5sum = new Md5sum(this) {
override def configName = "md5sum" override def configNamespace = "md5sum"
override def cmdLine: String = super.cmdLine + " || " + override def cmdLine: String = super.cmdLine + " || " +
required("echo") + required("error_on_capture " + input.toString) + " > " + required(output) required("echo") + required("error_on_capture " + input.toString) + " > " + required(output)
......
...@@ -75,16 +75,16 @@ class WriteSummary(val root: Configurable) extends InProcessFunction with Config ...@@ -75,16 +75,16 @@ class WriteSummary(val root: Configurable) extends InProcessFunction with Config
def fetchVersion(f: QFunction): Option[(String, Any)] = { def fetchVersion(f: QFunction): Option[(String, Any)] = {
f match { f match {
case f: BiopetJavaCommandLineFunction with Version => case f: BiopetJavaCommandLineFunction with Version =>
Some(f.configName -> Map("version" -> f.getVersion.getOrElse(None), Some(f.configNamespace -> Map("version" -> f.getVersion.getOrElse(None),
"java_md5" -> BiopetCommandLineFunction.executableMd5Cache.getOrElse(f.executable, None), "java_md5" -> BiopetCommandLineFunction.executableMd5Cache.getOrElse(f.executable, None),
"java_version" -> f.getJavaVersion, "java_version" -> f.getJavaVersion,
"jar_path" -> f.jarFile)) "jar_path" -> f.jarFile))
case f: BiopetCommandLineFunction with Version => case f: BiopetCommandLineFunction with Version =>
Some(f.configName -> Map("version" -> f.getVersion.getOrElse(None), Some(f.configNamespace -> Map("version" -> f.getVersion.getOrElse(None),
"md5" -> BiopetCommandLineFunction.executableMd5Cache.getOrElse(f.executable, None), "md5" -> BiopetCommandLineFunction.executableMd5Cache.getOrElse(f.executable, None),
"path" -> f.executable)) "path" -> f.executable))
case f: Configurable with Version => case f: Configurable with Version =>
Some(f.configName -> Map("version" -> f.getVersion.getOrElse(None))) Some(f.configNamespace -> Map("version" -> f.getVersion.getOrElse(None)))
case _ => None case _ => None
} }
} }
......
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