getTool {ENVISIONQuery} | R Documentation |
Get the tool handler of a given service using the tool name
getTool(service,toolName="menu",selection.title="Select Tool", graphicMenu=getOption("menu.graphics"))
service |
Service handler |
toolName |
The name of Envision service tool handler to be retrieved. If equal to "menu" (default) and the number of tools is greater than 1 menu is contructed allowing to choose one of the available services. |
selection.title |
The selection list title. Default is 'Select Tool'. |
graphicMenu |
If TRUE (default is FALSE), use a GUI window for the pick menus. |
the Envision service tool handler.
Alex Lisovich, Roger Day
#get the tool handler for 'mapProteinsAdv' tool in 'Picr' service try({ service<-getService("Picr"); getToolNames(service); tool<-getTool(service,"mapProteinsAdv"); })