it.polimi.genomics.spark.implementation.RegionsOperators.SelectRegions.ReadMEMRD.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GMQL-Spark Show documentation
Show all versions of GMQL-Spark Show documentation
Spark implementation of GMQL operators
The newest version!
package it.polimi.genomics.spark.implementation.RegionsOperators.SelectRegions
import it.polimi.genomics.core.DataTypes.GRECORD
import org.apache.spark.rdd.RDD
/**
* Created by abdulrahman on 22/05/2017.
*/
object ReadMEMRD {
def apply(regionDS:Any): RDD[GRECORD] = {
regionDS.asInstanceOf[RDD[GRECORD]]
}
}