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, |
0 replies
|
Thank you so much! |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
All reactions