Replies: 2 comments
-
|
Hi Sebastian, You can use the >>> f = mzml.MzML(...)
>>> next(f.iterfind('referenceableParamGroup[@id="CommonInstrumentParams"]'))
{'id': 'CommonInstrumentParams',
'Orbitrap Fusion': '',
'instrument serial number': 'FSN20211'}Note 1: You can actually just use You can also use >>> aux.cvquery(next(f.iterfind('referenceableParamGroup[@id="CommonInstrumentParams"]')))
{'MS:1002416': 'Orbitrap Fusion', 'MS:1000529': 'FSN20211'}Best regards, |
Beta Was this translation helpful? Give feedback.
-
|
Thank you so much! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I am using the mzml object to read an indexed mzml file and I was wondering whether there is a way to get that information using the python API (which I would be having a hard time finding within the documentation).
Within the actual mzml file it can be found in L20 like this ...
Thanks for the help beforehand!
Kindest wishes,
Sebastian
Beta Was this translation helpful? Give feedback.
All reactions