| ReadVEP | R Documentation | 
This function reads a variant effect predictor (VEP) output file in tsv format, and returns the contents as a tibble.
ReadVEP(file, remove_empty_col = TRUE)
| file | character(1) The path to the VEP file, can be compressed (.vcf or .vcf.gz). | 
| remove_empty_col | logical(1) Should uninformative columns with only a unique value/level be removed. Default: TRUE. | 
This function is a readr::read_tsv wrapper that reads a variant effect predictor (VEP) output file in tsv format, and returns the contents as a tibble. By default, removes uninformative columns (i.e. which have only one value), and setups the IMPACT (if present) as an ordered factor.
A tibble
genotypes <- ReadVEP("MyFolder/MyVEPresults.tsv.gz")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.