Skip to contents

Displays help for tools in the built-in registry without requiring a toolbox.

Usage

sn_help_builtin(tool_name, command = NULL)

Arguments

tool_name

Character. Name of the tool.

command

Character. Specific command (optional).

Value

Invisible. Help information is printed to console.

See also

Examples

if (FALSE) { # \dontrun{
# Get help for built-in tool
sn_help_builtin("samtools")

# Get help for specific command
sn_help_builtin("samtools", "view")
} # }