appendGmtList.Rd
Append a GmtList object to another one
appendGmtList(gmtList, newGmtList, ...)
gmtList | A |
---|---|
newGmtList | Another |
... | Further |
A new GmtList
list, with all elements in the input appended in the given order
test_gmt_file<- system.file("extdata/test.gmt", package="BioQC")
testGmtList1 <- readGmt(test_gmt_file, namespace="test1")
testGmtList2 <- readGmt(test_gmt_file, namespace="test2")
testGmtList3 <- readGmt(test_gmt_file, namespace="test3")
testGmtAppended <- appendGmtList(testGmtList1, testGmtList2, testGmtList3)