A sequence window
To temporarily partition sections of your sequences, you will use the concept of windows of given widths that can move in steps. As you have seen in the video, GRanges
provides the slidingWindows()
function, with arguments such as width
and step
.
slidingWindows(x, width, step = 1L)
The GRanges
object called ABCD1
, with gene id 215 and length 19895
, has been pre-loaded for this exercise. Use the ranges()
function to see its structure.
ranges(ABCD1)
If you needed exactly 2 windows using step = 1L
, what will be the maximum number allowed for the width of each window?
Diese Übung ist Teil des Kurses
Introduction to Bioconductor in R
Interaktive Übung
In dieser interaktiven Übung kannst du die Theorie in die Praxis umsetzen.
