Hi John,
If you are open to a programmatic solution, you can use isoreader (
https://isoreader.isoverse.org/) to export the autosampler method together with other sequence information. In an R command line run the following (swap out the PATH/TO/SEQUENCE/FOLDER for where your sequence results are located). If you run into trouble, feel free to email directly.
library(isoreader);
iso_read_continuous_flow("PATH/TO/SEQUENCE/FOLDER") %>%
iso_get_file_info(select = c(Analysis, `Identifier 1`, `Identifier 2`, `AS Method`)) %>%
write.csv("file_info_w_AS.csv")
cheers,
Seb