Skip to contents

Pure.

Usage

ensembl_parse_vep(record)

Arguments

record

One element of a VEP response.

Value

A list of most_severe, assembly, and consequences (the tibble from ensembl_parse_consequences()). NULL when the record is empty.

Examples

ensembl_parse_vep(list(
  most_severe_consequence = "missense_variant",
  assembly_name = "GRCh38"
))
#> $most_severe
#> [1] "missense_variant"
#> 
#> $assembly
#> [1] "GRCh38"
#> 
#> $consequences
#> NULL
#>