Skip to contents

Pure. Matching is case-insensitive on the symbol.

Usage

clingen_validity_for(table, symbols)

Arguments

table

A tibble from clingen_parse_validity().

symbols

Gene symbols.

Value

The matching rows, or NULL when none match.

Examples

table <- tibble::tibble(
  gene = c("NF1", "TP53"),
  classification = c("Definitive", "Definitive")
)
clingen_validity_for(table, "nf1")
#> # A tibble: 1 × 2
#>   gene  classification
#>   <chr> <chr>         
#> 1 NF1   Definitive