availableComputations {distcomp} | R Documentation |
Return the currently available (implemented) computations
Description
The function availableComputations
returns a list
of available computations with various components. The names of this list
(with no spaces) are unique canonical tags that are used throughout the
package to unambiguously refer to the type of computation; web applications
particularly rely on this list to instantiate objects. As more computations
are implemented, this list is augmented.
Usage
availableComputations()
Value
a list with the components corresponding to a computation
desc |
a textual description (25 chars at most) |
definitionApp |
the name of a function that will fire up a shiny webapp for defining the particular computation |
workerApp |
the name of a function that will fire up a shiny webapp for setting up a worker site for the particular computation |
masterApp |
the name of a function that will fire up a shiny webapp for setting up a master for the particular computation |
makeDefinition |
the name of a function that will return a data frame
with appropriate fields needed to define the particular computation assuming
that they are populated in a global variable. This function is used by web
applications to construct a definition object based on inputs specified
by the users. Since the full information is often gathered incrementally by
several web applications, the inputs are set in a global variable and
therefore retrieved here using the function |
makeMaster |
a function that will construct a master object for the computation given the definition and a logical flag indicating if debugging is desired |
makeWorker |
a function that will construct a worker object for that computation given the definition and data |
See Also
Examples
availableComputations()