Msconvert tool configuration
Skill HolobiomicsLab/asb-skill-collections/collections/metabolomics/v2/skills/msconvert-tool-configuration
Curated, evidence-grounded skill and software-tool collections for scientific AI agents, generated by the AgenticScienceBuilder
npx -y skills add HolobiomicsLab/asb-skill-collections --skill msconvert-tool-configurationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 14 stars14 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when you have vendor-specific raw mass spectrometry data files (e.g., from Orbitrap, Q-TOF, or other MS instruments) and need to feed them into IsoFusion or other tools that require MS1 format as input.
The file declares its own license as CC-BY-4.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
5.6 KB, 928 tokens by cl100k_base, as published. Nobody here has run it
MSConvert tool configuration
Summary
Configure and execute MSConvert to convert raw mass spectrometry files into MS1 format, a prerequisite input format for downstream peptide feature detection tools like IsoFusion. This skill bridges vendor-specific raw formats and standardized MS1 text-based spectra.
When to use
You have vendor-specific raw mass spectrometry data files (e.g., from Orbitrap, Q-TOF, or other MS instruments) and need to feed them into IsoFusion or other tools that require MS1 format as input. MS1 is the required format when you plan to use end-to-end deep learning models for peptide charge, isotope count, and retention time prediction.
When NOT to use
- Your mass spectrometry data is already in MS1 or another supported text format (mzML, mzXML); conversion is redundant.
- You are using a tool that accepts raw format natively; check tool documentation before assuming MSConvert conversion is required.
- Your raw files are corrupted or from an instrument not supported by MSConvert; validation of raw file integrity is a prerequisite.
Inputs
- vendor-specific raw mass spectrometry file (e.g., .raw, .d, .wiff)
Outputs
- MS1 format text file (peak list with m/z, intensity, and scan metadata)
How to apply
Download and install MSConvert independently (it is not bundled with downstream analysis tools). Configure MSConvert output settings to produce MS1 format—a text-based peak list format. Execute MSConvert on your raw mass spectrometry file, specifying the input raw file path and requesting MS1 as the output format. Verify that the resulting MS1 file is valid and non-empty before proceeding to downstream analysis (e.g., IsoFusion). The conversion step is mandatory because tools like IsoFusion expect pre-converted MS1 input and do not perform raw-format conversion internally.
Related tools
- MSConvert (standalone command-line and GUI tool for format conversion from vendor-specific raw MS files to standardized MS1 text output)
- IsoFusion (downstream deep learning tool that consumes MS1-format input for end-to-end peptide feature detection) — https://github.com/xfcui/IsoFusion
Examples
MSConvert is typically run via command line or GUI after independent installation; a representative invocation following conversion would be: `./run_IsoFusion.py --file ~/dataset/ms1/converted_file.ms1 --process_num 8 --gpu 0 --batch_size 256`
Evaluation signals
- Output MS1 file exists, is non-empty, and contains valid peak list entries with m/z, intensity, and scan headers.
- MS1 file can be successfully parsed by downstream tools (e.g., IsoFusion) without format errors.
- Peak count and mass range in MS1 output are consistent with expectations from the raw file's instrument and acquisition method.
- No truncation, corruption, or data loss is evident when comparing scan count and total ion current (TIC) summaries between raw and MS1 formats.
Limitations
- MSConvert must be downloaded and installed independently; it is not included with analysis tools and requires manual setup.
- Not all vendor raw formats are supported by MSConvert; compatibility depends on vendor libraries and ProteoWizard updates.
- MS1 format discards some metadata (e.g., instrument-specific tuning parameters); reproducibility of downstream predictions may depend on consistent MS1 configuration across datasets.
Evidence
- [readme] You will need to convert your raw mass spectrometry files to MS1 format.: "You will need to convert your raw mass spectrometry files to MS1 format."
- [readme] The conversion tool can use MSConvert, which you need to download and install yourself.: "The conversion tool can use MSConvert, which you need to download and install yourself."
- [intro] Raw mass spectrometry files must be converted to MS1 format using MSConvert, which users must download and install independently before proceeding with IsoFusion analysis.: "Raw mass spectrometry files must be converted to MS1 format using MSConvert, which users must download and install independently before proceeding with IsoFusion analysis."
- [readme] our model is an end-to-end model that can predict charge, number of isotopes and retention time directly from the mass spectrum: "our model is an end-to-end model that can predict charge, number of isotopes and retention time directly from the mass spectrum"