Registers a recipe step with the measure package. This function should be
called from the .onLoad() function of technique pack packages after
registering the pack with register_measure_pack().
Usage
register_measure_step(
step_name,
pack_name,
category = "processing",
description = "",
technique = NULL
)Arguments
- step_name
Full step function name (e.g.,
"step_sec_mw_averages").- pack_name
Source package name. Use
pkgnamefrom.onLoad().- category
Step category (e.g.,
"preprocessing","calculation").- description
Brief description of what the step does.
- technique
Technique name. If
NULL, inherits from the registered pack.
Details
Registration is idempotent: calling this function multiple times with the
same pack_name and step_name will update rather than duplicate the entry.