getCromwellJar: Utility to fetch the cromwell JAR file

Description Usage Arguments Value See Also Examples

View source: R/api.R

Description

The purpose of this R package is to interact with the Broad Cromwell execution engine. The Cromwell server is contained in a JAVA JAR file. This function simply downloads the cromwell JAR file and puts it in the destfile location. The JAR file is picked up from https://github.com/broadinstitute/cromwell/releases.

Usage

1
2
getCromwellJar(cromwell_version, destfile = file.path(tempdir(),
  "cromwell.jar"))

Arguments

cromwell_version

string representing the version number

destfile

string The full path to the cromwell jar file location on the local system

Value

destfile location [invisibly]

See Also

See lots of details at https://github.com/broadinstitute/cromwell.

Examples

1
2
3
4
5
version = '24'
tmpfile = file.path(tempdir(),'cromwell.jar')
fp = getCromwellJar(cromwell_version = version)
fp
unlink(fp)

seandavi/cRomwell documentation built on Oct. 28, 2021, 12:41 a.m.