Constructs file paths to IFCB data files (ROI, ADC) based on the standard IFCB folder structure: roi_folder/YYYY/DYYYYMMDD/sample_name.ext
Examples
# Get paths for a sample
paths <- get_sample_paths("D20230101T120000_IFCB134", "/data/ifcb/raw")
print(paths$year) # "2023"
#> [1] "2023"
print(paths$date_part) # "D20230101"
#> [1] "D20230101"
print(paths$roi_path) # "/data/ifcb/raw/2023/D20230101/D20230101T120000_IFCB134.roi"
#> [1] "/data/ifcb/raw/2023/D20230101/D20230101T120000_IFCB134.roi"