hail_entries {sparkhail} | R Documentation |
This function retrieves the entries fields from a hail dataframe and explodes the columns call, dp and gq.
hail_entries(df)
df |
A hail dataframe. |
A spark dataframe.
## Not run:
library(sparklyr)
sc <- spark_connect(master = "local", version = "2.4", config = hail_config())
hail_context(sc) %>%
hail_read_matrix(system.file("extdata/1kg.mt", package = "sparkhail")) %>%
hail_dataframe() %>%
hail_entries()
## End(Not run)