Step Decorator#

yaflux._step.step(creates=None, requires=None)[source]#

Decorator to register analysis steps and their results.

Parameters:
  • creates (str | list[str] | None) – Names of the results this step creates

  • requires (str | list[str] | None) – Names of the results this step requires

yaflux._step.creates#

Names of the results this step creates

Type:

list[str]

yaflux._step.requires#

Names of the results this step requires

Type:

list[str]

yaflux._step.creates_flags#

Names of the flags this step creates

Type:

list[str]

yaflux._step.requires_flags#

Names of the flags this step requires

Type:

list[str]

Return type:

Callable