parse_inputs: Parse the inputs of the CWL workflow into a data frame

View source: R/parse.R

parse_inputsR Documentation

Parse the inputs of the CWL workflow into a data frame

Description

Parse the inputs of the CWL workflow into a data frame

Usage

parse_inputs(x, simplify = TRUE)

Arguments

x

CWL object

simplify

Simplify the list as a data frame?

Value

List or data frame of inputs

Examples

system.file("cwl/sbg/workflow/rnaseq-salmon.json", package = "tidycwl") %>%
  read_cwl_json() %>%
  parse_inputs() %>%
  names()

system.file("cwl/sbg/workflow/rnaseq-salmon.cwl", package = "tidycwl") %>%
  read_cwl_yaml() %>%
  parse_inputs() %>%
  names()

tidycwl documentation built on May 3, 2022, 9:07 a.m.