You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'GetChargeState' in 'MzIO.Thermo/ThermoRawFileReader.fs' does not return the ChargeState as it is accessing the incorrect index from the trailer data. This can be fixed by accessing index 7 instead:
static memberprivateGetChargeState(rawFile:IRawDataPlus,scanNo:int)=// 7 is the index for charge statelettrailerData= rawFile.GetTrailerExtraInformation(scanNo)
Convert.ToInt32(trailerData.Values[7])
The text was updated successfully, but these errors were encountered:
'GetChargeState' in 'MzIO.Thermo/ThermoRawFileReader.fs' does not return the ChargeState as it is accessing the incorrect index from the trailer data. This can be fixed by accessing index 7 instead:
The text was updated successfully, but these errors were encountered: