au.csiro.pbdava.ssparkle.common.arg4j.AppRunner2.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of variant-spark_2.11 Show documentation
Show all versions of variant-spark_2.11 Show documentation
Genomic variants interpretation toolkit
The newest version!
package au.csiro.pbdava.ssparkle.common.arg4j
import au.csiro.sparkle.cmd.CmdApp
trait AppRunner2[A <: CmdApp] {
def main[T: Manifest](args: Array[String]) {
CmdApp.runApp(args, manifest[T].runtimeClass.newInstance().asInstanceOf[CmdApp])
}
}