Identifies SNPs that share the same position on the same chromosome.

check.snp.same.position(snpmap)

Arguments

snpmap

Data frame with columns `Chromosome`, `Position`, and `Name`.

Value

List of SNP groups sharing positions.

Examples

df <- data.frame(Chromosome = c(1, 1, 2),
                 Position = c(100, 100, 200),
                 Name = c("SNP1", "SNP2", "SNP3"))
check.snp.same.position(df)
#> [[1]]
#> [1] "SNP1" "SNP2"
#>