set_method {ReactomeGSA} | R Documentation |
Set the analysis method used by the ReactomeAnalysisRequest
set_method(request, method, ...)
request |
The |
method |
The name of the method to use. Use |
... |
Additional parameters passed to specific implementations |
The ReactomeAnalysisRequest
with the adapted method
# create a request using Camera as an analysis data(griss_melanoma_proteomics) library(methods) my_request <- ReactomeAnalysisRequest(method = "Camera") print(my_request) # change the method to ssGSEA my_request <- set_method(my_request, "ssGSEA") print(my_request)