Automatically import 'BlackRock' files from designated folder and perform 'Notch' filters, 'Wavelet' transform; also generate epoch, reference files.
auto_process_blackrock(
watch_path,
project_name = "automated",
task_name = "RAVEWatchDog",
scan_interval = 10,
time_threshold = Sys.time(),
max_jobs = 1L,
as_job = NA,
dry_run = FALSE,
config_open = dry_run
)
When dry_run
is true, then the watcher's instance will be
returned; otherwise nothing will be returned.
the folder to watch
the project name to generate
the watcher's name
scan the directory every scan_interval
seconds,
cannot be lower than 1
time-threshold of files: all files with modified time prior to this threshold will be ignored; default is current time
maximum concurrent imports, default is 1
whether to run in 'RStudio' background job or to block the session when monitoring; default is auto-detected
whether to dry-run the code (instead of executing the scripts, return the watcher's instance and open the settings file); default is false
whether to open the pipeline configuration file; default
is equal to dry_run