Hi,
For the bigSpectronauttoMSstatsFormat function, you could set the
intensity parameter to specify the column you want for processing. The default is "F.NormalizedPeakArea", but you can also use "F.PeakArea" too.
Example:
converted_data <- bigSpectronauttoMSstatsFormat(
system.file("extdata", "spectronaut_input.csv", package = "MSstatsBig"),
"output_file.csv",
backend="arrow"
intensity = "F.PeakArea")
converted_data <- dplyr::collect(converted_data)
head(converted_data)
Let me know if you have any problems with that.
Thanks,
Tony