unsplitS4 {SNPchip} | R Documentation |
After splitting an AnnotatedSnpSet
by chromosome, for instance,
this function will reproduce the original object from the list.
unsplitS4(value, featureData)
value |
Object of class AnnotatedSnpSet |
featureData |
Object of class AnnotatedDataFrame |
|
An object of class AnnoatedSnpSet |
...
Robert Scharpf
data(annSnpset) x <- split(annSnpset, chromosome(annSnpset)) class(x) length(x) xx <- unsplitS4(x, featureData(annSnpset)) class(xx)