Convert Snp Physical Position(Bp) Into Genetic Distance(Cm)
1
3
Entering edit mode
11.0 years ago
zy041225 ▴ 70

All I got are lists of SNPs with their physical positions, now I would like to convert them to genetic distance (centiMorgan) to calculate iHS.

I've donwloaded the latest HapMap II SNPs from http://ftp.hapmap.org/hapmap/recombination/2011-01_phaseII_B37/ but found that there are not enough SNPs I need.

What do you suggest?

Thanks for your help!

distance • 13k views
ADD COMMENT
0
Entering edit mode

There are still not enough region that I want. Many SNPs cannot be located in the data. Besides, if there are more than one SNPs in a same region, do you think their centiMorgans are the same?

ADD REPLY
5
Entering edit mode
10.8 years ago

A quick and dirty solution is to do a linear interpolation:

R 
> interpolated_map = approx(x=hapmap_snp_positions, y=hapmap_snp_cM, xout=yourdataset_snp_positions)
ADD COMMENT
0
Entering edit mode

One problem with this interpolation method is that when there are gaps of several SNPs, some of them get the same genetic distance (cM).

ADD REPLY

Login before adding your answer.

Traffic: 2802 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6