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
I went through the documentation but didn't find how to access the information inside specific xml elements inside the mzml file, like for example
What I'm doing now is accessing the chromatogram data with pymzML and loading the file another time with Beautiful Soup to access the information inside specific xml elements.
The text was updated successfully, but these errors were encountered:
Accessing the information using BeautifulSoup is of course not optimal ..
Do you want to access all the cvParams in fileDescription?
Currently, all params in the spectrum elements are accessible but not the ones in the mzML "header"
However it should not be hard to implement.
Could you tell me a bit more which information you are trying to access?
I needed the name of the source file, which is available in the fileDescription/sourceFileList/sourceFile tag, see attached file. (fileDescription is a direct child of )
Don't do this on my behalf though, Im using lxml now to access this, as well as the chromatogram data (which I'm decoding with base64, zlib and struct). My use case is actually simple enough that I don't need pymzML
I went through the documentation but didn't find how to access the information inside specific xml elements inside the mzml file, like for example
What I'm doing now is accessing the chromatogram data with pymzML and loading the file another time with Beautiful Soup to access the information inside specific xml elements.
The text was updated successfully, but these errors were encountered: