View source: R/save_bed_table.R
save_bed_table | R Documentation |
.bed
table to file.Save a .bed
table to file
save_bed_table(bed_table, bed_filename, verbose = FALSE)
bed_table |
a table that maps the SNPs to the individuals,
of which the column names are the names of the individuals,
the row names are the names of the SNPs,
and the values are the SNP variant.
Use get_test_bed_table to get a |
bed_filename |
name of a |
verbose |
the verbosity of a function. Set to TRUE for more output. Use check_verbose to detect if this argument is valid. |
Richèl J.C. Bilderbeek
bed_table <- get_test_bed_table()
bed_filename <- get_plinkr_tempfilename(fileext = ".bed")
save_bed_table(
bed_table = bed_table,
bed_filename = bed_filename
)
file.remove(bed_filename)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.