compound.param {AnalysisPageServer} | R Documentation |
Create a Compound AnalysisPageParam
compound.param(..., children)
... |
Passed through to |
children |
AnalysisPageParamSet An AnalysisPageParamSet representing all of the nested parameters |
A compound AnalysisPageParam is a single parameter that has multiple parts. The parts are represented by an AnalysisPageParamSet, so could be arbitrarily nested. The front end is responsible for wrapping up all of the values in a JSON hash and passing in a single value.
This can be thought of as a way of building a hash out of other parameter types.
AnalysisPageParam of type "compound"
Brad Friedman
plist <- list(simple.param(name="study"), simple.param(name="comp"), simple.param("feature.type", value="gene")) comp <- compound.param(name="comp", label="Comparison", children=param.set(plist))