Skip to content
Snippets Groups Projects
Commit db7d3643 authored by bow's avatar bow
Browse files

Use Option's constructor instead of Some directly

parent 1db23864
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class Fastqc(val root: Configurable) extends BiopetCommandLineFunction {
// otherwise, check if adapters are already present (depending on FastQC version)
case None =>
val defaultAdapters = getVersion match {
case "v0.11.2" => Some(new File(fastqcDir + "/Configuration/adapter_list.txt"))
case "v0.11.2" => Option(new File(fastqcDir + "/Configuration/adapter_list.txt"))
case _ => None
}
defaultAdapters.collect { case adp => config("adapters", default = adp) }
......
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