write_xlsx | R Documentation |
This function exports a GWAS Catalog object to Microsoft Excel xlsx file. Each table (slot) is saved in its own sheet.
write_xlsx(x, file = stop("`file` must be specified"))
x |
A studies, associations, variants or traits object. |
file |
A file name to write to. |
Although this function is run for its side effect of writing an xlsx file, the path to the exported file is returned.
# Initial setup
.old_wd <- setwd(tempdir())
# Save an `associations` object, e.g. `associations_ex01`, to xlsx.
write_xlsx(associations_ex01, "associations.xlsx")
# Cleanup
unlink("associations.xlsx")
setwd(.old_wd)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.