Identifies SNPs with minor allele frequency below a minimum threshold.
check.snp.maf(snp.summary, min.maf)
Character vector with SNP names below threshold. Returns `NULL` if none.
df <- data.frame(MAF = c(0.01, 0.2), row.names = c("SNP1", "SNP2"))
check.snp.maf(df, 0.05)
#> NULL