[,bed,ANY,ANY,ANY-method | R Documentation |
bed
.Accessor methods for class bed
.
## S4 method for signature 'bed,ANY,ANY,ANY'
x[i, j, ..., drop = TRUE]
## S4 method for signature 'bed_light,ANY,ANY,ANY'
x[i, j, ..., drop = TRUE]
x |
A bed object. |
i |
A vector of indices (or nothing). You can use positive and negative indices, and also logical indices (that are recycled). |
j |
A vector of indices (or nothing). You can use positive and negative indices, and also logical indices (that are recycled). |
... |
Not used. Just to make nargs work. |
drop |
Whether to drop dimensions (to a vector) when a dimension is 1.
Default is |
bedfile <- system.file("extdata", "example-missing.bed", package = "bigsnpr")
(obj.bed <- bed(bedfile))
obj.bed[1:5, 1]
obj.bed[1:5, 1:2]
typeof(obj.bed[1, 1])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.