checkAlleles | R Documentation |
Identify markers whose alleles might have been switched by comparing the LOD score for linkage to all other autosomal markers with the original data to that when the alleles have been switched.
checkAlleles(cross, threshold=3, verbose)
cross |
An object of class |
threshold |
Only an increase in maximum 2-point LOD of at least this amount will lead to a marker being flagged. |
verbose |
If TRUE and there are no markers above the threshold, print a message. |
For each marker, we compare the maximum LOD score for the cases where
the estimated recombination fraction > 0.5 to those where r.f. < 0.5.
The function est.rf
must first be run.
Note: Markers that are tightly linked to a marker whose alleles are switched are likely to also be flagged by this method. The real problem markers are likely those with the biggest difference in LOD scores.
A data frame containing the flagged markers, having four columns: the marker name, chromosome ID, numeric index within chromosome, and the difference between the maximum two-point LOD score with the alleles switched to that from the original data.
Karl W Broman, broman@wisc.edu
est.rf
, geno.crosstab
, switchAlleles
data(fake.f2)
# switch homozygotes at marker D5M391
fake.f2 <- switchAlleles(fake.f2, "D5M391")
fake.f2 <- est.rf(fake.f2)
checkAlleles(fake.f2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.