Description Usage Arguments Details Value Author(s) See Also Examples
Erase chosen peak features informations from a peak
object.
1 | drop.peakfeat(peak, feat)
|
peak |
An object of class |
feat |
A character string vector containing the names of the features to delete. Features could be: |
In peak
object, QTL is defined by peak features. This function is useful to erase some peak features by avoiding to redo all the analyses (mainly the define.peak
function). Only the peak features generated by the functions calc.adef
, localize.qtl
and classify.qtl
should be removed. This function is used by the functions 'calc.adef', 'localize.qtl' and 'classify.qtl'.
An object of class peak
Hamid A. Khalili
define.peak
,localize.qtl
,calc.adef
,classify.qtl
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | data(seed10);
out.em <- scanone( seed10, pheno.col=1:50, model='normal', method='hk')
out.peak <- define.peak(out.em,lodcolumn='CATrck');
out.peak <- calc.adef(seed10,out.em,out.peak)
out.peak;
data(BSpgmap);
out.peak <- localize.qtl(seed10,out.peak,BSpgmap);
out.peak;
out.peak <- drop.peakfeat(out.peak,'additive.effect');
out.peak <- drop.peakfeat(out.peak,c('inf.bp','sup.bp'));
out.peak;
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.