-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mzML file: String.trim() fails, CVParamType.getValue() is null #2115
Comments
The mzML format doesn't follow the schema
Best, Fengchao |
Ah I see - for this I am somewhat stuck with .mgf or .mzML files based on what is available on proteome exchange. If I run w/ MGF files, I get the following errors (an excerpt as the full log is too large): RawFileReader reading tool. Copyright (c) 2016 by Thermo Fisher Scientific, Inc. All rights reserved. |
The "title" of the MGF format has no restrictions, which makes it hard to support all "flavors" of the MGF format. We only support a few common ones, but it seems that yours are not one of them. Best, Fengchao |
Ahh okay I see. I can try to edit this but I guess I can try to find some related .raw files. One major issue I have is that I have a slightly large custom database and although I'm working on a cluster, with all of the input files (mzML or raw), it seems to require a ton of memory. Is there a way I can run FragPipe in batches on subsets of my full manifest? It's a miniconda installation of FragPipe (as I don't have sudo control in the cluster) |
You could set the "split database" in the "MSFragger" part to > 1. It will split the database into chunks to reduce the memory footprint. Best, Fengchao |
CheckCentroid
java -Xmx453G -cp /home/projects/elinav/birgit/fragpipe2/fragpipe/lib/fragpipe-22.0.jar:/home/projects/elinav/birgit/fragpipe2/fragpipe/tools/batmass-io-1.33.4.jar com.dmtavt.fragpipe.util.CheckCentroid /home/projects/elinav/johnf/databases/PXD_PEPTIDOMICS3/pride_downloads/PXD003533/Q001_80K_Fr1_18uL_T90_C25nano.mzML 9
java.lang.NullPointerException: Cannot invoke "String.trim()" because the return value of "umich.ms.fileio.filetypes.mzml.jaxb.CVParamType.getValue()" is null
at umich.ms.fileio.filetypes.mzml.MZMLRunHeaderParser.lookupInstrumentVendor(MZMLRunHeaderParser.java:335)
at umich.ms.fileio.filetypes.mzml.MZMLRunHeaderParser.parse(MZMLRunHeaderParser.java:224)
at umich.ms.fileio.filetypes.mzml.MZMLFile.parseRunInfo(MZMLFile.java:88)
at umich.ms.fileio.filetypes.mzml.MZMLFile.fetchRunInfo(MZMLFile.java:78)
at umich.ms.fileio.filetypes.mzml.MZMLFile.fetchRunInfo(MZMLFile.java:32)
at umich.ms.fileio.filetypes.xmlbased.AbstractXMLBasedDataSource.parse(AbstractXMLBasedDataSource.java:121)
at umich.ms.datatypes.scancollection.impl.ScanCollectionDefault.loadData(ScanCollectionDefault.java:807)
at umich.ms.datatypes.scancollection.impl.ScanCollectionDefault.loadData(ScanCollectionDefault.java:791)
at com.dmtavt.fragpipe.util.CheckCentroid.isCentroid(CheckCentroid.java:76)
at com.dmtavt.fragpipe.util.CheckCentroid.main(CheckCentroid.java:39)
Process 'CheckCentroid' finished, exit code: 1
Process returned non-zero exit code, stopping
- Describe the issue or question:
I converted some .mgf files with FileConverter to mzML and tried running fragpipe, and got the above error.
The fix to it, was to change the following portion of my mzML file to have value="null". before there was no value parameter here.
What is causing this and how can I avoid it in the future?
The text was updated successfully, but these errors were encountered: