[.GmtList {BioQC} | R Documentation |
Subsetting GmtList object into another GmtList object
## S3 method for class 'GmtList' x[i, drop = FALSE]
x |
A GmtList object |
i |
Index to subset |
drop |
In case only one element remains, should a list representing the single geneset returned? Default: FALSE |
myGmtList <- GmtList(list(gs1=letters[1:3], gs2=letters[3:4], gs3=letters[4:5])) myGmtList[1:2] myGmtList[1] ## default behaviour: not dropping myGmtList[1,drop=TRUE] ## force dropping