liftover | R Documentation |
Transfer genomic coordinates from one genome build to another.
liftover(
sumstats_dt,
convert_ref_genome,
ref_genome,
chain_source = "ensembl",
imputation_ind = TRUE,
chrom_col = "CHR",
start_col = "BP",
end_col = start_col,
as_granges = FALSE,
style = "NCBI",
local_chain = NULL,
verbose = TRUE
)
sumstats_dt |
data table obj of the summary statistics file for the GWAS. |
convert_ref_genome |
name of the reference genome to convert to ("GRCh37" or "GRCh38"). This will only occur if the current genome build does not match. Default is not to convert the genome build (NULL). |
ref_genome |
name of the reference genome used for the GWAS ("GRCh37" or "GRCh38"). Argument is case-insensitive. Default is NULL which infers the reference genome from the data. |
chain_source |
chain file source used ("ucsc" as default, or "ensembl") |
imputation_ind |
Binary Should a column be added for each imputation step to show what SNPs have imputed values for differing fields. This includes a field denoting SNP allele flipping (flipped). On the flipped value, this denoted whether the alelles where switched based on MungeSumstats initial choice of A1, A2 from the input column headers and thus may not align with what the creator intended.Note these columns will be in the formatted summary statistics returned. Default is FALSE. |
chrom_col |
Name of the chromosome column in
|
start_col |
Name of the starting genomic position
column in |
end_col |
Name of the ending genomic position
column in |
as_granges |
Return results as GRanges
instead of a data.table (default: |
style |
Style to return GRanges object in
(e.g. "NCBI" = 4; "UCSC" = "chr4";) (default: |
local_chain |
Path to local chain file to use instead of downlaoding. Default of NULL i.e. no local file to use. NOTE if passing a local chain file make sure to specify the path to convert from and to the correct build like GRCh37 to GRCh38. We can not sense check this for local files. The chain file can be submitted as a gz file (as downloaed from source) or unzipped. |
verbose |
Print messages. |
Lifted summary stats in data.table
or GRanges format.
sumstats_dt <- MungeSumstats::formatted_example()
sumstats_dt_hg38 <- liftover(sumstats_dt=sumstats_dt,
ref_genome = "hg19",
convert_ref_genome="hg38")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.