You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in org.bdgenomics.adam.rdd.variant.GenotypeRDDSuite:
code:
sparkTest("use broadcast join to pull down genotypes mapped to targets") {
val genotypesPath = testFile("small.vcf")
val targetsPath = testFile("small.1.bed")
val genotypes = sc.loadGenotypes(genotypesPath)
genotypes.rdd.foreach(println)
val targets = sc.loadFeatures(targetsPath)
val jRdd = genotypes.broadcastRegionJoin(targets)
assert(jRdd.rdd.count === 9L)
}
loadGenotypes three time in ADAM
Should it be one time?
in org.bdgenomics.adam.rdd.variant.GenotypeRDDSuite:
code:
result:
The text was updated successfully, but these errors were encountered: