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
Hi,
i noticed that converting a SCIEX .wiff2 file to stdout with the option "-o -" will cause the output stream to contain the string Could not find configuration for IPerformanceMeasurementEvent. before the xml header starts.
I used the following command: msconvert "path.wiff2" -o - --filter "peakPicking vendor msLevel=1-" --filter "scanNumber 1-1"
(the scan number filter was only added so i could look at the output when i run msconvert from my cmd.)
Since there is also other output i'm guessing that everything else is sent to a logger/error stream and only the line Could not find configuration for IPerformanceMeasurementEvent. is printed to the standard output stream (maybe using a printf or so).
We are using the MSConvert -o - option internally in mzmine to parse some vendor formats and this currently breaks the import for .wiff2 files. I'll try to create a workaround internally in mzmine, but i think it would still be great if the issue was fixed.
Best
Steffen
The text was updated successfully, but these errors were encountered:
That output comes directly from the vendor DLL so we can't control what stream it goes to. I think there may be a way to suppress it with some extra configuration file that the API can read, but I'm not sure what incantation is necessary for that.
Ok that's good to know, i thought it my be coming from msconvert. I have a workaround implemented, so you can close the issue unless you want to keep it as a backlog.
Hi,
i noticed that converting a SCIEX .wiff2 file to stdout with the option "-o -" will cause the output stream to contain the string
Could not find configuration for IPerformanceMeasurementEvent.
before the xml header starts.I used the following command:
msconvert "path.wiff2" -o - --filter "peakPicking vendor msLevel=1-" --filter "scanNumber 1-1"
(the scan number filter was only added so i could look at the output when i run msconvert from my cmd.)
Since there is also other output i'm guessing that everything else is sent to a logger/error stream and only the line
Could not find configuration for IPerformanceMeasurementEvent.
is printed to the standard output stream (maybe using a printf or so)..wiff2:
.wiff:
We are using the MSConvert -o - option internally in mzmine to parse some vendor formats and this currently breaks the import for .wiff2 files. I'll try to create a workaround internally in mzmine, but i think it would still be great if the issue was fixed.
Best
Steffen
The text was updated successfully, but these errors were encountered: