Description Usage Arguments Details Examples
Galaxy Parameter Classes These classes encapsulate parameters to be passed to functions exposed in Galaxy.
1 2 3 4 5 6 7 |
... |
Arguments can be a single unnamed argument, corresponding to the name of the class, e.g., integer, numeric, character, or logical. The first argument can be missing, can be of length 1 or can be a vector of a greater length, in which case it is rendered as a dropdown (select) list.
Additional parameters are as follows:
|
The arguments to these classes are based on http://wiki.g2.bx.psu.edu/Admin/Tools/Tool%20Config%20Syntax#A.3Cparam.3E_tag_set
1 2 3 4 5 6 7 8 9 | GalaxyIntegerParam()
GalaxyIntegerParam(1L)
GalaxyIntegerParam(c(a=1L, b=2L)) # a select list
GalaxyNumericParam(2.0, required=TRUE)
GalaxyCharacterParam(c("First Choice"="one",
"Second Choice"="two")) # a select list
GalaxyLogicalParam(checked=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.