Learn R Programming

GenABEL (version 1.8-0)

plot.check.marker: plots "check.marker" object

Description

Plots "check.marker" object, as returned by check.marker

Usage

"plot"(x, y, ...)

Arguments

x
Object of class "check.marker", as returned by check.marker or snp.subset
y
this argument is not used
...
other arguments to be passed to plot

Value

No value returned. Explanatory note is shown on the screen.

Details

In this plot, along the X axes, you can see colour representation of markers which did not pass (pass -- black) the QC. The diagonal shows redundant markers. If for some marker there exist markers, which show exactly the same (or some minimum concordance) genotypic distribution, such markers are depicted as crosses an solid line is dropped on the X axes from it. Other solid line connects the original SNP with the redundant ones (depicted as circles). From each redundant SNP, a dashed line is dropped on X. Normally, one expects that redundant markers are positioned very closely and redundancy appears because of linkage disequilibrium.

See Also

check.marker, snp.subset

Examples

Run this code
require(GenABEL.data)
data(srdta)
mc <- check.marker(data=srdta@gtdata[,1:100],redundant="all",maf=0.01,
					minconcordance=0.9,fdr=.1,ibs.mrk=0)
mc <- check.marker(data=srdta@gtdata[,1:100],maf=0.01,fdr=.1,ibs.mrk=0)
plot(mc)
mc1 <- snp.subset(mc,snps=srdta@gtdata@snpnames[20:40])
plot(mc1)

Run the code above in your browser using DataLab