Encountering error when loading fcs files,
fcs_raw = read.flowSet(as.character(meta$FileName), path = "TetramerExport/FCS", transformation = FALSE, truncate_max_range = FALSE)
Error in checkOffset(offsets, txt, ...) :
The HEADER and the TEXT segment define different starting point (4329:4328) to read the data.
The FCS file names are stored in the meta dataframe, which originally sourced from list.files(FCS file path).
The meta$FileName are matched with actual FCS file names, by checking
table(meta$FileName %in% ll) TRUE 1276
Encountering error when loading fcs files,
fcs_raw = read.flowSet(as.character(meta$FileName), path = "TetramerExport/FCS", transformation = FALSE, truncate_max_range = FALSE)Error in checkOffset(offsets, txt, ...) :
The HEADER and the TEXT segment define different starting point (4329:4328) to read the data.
The FCS file names are stored in the meta dataframe, which originally sourced from list.files(FCS file path).
The meta$FileName are matched with actual FCS file names, by checking
table(meta$FileName %in% ll) TRUE 1276