Skip to content
Snippets Groups Projects
Commit 9789e9e6 authored by bow's avatar bow
Browse files

Add library pair information to sample metrics

parent 1de28c56
No related branches found
No related tags found
No related merge requests found
......@@ -351,11 +351,14 @@ class Gentrap(val root: Configurable) extends QScript with MultiSampleQScript wi
override def sampleDir: File = new File(outputDir, "sample_" + sampleId)
/** Summary stats of the sample */
def summaryStats: Map[String, Any] = Map()
def summaryStats: Map[String, Any] = Map(
"all_paired" -> allPaired,
"all_single" -> allSingle
)
/** Summary files of the sample */
def summaryFiles: Map[String, File] = Map(
"alignment" -> alnFile,
"alignment" -> alnFile
) ++ Map(
"gene_fragments_count" -> geneFragmentsCount,
"exon_fragments_count" -> exonFragmentsCount,
......
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