au.csiro.sparkle.common.ScalaUtils 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.sparkle.common;
import scala.Tuple2;
public final class ScalaUtils {
public static Tuple2 t2(K k, V v) {
return new Tuple2(k,v);
}
}