Helper function to test template rendering with example parameters. Useful for debugging and development.
See also
Other template system:
sn_render_python_template()
,
sn_render_template()
Examples
if (FALSE) { # \dontrun{
template <- "samtools view -@ {{ threads }} {{ input }}"
test_params <- list(threads = 4, input = "test.bam")
result <- sn_test_template(template, test_params)
} # }