jobToken-class {ChemmineR} | R Documentation |
"jobToken"
Container for storing a reference to a remote job ran on the ChemMine Tools web server.
Objects can be created by calls of the form new("jobToken", ...)
.
tool_name
:Object of class "character"
jobId
:Object of class "character"
signature(object = "jobToken")
: check the status of a launched job
Tyler William H Backman
See ChemMine Tools at http://chemmine.ucr.edu.
Functions: launchCMTool
, toolDetails
, listCMTools
, result
, browseJob
, status
showClass("jobToken") ## Not run: ## launch a job on the server and obtain jobToken back job1 <- launchCMTool("pubchemID2SDF", 2244) ## check status of the job status(job1) ## obtain results result1 <- result(job1) result1 ## End(Not run)