Skip to contents

Detect "indels" in GWAS summary statistics

Usage

flag_indels(tbl)

Arguments

tbl

a dplyr::tibble() with columns EffectAllele and OtherAllele

Value

a dplyr::tibble() with a TRUE/FALSE column indel added, where indel == TRUE corresponds to a row marked as an indel.

Examples

if (FALSE) { # \dontrun{
all_indels <-
  flag_indels(tbl) |>
  dplyr::filter(indels)
} # }