A proteomics search engine for LC-MS1 spectra.
Project description
ms1searchpy - a DirectMS1 proteomics search engine for LC-MS1 spectra
ms1searchpy
consumes LC-MS data (mzML) or peptide features (tsv) and performs protein identification and quantitation.
Basic usage
Basic command for protein identification:
ms1searchpy *.mzML -d path_to.FASTA
or
ms1searchpy *_peptideFeatures.tsv -d path_to.FASTA
Read further for detailed info, including quantitative analysis.
Citing ms1searchpy
Ivanov et al. DirectMS1Quant: Ultrafast Quantitative Proteomics with MS/MS-Free Mass Spectrometry. https://pubs.acs.org/doi/10.1021/acs.analchem.2c02255
Ivanov et al. Boosting MS1-only Proteomics with Machine Learning Allows 2000 Protein Identifications in Single-Shot Human Proteome Analysis Using 5 min HPLC Gradient. https://doi.org/10.1021/acs.jproteome.0c00863
Ivanov et al. DirectMS1: MS/MS-free identification of 1000 proteins of cellular proteomes in 5 minutes. https://doi.org/10.1021/acs.analchem.9b05095
Installation
Using pip:
pip install ms1searchpy
It is recommended to additionally install DeepLC version 1.1.2 (newer version has some issues right now):
pip install deeplc==1.1.2
This should work on recent versions of Python (3.8-3.10).
Usage tutorial: protein identification
The script used for protein identification is called ms1searchpy
. It needs input files (mzML or tsv) and a FASTA database.
Input files
If mzML are provided, ms1searchpy will invoke biosaur2 to generate the features table. You can also use other software like Dinosaur or Biosaur, but biosaur2 is recommended. You can also make it yourself, the table must contain columns 'massCalib', 'rtApex', 'charge' and 'nIsotopes' columns.
How to get mzML files
To get mzML from RAW files, you can use Proteowizard MSConvert...
msconvert path_to_file.raw -o path_to_output_folder --mzML --filter "peakPicking true 1-" --filter "MS2Deisotope" --filter "zeroSamples removeExtra" --filter "threshold absolute 1 most-intense"
...or compomics ThermoRawFileParser, which produces suitable files with default parameters.
RT predictor
For protein identification, ms1searchpy
needs a retention time prediction model. The recommended one is DeepLC,
but you can also use the Elude predictor from Percolator or the built-in additive model (default).
Examples
ms1searchpy test.mzML -d sprot_human.fasta -deeplc deeplc -ad 1
This command will run ms1searchpy
with DeepLC RT predictor available as deeplc
(should work if you install DeepLC
alongside ms1searchpy
. -ad 1
creates a shuffled decoy database for FDR estimation.
You should use it only once and just use the created database for other searches.
ms1searchpy test.features.tsv -d sprot_human_shuffled.fasta -deeplc env_deeplc/bin/deeplc
Here, instead of mzML file, a file with peptide features is used. Also, DeepLC is installed in a separate environment, so a path is specified.
Output files
ms1searchpy
produces several tables:
- findetified proteins, FDR-filtered (
sample.features_proteins.tsv
); - all identified proteins (
sample.features_proteins_full.tsv
) - this is the main result; - all identified proteins based on all PFMs (
sample.features_proteins_full_noexclusion.tsv
); - all matched peptide match fingerprints, or peptide-feature matches (
sample.features_PFMs.tsv
); - all PFMs with features prepared for Machnine Learning (
sample.features_PFMs_ML.tsv
); - number of theoretical peptides per protein (
sample.features_protsN.tsv
); - log file with estimated mass and RT accuracies (
sample.features_log.txt
).
Combine results from replicates
You can combine the results from several replicate runs with ms1combine
by feeding it _PFMs_ML.tsv
tables:
ms1combine sample_rep_*.features_PFMs_ML.tsv
Usage tutorial: Quantitation
After obtaining the protein identification results, you can proceed to compare your samples using LFQ.
Using directms1quant
New LFQ method designed specifically for DirectMS1 is invoked like this:
directms1quant -S1 sample1_r{1,2,3}.features_proteins_full.tsv -S2 sample2_r{1,2,3}.features_proteins_full.tsv
It produces a filtered table of significantly changed proteins with p-values and fold changes, as well as the full protein table and a separate file simply listing all IDs of significantly modified proteins (e.g. for easy copy-paste into a StringDB search window).
Links
-
GitHub repo & issue tracker: https://github.com/markmipt/ms1searchpy
-
Mailing list: markmipt@gmail.com
-
DeepLC repo: https://github.com/compomics/DeepLC
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file ms1searchpy-2.4.2-py3-none-any.whl
.
File metadata
- Download URL: ms1searchpy-2.4.2-py3-none-any.whl
- Upload date:
- Size: 36.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84972d257fc9014f75b4c7758bd9ffb8cc2ea493d607e217b39e95ef09af3082 |
|
MD5 | fcc1fcbfcb91a44c7868a36b1bd6f7aa |
|
BLAKE2b-256 | d1f30c7c5a868d8da68a45985419fee48459c568056a74a082e3313dd9fd37b9 |