Identifies SNPs deviating from HWE beyond a z-score threshold.
check.snp.hwe(snp.summary, max.dev)
Character vector with SNP names deviating from HWE. Returns `NULL` if none.
df <- data.frame(z.HWE = c(2, 5), row.names = c("SNP1", "SNP2"))
check.snp.hwe(df, 3)
#> NULL