Convert summary stats file to tabix format
convert(
fullSS_path,
chrom_col = "CHR",
start_col = "POS",
end_col = start_col,
verbose = TRUE
)
Path to full GWAS/QTL summary statistics file.
column for chromosome
column for start position
column for end position (is the same as start for snps)
Print messages.
Other tabix:
convert_and_query()
if (FALSE) {
fullSS_path <- echodata::example_fullSS()
fullSS_tabix <- convert(fullSS_path = fullSS_path, position_col = "BP")
}