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

Fix "/" format errors

parent a93c9319
No related branches found
No related tags found
No related merge requests found
...@@ -172,7 +172,7 @@ object Fastqc { ...@@ -172,7 +172,7 @@ object Fastqc {
if (filename.endsWith(".gzip")) filename = filename.substring(0, filename.size - 5) if (filename.endsWith(".gzip")) filename = filename.substring(0, filename.size - 5)
if (filename.endsWith(".fastq")) filename = filename.substring(0, filename.size - 6) if (filename.endsWith(".fastq")) filename = filename.substring(0, filename.size - 6)
//if (filename.endsWith(".fq")) filename = filename.substring(0,filename.size - 3) //if (filename.endsWith(".fq")) filename = filename.substring(0,filename.size - 3)
fastqcCommand.output = new File(outDir, "/" + filename + "_fastqc.zip") fastqcCommand.output = new File(outDir, filename + "_fastqc.zip")
fastqcCommand.beforeGraph fastqcCommand.beforeGraph
fastqcCommand fastqcCommand
} }
......
...@@ -127,7 +127,7 @@ class Mapping(val root: Configurable) extends QScript with BiopetQScript { ...@@ -127,7 +127,7 @@ class Mapping(val root: Configurable) extends QScript with BiopetQScript {
def biopetScript() { def biopetScript() {
if (!skipFlexiprep) { if (!skipFlexiprep) {
flexiprep.outputDir = new File(outputDir, "flexiprep" + File.separator) flexiprep.outputDir = new File(outputDir, "flexiprep")
flexiprep.input_R1 = input_R1 flexiprep.input_R1 = input_R1
flexiprep.input_R2 = input_R2 flexiprep.input_R2 = input_R2
flexiprep.sampleId = this.sampleId flexiprep.sampleId = this.sampleId
...@@ -146,7 +146,7 @@ class Mapping(val root: Configurable) extends QScript with BiopetQScript { ...@@ -146,7 +146,7 @@ class Mapping(val root: Configurable) extends QScript with BiopetQScript {
} }
var chunks: Map[File, (String, String)] = Map() var chunks: Map[File, (String, String)] = Map()
if (chunking) for (t <- 1 to numberChunks.getOrElse(1)) { if (chunking) for (t <- 1 to numberChunks.getOrElse(1)) {
val chunkDir = new File(outputDir, "chunks/" + t + "/") val chunkDir = new File(outputDir, "chunks" + File.separator + t)
chunks += (chunkDir -> (removeGz(chunkDir + input_R1.getName), chunks += (chunkDir -> (removeGz(chunkDir + input_R1.getName),
if (paired) removeGz(chunkDir + input_R2.get.getName) else "")) if (paired) removeGz(chunkDir + input_R2.get.getName) else ""))
} }
......
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