Description Usage Arguments Value Author(s) References See Also Examples
Launches a web browser to view the results of a ChemMine Tools web job with an interactive online viewer.
Note that this reassigns the job to the current logged in user within the browser, so it becomes no longer
accessible by the result
and status
functions. Any results should be saved within R before launching a browser.
1 | browseJob(object)
|
object |
A |
Returns an URL string which can be used to access the job results. The function also attempts to open the url with the browseURL
function. As this URL can only be used once, the returned string is only useful if the browseURL
function fails to open a browser.
Tyler William H Backman
See ChemMine Tools at http://chemmine.ucr.edu.
Functions: toolDetails
, listCMTools
, launchCMTool
, result
, status
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
## list available tools
listCMTools()
## get detailed instructions on using a tool
toolDetails("Fingerprint Search")
## download compound 2244 from PubChem
job1 <- launchCMTool("pubchemID2SDF", 2244)
## check job status and download result
status(job1)
result1 <- result(job1)
## open job in web browser
browseJob(job1)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.