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

fixed output file of basecounter

parent 7eb2bf8d
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,6 @@ class BaseCounter(val root: Configurable) extends ToolCommandFunction {
def strandedAntiSenseMetaExonCounts = new File(outputDir, s"$prefix.base.metaexons.stranded.antisense.counts")
override def beforeGraph(): Unit = {
super.beforeGraph()
outputFiles ++= List(transcriptTotalCounts, transcriptTotalSenseCounts, transcriptTotalAntiSenseCounts,
transcriptExonicCounts, transcriptExonicSenseCounts, transcriptExonicAntiSenseCounts,
transcriptIntronicCounts, transcriptIntronicSenseCounts, transcriptIntronicAntiSenseCounts,
......@@ -90,6 +89,9 @@ class BaseCounter(val root: Configurable) extends ToolCommandFunction {
mergeIntronCounts, mergeIntronSenseCounts, mergeIntronAntiSenseCounts,
nonStrandedMetaExonCounts,
strandedMetaExonCounts, strandedSenseMetaExonCounts, strandedAntiSenseMetaExonCounts)
jobOutputFile = new File(outputDir, s".$prefix.basecounter.out")
super.beforeGraph()
}
override def cmdLine = super.cmdLine +
......
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