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

Added a stats class for bamstats

parent 91e15a2a
No related branches found
No related tags found
No related merge requests found
package nl.lumc.sasc.biopet.tools.bamstats
/**
* Created by pjvanthof on 05/07/16.
*/
case class Stats() {
var totalReads = 0L
def +(other: Stats): Stats = {
this.totalReads += other.totalReads
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