Skip to contents

Provides detailed diagnostic information about tool installation status, including missing directories, binaries, and potential issues.

Usage

sn_diagnose_tool(tool_name, version = NULL, base_dir = NULL)

Arguments

tool_name

Character. Name of the tool to diagnose.

version

Character. Specific version to diagnose (optional).

base_dir

Character. Base directory for installations (optional).

Value

List with diagnostic information.

Examples

if (FALSE) { # \dontrun{
# Diagnose a specific tool
sn_diagnose_tool("fastp")

# Diagnose specific version
sn_diagnose_tool("fastp", "0.26.0")
} # }