Special handling for Python-based tools that use Python code templates instead of shell commands.
See also
Other template system:
sn_render_template()
,
sn_test_template()
Examples
if (FALSE) { # \dontrun{
python_code <- 'import scanpy as sc\nadata = sc.read_h5ad("{{ input_h5ad }}")'
params <- list(input_h5ad = "data.h5ad")
rendered <- sn_render_python_template(python_code, params, inputs, outputs, cmd_config)
} # }