All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gorsat.InputSources.Hail.scala Maven / Gradle / Ivy

Go to download

GORpipe allows analysis of large sets of genomic and phenotypic tabular data using a declarative query language in a parallel execution engine

There is a newer version: 4.3.2
Show newest version
package gorsat.InputSources

import gorsat.Commands.{CommandArguments, InputSourceInfo, InputSourceParsingResult}
import gorsat.process.HailInputSource
import org.gorpipe.gor.session.GorContext

object Hail {
  class Hail() extends InputSourceInfo("Hail", CommandArguments("-n -u", "-p -s -b", 1, -1, true)) {
    override def processArguments(gorContext: GorContext, argString: String, iargs: Array[String], args: Array[String]): InputSourceParsingResult = {
      val hailInputSource = new HailInputSource(iargs)
      InputSourceParsingResult(hailInputSource, "", false)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy