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

Change val name

parent 5ff11a3c
No related branches found
No related tags found
No related merge requests found
......@@ -38,13 +38,13 @@ class FragmentsPerGene(val root: Configurable) extends QScript with Measurement
case (id, file) =>
val bamFile = if (sortOnId) {
val samtoolsSort = new SortSam(this)
samtoolsSort.input = file
samtoolsSort.output = swapExt(outputDir, file, ".bam", ".idsorted.bam")
samtoolsSort.sortOrder = "queryname"
samtoolsSort.isIntermediate = true
add(samtoolsSort)
samtoolsSort.output
val sortSam = new SortSam(this)
sortSam.input = file
sortSam.output = swapExt(outputDir, file, ".bam", ".idsorted.bam")
sortSam.sortOrder = "queryname"
sortSam.isIntermediate = true
add(sortSam)
sortSam.output
} else file
val job = new HtseqCount(this)
......
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