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

polyjuice.phial.WebServerConfig.scala Maven / Gradle / Ivy

The newest version!
package polyjuice.phial

import java.nio.file.Paths

import com.typesafe.config.ConfigFactory

object WebServerConfig {

  private[this] val config = ConfigFactory.load()

  val ServicePort = config.getInt("service.port")
  val ServiceHost = config.getString("service.host")
  val GeneList = config.getString("geneList").split(',')
  val EnsemblBuild = config.getString("ensembl.build")
  val EnsemblCdsFastaPath = Paths.get(config.getString("ensembl.cdsFastaPath"))
  val EnsemblFeatureGff3Path = Paths.get(config.getString("ensembl.featureGff3Path"))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy