From GRangesList object into a GRanges object
The unlist()
operation is fast and serves to partition a GRangesList
.
You can unlist the hg_ChrX
and then check how the lengths differ between the GRangesList
and the GRanges
objects.
Diese Übung ist Teil des Kurses
Introduction to Bioconductor in R
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Unlist hg_ChrX and save result as myGR
myGR <- ___
# Compare classes of hg_ChrX and myGR
___
___