Detect "indels" in GWAS summary statistics
flag_indels.Rd
Detect "indels" in GWAS summary statistics
Arguments
- tbl
a
dplyr::tibble()
with columnsEffectAllele
andOtherAllele
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)
} # }