matchIO: matchIO

Usage Arguments Examples

Usage

1
matchIO(outputs, inputs)

Arguments

outputs
inputs

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (outputs, inputs) 
{
    cat(paste("Supplied:", paste(outputs, collapse = ", "), "\n"))
    cat(paste("Required:", paste(inputs, collapse = ", "), "\n"))
    result <- all(inputs %in% outputs)
    if (result) {
        cat("Inputs satisfied\n")
    }
    else {
        cat("Inputs NOT satisfied\n")
    }
    result
  }

bradleydrayton/pipeline documentation built on May 13, 2019, 2:27 a.m.