powered by
Reads a TSV, CSV or other delimited file where:
the first column is a variant identifier (unless removed)
remaining columns contain binary 0, 1, or NA evidence indicators.
quant_es_from_binary_table( path, sep = "\t", header = TRUE, variant_col = NULL )
A standard quantbayes result list.
Path to a text file.
Field separator (default tab).
Whether the file has a header.
Column name containing the variant IDs. If NULL and no such column exists, sequential IDs will be created.
tmp <- tempfile(fileext = ".tsv") write.table(core_test_data, tmp, sep = "\t", quote = FALSE, row.names = FALSE) res <- quant_es_from_binary_table(tmp) res$global
Run the code above in your browser using DataLab