Description Usage Arguments Details Value Author(s) See Also Examples
Computes QTL physical positions from QTL genetic positions from an object of class peak
and the marker physical positions.
1 | localize.qtl( cross, peak, data.gmap, round )
|
cross |
An object of class |
peak |
An object of class |
data.gmap |
A |
round |
An optional integer indicating the precision to be used for the physical position. The physical position being estimated, non integer nucleotidic position values could be obtained. See |
Linearly computes the physical position from peak\$peak\_cM
and the flanking marker locations:
A + B/C*D
A is the physical position of the first flanking marker. B and C are the genetic and the physical distances between the two flanking markers respectively. D is the genetic position of the qtl peak.
The input peak
object is returned with components added to components of names(peak\$trait\$chromosome)
for each previously detected QTL:
peak.bp |
is the physical location of the maximum LOD peak. |
inf.bp |
is the physical location of the SI lower bound. |
sup.bp |
is the physical location of the SI upper bound. |
Hamid A. Khalili
read.cross
,define.peak
,calc.adef
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | data(seed10);
# Genome scan and QTL detection
out.em <- scanone( seed10, pheno.col=1:50, model='normal', method='hk');
out.peak <- define.peak(out.em, 'all');
# Additive effect computing
out.peak <- calc.adef(seed10,out.em,out.peak,round=3);
# Localizing peaks
data(BSpgmap);
out.peak <- localize.qtl( seed10, out.peak, BSpgmap, round=0);
# Peak features describing the QTLs affecting the 100th trait and
# localized on the chromosome 1
out.peak[[26]]$'4';
# Genetic and physical position of maximum LOD peaks affecting the 100th trait and
# localized on chromosome 1
out.peak[[26]]$'4'$peak.cM;
out.peak[[26]]$'4'$peak.bp;
# Genetic and physical position of QTLs' SI inferior bounds of the 100th trait and
# localized on chromosome 1
out.peak[[26]]$'4'$inf.cM;
out.peak[[26]]$'4'$inf.bp;
# Genetic and physical position of QTLs' SI superior bounds of the 100th trait and
# localized on chromosome 1
out.peak[[26]]$'4'$sup.cM;
out.peak[[26]]$'4'$sup.bp;
# idem for trait 'CATrck'
out.peak$CATrck$'4'$peak.cM;
out.peak$CATrck$'4'$peak.bp;
out.peak$CATrck$'4'$inf.cM;
out.peak$CATrck$'4'$inf.bp;
out.peak$CATrck$'4'$sup.cM;
out.peak$CATrck$'4'$sup.bp;
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.