addTwoNumbersWithTest: Add two numbers (with functional test)

Description Usage Arguments Value See Also Examples

View source: R/test_functions.R

Description

An example function that can be made into a Galaxy tool. Takes two numbers, adds them, and returns a file containing the result. This version demonstrates a functional test.

Usage

1
2
3
addTwoNumbersWithTest(number1=GalaxyNumericParam(required=TRUE, testValues=5L),
        number2=GalaxyNumericParam(required=TRUE, testValues=5L),
        sum=GalaxyOutput("sum", "txt"))

Arguments

number1

The first number to add.

number2

The second number to add.

sum

Where the result of the addition should be written.

Value

invisible(NULL)

See Also

galaxy, GalaxyConfig, GalaxyOutput, addTwoNumbers

Examples

1
2
3
4

Bioconductor/RGalaxy documentation built on May 22, 2021, 8:59 a.m.