Identifies SNPs with call rates below a minimum threshold.
check.call.rate(summary, min.call.rate)
Character vector with SNP names below threshold. Returns `NULL` if none.
df <- data.frame(Call.rate = c(0.85, 0.95), row.names = c("SNP1", "SNP2"))
check.call.rate(df, 0.9)
#> NULL