-
Notifications
You must be signed in to change notification settings - Fork 57
Description
Hi, we just noticed after starting to use ThermoRarFileParser a lot that it is missing the precursor intensity that msconvert writes out. e.g.:
msconvert:
<selectedIonList count="1"> <selectedIon> <cvParam cvRef="MS" accession="MS:1000744" name="selected ion m/z" value="541.310729980469" unitCvRef="MS" unitAccession="MS:1000040" unitName="m/z"/> <cvParam cvRef="MS" accession="MS:1000041" name="charge state" value="3"/> <cvParam cvRef="MS" accession="MS:1000042" name="peak intensity" value="8923.3095703125" unitCvRef="MS" unitAccession="MS:1000131" unitName="number of detector counts"/> </selectedIon> </selectedIonList>
while ThermoRawFileParser produces:
<selectedIonList count="1"> <selectedIon> <cvParam cvRef="MS" accession="MS:1000744" value="541.310729980469" name="selected ion m/z" unitAccession="MS:1000040" unitName="m/z" unitCvRef="MS" /> <cvParam cvRef="MS" accession="MS:1000041" value="3" name="charge state" /> </selectedIon> </selectedIonList>
We found that Ids going into PeptideAtlas no longer have these precursor intensity values when we use ThermoRawFileParser.
Can we get these values filled in during ThermoRawFileParser conversion?
thanks!
Eric