Discovers files under in_dir for the given workflow and prints a summary
table to stdout.
Examples
path <- system.file("extdata/tool1", package = "nemo")
out_pretty <- capture.output(
cli_nemo_list(in_dir = path, workflow = "workflow1", format = "pretty")
)
out_tsv <- capture.output(
cli_nemo_list(in_dir = path, workflow = "workflow1", format = "tsv")
)
out_max <- capture.output(
cli_nemo_list(in_dir = path, workflow = "workflow1", format = "pretty", max = 3)
)
