-
- Posts: 20
- Joined: Fri Mar 31, 2006 11:47 am
I'm trying to find some simple software that will integrate the peaks in chromatogram files. I can convert the origiinal binary files to ascii format, and they are basically two columns, time and signal level. Example header of a file looks like this
0.00000 0.15781
0.00083 0.16055
0.00167 0.15898
0.00250 0.15977
0.00333 0.15977
0.00417 0.15977
0.00500 0.15977
0.00583 0.15977
0.00667 0.15937
0.00750 0.15898
This is just the first ten lines, each file has 7200 lines.
I'd like to find just the retention time, area and peak width of each peak in the chromatogram.
Example output table file should look like this
EXAMPLE TEXT OUTPUT FILE
ORIGINAL INJECTION TIME 19-FEB-2013 15:15
1,1.653000,636.400024,1.600000
2,3.623000,610.309998,1.450000
3,3.980000,22.600000,3.600000
4,4.107000,14.220000,1.350000
5,4.624000,708.869995,1.650000
6,5.546000,683.700012,1.750000
7,5.625000,1651.579956,1.800000
8,5.886000,755.000000,1.900000
The line format is:
peaknumber,retention time,peak area,peak width
I also need to process the files in large batches. Peak identification, calibrations etc. not required, just an accurate integration of the peaks.
Anyone have any ideas of software that I can use?
Thanks
Peter