How to get the beginning and end-positions of a QTL-interval after doing QTL-analysis with R/QTL?
1
2
Entering edit mode
8.2 years ago
nx8 ▴ 20

Hi,

I've done QTL-Analysis using R/QTL. I would now like to find all the genes lying in the QTL-regions. Is there a function that will give me the positions of the flanking markers of the QTL-interval in my genetic map? So that I can say the QTL interval is from position x to position y and check the genes within this region.

Many thanks!

Nadia

R QTL R/QTL QTL-Analysis QTL-interval • 3.1k views
ADD COMMENT
1
Entering edit mode
6.5 years ago
Mat ▴ 60

Supposing you run scan1 (name of return object is data.scan1) on your data and want to get the 95% confidence interval (upper and lower marker) for the peak on chromosome 1, type

CI = bayesint(data.scan1, chr=1, prob=0.95)

lower_marker = find.marker(data, chr=CI[1,1], pos=CI[1,2])
lower_lod = CI[1,3]
print(paste("Lower marker:", lower_marker, "LOD:", lower_lod, sep=" ")) 

upper_marker = find.marker(data, chr=CI[3,1], pos=CI[3,2]) 
upper_lod = CI[3,3]
print(paste("Upper marker:", upper_marker, "LOD:", upper_lod, sep=" "))
ADD COMMENT
0
Entering edit mode

Hi. Question: would this work also for composite-interval-mapping (CIM) ? Or how it can be calculated for CIM? Thanks

ADD REPLY

Login before adding your answer.

Traffic: 1940 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