File: execJob.Rd

package info (click to toggle)
r-cran-batchtools 0.9.15%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,416 kB
  • sloc: ansic: 172; sh: 156; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 624 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/execJob.R
\name{execJob}
\alias{execJob}
\title{Execute a Single Jobs}
\usage{
execJob(job)
}
\arguments{
\item{job}{[\code{\link{Job}} | \code{\link{Experiment}}]\cr
Job/Experiment to execute.}
}
\value{
Result of the job.
}
\description{
Executes a single job (as created by \code{\link{makeJob}}) and returns
its result. Also works for Experiments.
}
\examples{
\dontshow{ 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)
}