-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dccccd0
commit 9e82eb8
Showing
5 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#' Export a GWAS Catalog object to xlsx | ||
#' | ||
#' This function exports a GWAS Catalog object to Microsoft Excel xlsx file. | ||
#' Each table (slot) is saved in its own sheet. | ||
#' | ||
#' @param x A \linkS4class{studies}, \linkS4class{associations}, | ||
#' \linkS4class{variants} or \linkS4class{traits} object. | ||
#' @param file A file name to write to. | ||
#' | ||
#' @return Although this function is run for its side effect of writing an xlsx | ||
#' file, the path to the exported file is returned. | ||
#' | ||
#' @examples | ||
#' # 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) | ||
#' | ||
#' @export | ||
write_xlsx <- function(x, file = stop('`file` must be specified')) { | ||
lst <- s4_to_list(x) | ||
writexl::write_xlsx(lst, path = file) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,3 +129,6 @@ Magno's | |
ABHD | ||
pkgdown | ||
precompiled | ||
fns | ||
png | ||
xlsx |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.