adhoc_lamina()
will execute only the lamina and the code
therein contained as specified by lamina_path
with or without log messages.
See also
Other adhoc:
adhoc()
,
adhoc_stratum()
Examples
tmp <- fs::dir_create(fs::file_temp())
result <- strata::build_quick_strata_project(tmp, 1, 1)
adhoc_lamina(
fs::path(tmp, "strata", "stratum_1", "s1_lamina_1"),
)
#> [2025-06-26 11:53:52.2535] INFO: Strata started
#> [2025-06-26 11:53:52.2542] INFO: Stratum: stratum_1 initialized
#> [2025-06-26 11:53:52.2546] INFO: Lamina: s1_lamina_1 initialized
#> [2025-06-26 11:53:52.2552] INFO: Executing: my_code
#> [1] "I am a placeholder, do not forget to replace me!"
#> [2025-06-26 11:53:52.2570] INFO: Strata finished - duration: 0.0041 seconds
fs::dir_delete(tmp)