Skip to contents

Retrieves basic information about a built-in tool.

Usage

sn_get_tool_info(tool_name, tools_dir = NULL)

Arguments

tool_name

Character. Name of the tool.

tools_dir

Character. Directory containing YAML tool definitions.

Value

List with tool information or NULL if not found.

See also

Examples

if (FALSE) { # \dontrun{
info <- sn_get_tool_info("samtools")
print(info$description)
print(names(info$commands))
} # }