Skip to content
Snippets Groups Projects
Commit 6f58b7e2 authored by Wai Yi Leung's avatar Wai Yi Leung
Browse files

Adding krakenreport2json to gears pipeline

parent 45b54bc6
No related branches found
No related tags found
No related merge requests found
...@@ -85,8 +85,7 @@ object KrakenReportToJson extends ToolCommand { ...@@ -85,8 +85,7 @@ object KrakenReportToJson extends ToolCommand {
.parse(args, Args()) .parse(args, Args())
.getOrElse(sys.exit(1)) .getOrElse(sys.exit(1))
def parseLine(krakenRawHit: String): Map[Long, KrakenHit] = {
def parseLine( krakenRawHit: String ): Map[Long, KrakenHit] = {
val values: Array[String] = krakenRawHit.stripLineEnd.split("\t") val values: Array[String] = krakenRawHit.stripLineEnd.split("\t")
val scientificName: String = values(5) val scientificName: String = values(5)
val cladeLevel = spacePattern.findFirstIn(scientificName).getOrElse("").length / 2 val cladeLevel = spacePattern.findFirstIn(scientificName).getOrElse("").length / 2
...@@ -111,7 +110,7 @@ object KrakenReportToJson extends ToolCommand { ...@@ -111,7 +110,7 @@ object KrakenReportToJson extends ToolCommand {
def reportToJson(reportRaw: File): String = { def reportToJson(reportRaw: File): String = {
val reader = Source.fromFile(reportRaw) val reader = Source.fromFile(reportRaw)
// val lines = reader.getLines().toList.filter(!_.isEmpty) // val lines = reader.getLines().toList.filter(!_.isEmpty)
/* /*
* http://ccb.jhu.edu/software/kraken/MANUAL.html * http://ccb.jhu.edu/software/kraken/MANUAL.html
...@@ -125,11 +124,11 @@ object KrakenReportToJson extends ToolCommand { ...@@ -125,11 +124,11 @@ object KrakenReportToJson extends ToolCommand {
* */ * */
val lines = reader.getLines() val lines = reader.getLines()
.map(line => parseLine(line)) .map(line => parseLine(line))
.filter(p => p.head._2.cladeSize > 0) .filter(p => p.head._2.cladeSize > 0)
.foldLeft(Map.empty[Long, KrakenHit])( (a,b) => { .foldLeft(Map.empty[Long, KrakenHit])((a, b) => {
a + b.head a + b.head
} ) })
lines.keys.foreach(k => { lines.keys.foreach(k => {
// append itself to the children attribute of the parent // append itself to the children attribute of the parent
......
...@@ -22,6 +22,7 @@ import nl.lumc.sasc.biopet.extensions.picard.SamToFastq ...@@ -22,6 +22,7 @@ import nl.lumc.sasc.biopet.extensions.picard.SamToFastq
import nl.lumc.sasc.biopet.extensions.sambamba.SambambaView import nl.lumc.sasc.biopet.extensions.sambamba.SambambaView
import nl.lumc.sasc.biopet.extensions.tools.FastqSync import nl.lumc.sasc.biopet.extensions.tools.FastqSync
import nl.lumc.sasc.biopet.utils.config.Configurable import nl.lumc.sasc.biopet.utils.config.Configurable
import nl.lumc.sasc.biopet.tools.KrakenReportToJson
import org.broadinstitute.gatk.queue.QScript import org.broadinstitute.gatk.queue.QScript
/** /**
...@@ -113,6 +114,11 @@ class Gears(val root: Configurable) extends QScript with SummaryQScript { qscrip ...@@ -113,6 +114,11 @@ class Gears(val root: Configurable) extends QScript with SummaryQScript { qscrip
krakenReport.output = new File(outputDir, s"$outputName.krkn.full") krakenReport.output = new File(outputDir, s"$outputName.krkn.full")
add(krakenReport) add(krakenReport)
val krakenReportJSON = new KrakenReportToJson(qscript)
krakenReportJSON.input = krakenReport.output
krakenReportJSON.output = new File(outputDir, s"$outputName.krkn.json")
add(krakenReportJSON)
addSummaryJobs() addSummaryJobs()
} }
......
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