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

Style fix

parent d5808c90
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ class Fastqc(root: Configurable) extends nl.lumc.sasc.biopet.extensions.Fastqc(r
/** Allow reporting of all found (potentially adapter) sequences in the FastQC */
var sensitiveAdapterSearch: Boolean = config("sensitiveAdapterSearch", default = false)
var enableRCtrimming: Boolean = config("enableRCtrimming", default=false)
var enableRCtrimming: Boolean = config("enableRCtrimming", default = false)
/** Class for storing a single FastQC module result */
protected case class FastQCModule(name: String, status: String, lines: Seq[String])
......@@ -189,9 +189,10 @@ class Fastqc(root: Configurable) extends nl.lumc.sasc.biopet.extensions.Fastqc(r
val fromKnownList: Set[AdapterSequence] = (adapterSet ++ contaminantSet)
.filter(x => foundAdapterNames.exists(_.startsWith(x.name)))
val fromKnownListRC: Set[AdapterSequence] = if(enableRCtrimming) fromKnownList.map {
val fromKnownListRC: Set[AdapterSequence] = if (enableRCtrimming) fromKnownList.map {
x => AdapterSequence(x.name + "_RC", reverseComplement(x.seq))
} else Set.empty
}
else Set.empty
// list all sequences found by FastQC
val fastQCFoundSequences: Seq[AdapterSequence] = if (sensitiveAdapterSearch) {
......
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