batchtools (version 0.9.17)

execJob: Execute a Single Jobs

Description

Executes a single job (as created by makeJob) and returns its result. Also works for Experiments.

Usage

execJob(job)

Value

Result of the job.

Arguments

job

[Job | Experiment]
Job/Experiment to execute.

Examples

Run this code
 batchtools:::example_push_temp(1) 
tmp = makeRegistry(file.dir = NA, make.default = FALSE)
batchMap(identity, 1:2, reg = tmp)
job = makeJob(1, reg = tmp)
execJob(job)

Run the code above in your browser using DataLab