offset<- {BioQC} | R Documentation |
IndexList
or a SignedIndexList
objectSet the offset of an IndexList
or a SignedIndexList
object
`offset<-`(object, value) ## S4 replacement method for signature 'IndexList,numeric' offset(object) <- value ## S4 replacement method for signature 'SignedIndexList,numeric' offset(object) <- value
object |
An |
value |
The value, that the offset of |
myIndexList <- IndexList(list(1:5, 2:7, 3:8), offset=1L) offset(myIndexList) offset(myIndexList) <- 3 offset(myIndexList)