Description Usage Arguments Details Value Examples
dropByDropone
Leverage the results of qtl::droponemarker to find markers
that are likely misplaced or erroneous.
1 2 3 | dropByDropone(cross, droponeRes, endMarkerThresh = 12,
midMarkerThresh = 4, which.map = NULL, map.function = "kosambi",
re.est.map = F, sex.sp = F, ...)
|
cross |
The QTL cross object, with an estimated genetic map |
droponeRes |
Results from qtl::droponemarker |
endMarkerThresh |
The ldiff (length increase of map) that causes a marker to be dropped from the map if the marker is at the end/start of a chromosome. |
midMarkerThresh |
The ldiff (length increase of map) that causes a marker to be dropped from the map. |
which.map |
If the cross is a 4-way, which sex-specific map should be used? See the column names of the dropone results. Defaults to Ldiff.female, but can be set to Ldiff.male. Ignored if cross is not a 4way. |
map.function |
If re.est.map = TRUE, the map functions to employ |
re.est.map |
Should the genetic map be re-estimated? |
sex.sp |
If re.est.map = TRUE, should a sex-specific map be estimated? |
... |
Additional arguemnts passed on to est.map if re.est.map = TRUE. |
A simple function to parse output from droponemarker postion.
A cross object without markers that caused map expansion > thresholds.
1 2 3 4 5 6 7 8 9 10 11 | library(qtlTools)
data(fake.f2)
cross<-fake.f2
## Not run:
dropone<-droponemarker(cross, map.function = "kosambi")
plot(dropone, lodcolumn = 2)
cross1<-dropByDropone(cross = cross, droponeRes = dropone, endMarkerThresh = 50, re.est.map=T)
plot.map(cross,cross1)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.