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

Fixed summary jobs

parent 162f02ed
No related branches found
No related tags found
No related merge requests found
......@@ -67,5 +67,7 @@ class BaseCounts(val root: Configurable) extends QScript with Measurement with A
addTableAndHeatmap(jobs.values.map(_.strandedMetaExonCounts).toList, "strandedMetaExonCounts")
addTableAndHeatmap(jobs.values.map(_.strandedSenseMetaExonCounts).toList, "strandedSenseMetaExonCounts")
addTableAndHeatmap(jobs.values.map(_.strandedAntiSenseMetaExonCounts).toList, "strandedAntiSenseMetaExonCounts")
addSummaryJobs()
}
}
......@@ -42,6 +42,8 @@ trait CufflinksMeasurement extends QScript with Measurement {
addHeatmapJob(mergeGenesFpkmTable, genesFpkmHeatmap, "genes_fpkm")
addHeatmapJob(mergeIsoFormFpkmTable, isoFormFpkmHeatmap, "iso_form_fpkm")
addSummaryJobs()
}
def mergeGenesFpkmTable: File = new File(outputDir, s"$name.genes.fpkm.tsv")
......
......@@ -32,6 +32,8 @@ class FragmentsPerGene(val root: Configurable) extends QScript with Measurement
addMergeTableJob(jobs.values.map(_.output).toList, mergedTable, "fragments_per_gene", s".$name.counts")
addHeatmapJob(mergedTable, heatmap, "fragments_per_gene")
addSummaryJobs()
}
def mergedTable = new File(outputDir, s"$name.fragments_per_gene.tsv")
......
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