Finds and imports metadata from spectra files in a given location.
lr_get_metadata(
where = getwd(),
ext = "ProcSpec",
sep = NULL,
subdir = FALSE,
subdir.names = FALSE,
cores = NULL,
ignore.case = TRUE
)
Folder in which files are located (defaults to current working directory).
File extension to be searched for, without the "." (defaults to
txt
). You can also use a character vector to specify multiple file
extensions.
Column delimiting characters to be considered in addition to the default (which are: tab, space, and ";")
Should subdirectories within the where
folder be included in
the search? (defaults to FALSE
).
Should subdirectory path be included in the name of the
spectra? (defaults to FALSE
).
deprecated. See future::plan()
for more details on how to
customise your parallelisation strategy.
Should the extension search be case insensitive? (defaults
to TRUE
)
A data.frame containing one file per row and the following columns:
name
: File name (without the extension)
user
: Name of the spectrometer operator
date
: Timestamp of the recording
spec_model
: Model of the spectrometer
spec_ID
: Unique ID of the spectrometer
white_inttime
: Integration time of the white reference (in ms)
dark_inttime
: Integration time of the dark reference (in ms)
sample_inttime
: Integration time of the sample (in ms)
white_avgs
: Number of averaged measurements for the white reference
dark_avgs
: Number of averaged measurements for the dark reference
sample_avgs
: Number of averaged measurements for the sample
white_boxcar
: Boxcar width for the white reference
dark_boxcar
: Boxcar width for the dark reference
sample_boxcar
: Boxcar width for the sample reference
white_inttime
, dark_inttime
and sample_inttime
should be equal. The
normalised data may be inaccurate otherwise.
You can customise the type of parallel processing used by this function with
the future::plan()
function. This works on all operating systems, as well
as high performance computing (HPC) environment. Similarly, you can customise
the way progress is shown with the progressr::handlers()
functions
(progress bar, acoustic feedback, nothing, etc.)
White TE, Dalrymple RL, Noble DWA, O'Hanlon JC, Zurek DB, Umbers KDL. Reproducible research in the study of biological coloration. Animal Behaviour. 2015 Aug 1;106:51-7 (10.1016/j.anbehav.2015.05.007).
# NOT RUN {
lr_get_metadata(system.file("testdata", "procspec_files",
package = "lightr"),
ext = "ProcSpec")
# }
Run the code above in your browser using DataLab