ethanbass / chromConverter

Parsers for chromatography data in R (HPLC-DAD/UV, GC-FID, MS)
https://ethanbass.github.io/chromConverter/
GNU General Public License v3.0
28 stars 3 forks source link

importing cdf (raw) from Waters #19

Closed crestre closed 1 year ago

crestre commented 1 year ago

Hi Ethan,

This is a reply to the issue that I opened previously (https://github.com/ethanbass/chromatographR/issues/29).

When exporting from the Waters instrument via their software (Empower) there are two options: 1) ascii (the resulting files have the .arw extension) and 2) raw (the resulting files have the .cdf extension).

ethanbass commented 1 year ago

I think you would access the Waters .raw files from the file system. You shouldn't have to export them. I don't know off hand where Empower stores the raw data files though. Probably there's a data folder or something like that?

Maybe you could try following the instructions at this link if you are having trouble finding where the raw data files are stored: https://support.waters.com/KB_Inf/Empower_Breeze/WKB13277_Where_can_I_find_the_Raw_Data_Path_in_Empower

crestre commented 1 year ago

I followed your instructions and to an error message that reads: Error in strsplit(ini[cli_index], "=")[[1]] : subscript out of bounds

I will check in the computer that has that software.

ethanbass commented 1 year ago

I followed your instructions and to an error message that reads: Error in strsplit(ini[cli_index], "=")[[1]] : subscript out of bounds

Hmm. This is an issue with the configuration of openChrom. What OS are you using?

crestre commented 1 year ago

I am working on a PC running on Windows 10

ethanbass commented 1 year ago

And you're still using the latest version of chromConverter from GitHub? It should be version 0.4.3 if you run packageVersion("chromConverter")

crestre commented 1 year ago

Yes, that is the library that I am using.

I also tried opening the wt15.CDF from the faakKO library that is used in the library xcms - I get the same message.

ethanbass commented 1 year ago

It's not working because apparently OpenChrom recently removed the support for the command line interface (https://github.com/eclipse/chemclipse/issues/1393). You could try downloading the older version of OpenChrom (version 1.4) that still included the command line interface.

crestre commented 1 year ago

Thanks a lot!