ms2pip


Namems2pip JSON
Version 3.13.0 PyPI version JSON
download
home_pagehttps://www.github.com/compomics/ms2pip_c
SummaryMS²PIP: MS² Peak Intensity Prediction
upload_time2024-03-05 16:39:36
maintainer
docs_urlNone
authorSven Degroeve, Ralf Gabriels, Kevin Velghe, Ana Sílvia C. Silva, Arthur Declercq
requires_python>=3.7,<4
licenseapache-2.0
keywords ms2pip proteomics peptides peak intensity prediction spectrum machine learning spectral library fasta2speclib
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [<img src="https://github.com/compomics/ms2pip_c/raw/releases/img/ms2pip_logo_1000px.png" width="150" height="150" />](https://iomics.ugent.be/ms2pip/)
<br/><br/>

[![GitHub release](https://img.shields.io/github/v/release/compomics/ms2pip_c?include_prereleases&style=flat-square)](https://github.com/compomics/ms2pip_c/releases/latest/)
[![PyPI](https://img.shields.io/pypi/v/ms2pip?style=flat-square)](https://pypi.org/project/ms2pip/)
[![Tests](https://img.shields.io/github/actions/workflow/status/compomics/ms2pip_c/test.yml?branch=releases&label=tests&style=flat-square)](https://github.com/compomics/ms2pip_c/actions/workflows/test.yml)
[![Build](https://img.shields.io/github/actions/workflow/status/compomics/ms2pip_c/build_and_publish.yml?style=flat-square)](https://github.com/compomics/ms2pip_c/actions/workflows/build_and_publish.yml)
[![Open issues](https://img.shields.io/github/issues/compomics/ms2pip_c?style=flat-square)](https://github.com/compomics/ms2pip_c/issues/)
[![Last commit](https://img.shields.io/github/last-commit/compomics/ms2pip_c?style=flat-square)](https://github.com/compomics/ms2pip_c/commits/releases/)
[![GitHub](https://img.shields.io/github/license/compomics/ms2pip_c?style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0)
[![Twitter](https://img.shields.io/twitter/follow/compomics?style=social)](https://twitter.com/compomics)

MS²PIP: MS² Peak Intensity Prediction - Fast and accurate peptide fragmention
spectrum prediction for multiple fragmentation methods, instruments and labeling techniques.

---

- [Introduction](#introduction)
- [Installation](#installation)
- [Usage](#usage)
- [Specialized prediction models](#specialized-prediction-models)

---

## Introduction
MS²PIP is a tool to predict MS² peak intensities from peptide sequences. The result is
a predicted peptide fragmentation spectrum that accurately resembles its observed
equivalent. These predictions can be used to validate peptide identifications, generate
proteome-wide spectral libraries, or to select discriminative transitions for targeted
proteomics. MS²PIP employs the XGBoost machine learning algorithm and is written in
Python.

You can install MS²PIP on your machine by following the
[installation instructions](#installation) below. For a more user-friendly experience,
go to the [MS²PIP web server](https://iomics.ugent.be/ms2pip). There, you can easily
upload a list of peptide sequences, after which the corresponding predicted MS² spectra
can be downloaded in multiple file formats. The web server can also be contacted
through the [RESTful API](https://iomics.ugent.be/ms2pip/api/).

To generate a predicted spectral library starting from a FASTA file, we
developed a pipeline called fasta2speclib. Usage of this pipeline is described
on the
[fasta2speclib wiki page](http://compomics.github.io/projects/ms2pip_c/wiki/fasta2speclib).
Fasta2speclib was developed in collaboration with the ProGenTomics group for the
[MS²PIP for DIA](https://github.com/brvpuyve/MS2PIP-for-DIA) project.

To improve the sensitivity of your peptide identification pipeline with MS²PIP
predictions, check out [MS²Rescore](https://github.com/compomics/ms2rescore/).

If you use MS²PIP for your research, please cite the following publication:
- Gabriels, R., Martens, L., & Degroeve, S. (2019). Updated MS²PIP web server
delivers fast and accurate MS² peak intensity prediction for multiple
fragmentation methods, instruments and labeling techniques. *Nucleic Acids
Research* [doi:10.1093/nar/gkz299](https://doi.org/10.1093/nar/gkz299)

Prior MS²PIP publications:
- Degroeve, S., Maddelein, D., & Martens, L. (2015). MS²PIP prediction server:
compute and visualize MS² peak intensity predictions for CID and HCD
fragmentation. *Nucleic Acids Research*, 43(W1), W326–W330.
[doi:10.1093/nar/gkv542](https://doi.org/10.1093/nar/gkv542)
- Degroeve, S., & Martens, L. (2013). MS²PIP: a tool for MS/MS peak intensity
prediction. *Bioinformatics (Oxford, England)*, 29(24), 3199–203.
[doi:10.1093/bioinformatics/btt544](https://doi.org/10.1093/bioinformatics/btt544)

Please also take note of, and mention, the MS²PIP version you used.

---

## Installation

[![install pip](https://flat.badgen.net/badge/install%20with/pip/green)](https://pypi.org/project/ms2pip/)
[![install bioconda](https://flat.badgen.net/badge/install%20with/bioconda/green)](https://bioconda.github.io/recipes/ms2pip/README.html)
[![container](https://flat.badgen.net/badge/pull/biocontainer/blue?icon=docker)](https://quay.io/repository/biocontainers/ms2pip)

#### Pip package

With Python 3.6 or higher, run:
```
pip install ms2pip
```

Compiled wheels are available for Python 3.6, 3.7, and 3.8, on 64bit Linux,
Windows, and macOS. This should install MS²PIP in a few seconds. For other
platforms, MS²PIP can be built from source, although it can take a while
to compile the large prediction models.

We recommend using a [venv](https://docs.python.org/3/library/venv.html) or
[conda](https://docs.conda.io/en/latest/) virtual environment.

#### Conda package

Install with activated bioconda and conda-forge channels:
```
conda install -c defaults -c bioconda -c conda-forge ms2pip
```

Bioconda packages are only available for Linux and macOS.

#### Docker container
First check the latest version tag on [biocontainers/ms2pip/tags](https://quay.io/repository/biocontainers/ms2pip?tab=tags). Then pull and run the container with
```
docker container run -v <working-directory>:/data -w /data quay.io/biocontainers/ms2pip:<tag> ms2pip <ms2pip-arguments>
```
where `<working-directory>` is the absolute path to the directory with your MS²PIP input files, `<tag>` is the container version tag, and `<ms2pip-arguments>` are the ms2pip command line options (see [Command line interface](#command-line-interface)).

#### For development

Clone this repository and use pip to install an editable version:
```
pip install --editable .
```

---

## Usage

1. [Fast prediction of large amounts of peptide spectra](#fast-prediction-of-large-amounts-of-peptide-spectra)
    1. [Command line interface](#command-line-interface)
    2. [Python API](#python-api)
    3. [Input files](#input-files)
        1. [Config file](#config-file)
        2. [PEPREC file](#peprec-file)
        3. [Spectrum file (optional)](#spectrum-file-optional)
        4. [Examples](#examples)
    4. [Output](#output)
2. [Predict and plot a single peptide spectrum](#predict-and-plot-a-single-peptide-spectrum)


### Fast prediction of large amounts of peptide spectra

MS²PIP comes with [pre-trained models](#specialized-prediction-models) for a
variety of fragmentation methods and modifications. These models can easily be
applied by configuring MS²PIP in the [config file](#config-file) and providing a
list of peptides in the form of a [PEPREC file](#peprec-file). Optionally,
MS²PIP predictions can be compared to observed spectra in an
[MGF or mzmL file](#spectrum-file-optional).

#### Command line interface

To predict a large amount of peptide spectra, use `ms2pip`:
```
usage: ms2pip [-h] -c CONFIG_FILE [-s SPECTRUM_FILE] [-w FEATURE_VECTOR_OUTPUT]
       [-r] [-x] [-m] [-t] [-n NUM_CPU]
       [--sqldb-uri SQLDB_URI]
       <PEPREC file>

positional arguments:
  <PEPREC file>         list of peptides

optional arguments:
  -h, --help            show this help message and exit
  -c, --config-file     Configuration file: text-based (extensions `.txt`,
                        `.config`, or `.ms2pip`) or TOML (extension `.toml`).
  -s, --spectrum-file   MGF or mzML spectrum file (optional)
  -w, --vector-file     write feature vectors to FILE.{pkl,h5} (optional)
  -r, --retention-time  add retention time predictions (requires DeepLC python package)
  -x, --correlations    calculate correlations (if spectrum file is given)
  -m, --match-spectra   match peptides to spectra based on predicted spectra (if spectrum file is given)
  -n, --num-cpu         number of CPUs to use (default: all available)
  --sqldb-uri           use sql database of observed spectra instead of spectrum files
  --model-dir           custom directory for downloaded XGBoost model files. By default, `~/.ms2pip` is used.
```

#### Python API

The `MS2PIP` class can be imported from `ms2pip.ms2pipC` and run as follows:
```python
>>> from ms2pip.ms2pipC import MS2PIP
>>> params = {
...     "ms2pip": {
...         "ptm": [
...             "Oxidation,15.994915,opt,M",
...             "Carbamidomethyl,57.021464,opt,C",
...             "Acetyl,42.010565,opt,N-term",
...         ],
...         "frag_method": "HCD",
...         "frag_error": 0.02,
...         "out": "csv",
...         "sptm": [], "gptm": [],
...     }
... }
>>> ms2pip = MS2PIP("test.peprec", params=params, return_results=True)
>>> predictions = ms2pip.run()
```

#### Input files
##### Config file
Several MS²PIP options need to be set in this config file.
- `model=X` where X is one of the currently supported MS²PIP models (see
[Specialized prediction models](#specialized-prediction-models)).
- `frag_error=X` where is X is the fragmentation spectrum mass tolerance in Da
(only relevant if a spectrum file is passed).
- `out=X` where X is a comma-separated list of a selection of the currently
supported output file formats: `csv`, `mgf`, `msp`, `spectronaut`, or
`bibliospec` (SSL/MS2, also for Skyline). For example: `out=csv,msp`.
- `ptm=X,Y,opt,Z` for every peptide modification where:
  - `X` is the PTM name and needs to match the names that are used in the
  [PEPREC file](#peprec-file)). If the `--retention_time` option is used, PTM names must
  match the PSI-MOD/Unimod names embedded in DeepLC (see
  [DeepLC documentation](https://github.com/compomics/DeepLC)).
  - `Y` is the mass shift in Da associated with the PTM.
  - `Z` is the one-letter code of the amino acid AA that is modified by the PTM.
For N- and C-terminal modifications, `Z` should be `N-term` or `C-term`,
respectively.

##### PEPREC file
To apply the pre-trained models you need to pass *only* a `<PEPREC file>` to
MS²PIP. This file contains the peptide sequences for which you want to predict
peak intensities. The file is space separated and contains at least the
following four columns:

- `spec_id`: unique id (string) for the peptide/spectrum. This must match the
`TITLE` field in the corresponding MGF file, or `nativeID` (MS:1000767) in the
corresponding mzML file, if given.
- `modifications`: Amino acid modifications for the given peptide. Every
modification is listed as `location|name`, separated by a pipe (`|`) between the
location, the name, and other modifications. `location` is an integer counted
starting at `1` for the first AA. `0` is reserved for N-terminal modifications,
`-1` for C-terminal modifications. `name` has to correspond to a modification
listed in the [Config file](#config-file). Unmodified peptides are marked with
a hyphen (`-`).
- `peptide`: the unmodified amino acid sequence.
- `charge`: precursor charge state as an integer (without `+`).

Peptides must be strictly longer than 2 and shorter than 100 amino acids and
cannot contain the following amino acid one-letter codes: B, J, O, U, X or Z.
Peptides not fulfilling these requirements will be filtered out and will not be
reported in the output.

In the [conversion_tools](https://github.com/compomics/ms2pip_c/tree/releases/conversion_tools)
folder, we provide a host of Python scripts to convert common search engine
output files to a PEPREC file.

To start from a FASTA file, see [fasta2speclib](http://compomics.github.io/projects/ms2pip_c/wiki/fasta2speclib).


##### Spectrum file (optional)
Optionally, an MGF or mzML file with measured spectra can be passed to MS²PIP. In this
case, MS²PIP will calculate correlations between the measured and predicted
peak intensities. Make sure that the PEPREC `spec_id` matches the MGF `TITLE`
field or mzML `nativeID`. Spectra present in the spectrum file, but missing in the
PEPREC file (and vice versa) will be skipped.

##### Examples
Suppose the **config file** contains the following lines
```
model=HCD
frag_error=0.02
out=csv,mgf,msp
ptm=Carbamidomethyl,57.02146,opt,C
ptm=Acetyl,42.010565,opt,N-term
ptm=Glyloss,-58.005479,opt,C-term
```
then the **PEPREC file** could look like this:
```
spec_id modifications peptide charge
peptide1 - ACDEK 2
peptide2 2|Carbamidomethyl ACDEFGR 3
peptide3 0|Acetyl|2|Carbamidomethyl ACDEFGHIK 2
```
In this example, `peptide3` is N-terminally acetylated and carries a
carbamidomethyl on its second amino acid.

The corresponding (optional) **MGF file** can contain the following spectrum:
```
BEGIN IONS
TITLE=peptide1
PEPMASS=283.11849750978325
CHARGE=2+
72.04434967 0.00419513
147.11276245 0.17418982
175.05354309 0.03652963
...
END IONS
```

#### Output
The predictions are saved in the output file(s) specified in the
[config file](#config-file). Note that the normalization of intensities depends
on the output file format. In the CSV file output, intensities are
log2-transformed. To "unlog" the intensities, use the following formula:
`intensity = (2 ** log2_intensity) - 0.001`.


### Predict and plot a single peptide spectrum
With `ms2pip-single-prediction` a single peptide spectrum can be predicted with MS²PIP
and plotted with [spectrum_utils](https://spectrum-utils.readthedocs.io/). For instance,

```sh
ms2pip-single-prediction "PGAQANPYSR" "-" 3 --model TMT
```

results in:

![Predicted spectrum](img/PGAQANPYSR-3-TMT.png)

Run `ms2pip-single-prediction --help` for more details.

---

## Specialized prediction models
MS²PIP contains multiple specialized prediction models, fit for peptide spectra
with different properties. These properties include fragmentation method,
instrument, labeling techniques and modifications. As all of these properties
can influence fragmentation patterns, it is important to match the MS²PIP model
to the properties of your experimental dataset.

Currently the following models are supported in MS²PIP: `HCD`, `CID`, `iTRAQ`,
`iTRAQphospho`, `TMT`, `TTOF5600`, `HCDch2` and `CIDch2`. The last two "ch2"
models also include predictions for doubly charged fragment ions (b++ and y++),
next to the predictions for singly charged b- and y-ions.

### MS² acquisition information and peptide properties of the models' training datasets

| Model | Fragmentation method | MS² mass analyzer | Peptide properties |
| - | - | - | - |
| HCD2019 | HCD | Orbitrap | Tryptic digest |
| HCD2021 | HCD | Orbitrap | Tryptic/ Chymotrypsin digest |
| CID | CID | Linear ion trap | Tryptic digest |
| iTRAQ | HCD | Orbitrap | Tryptic digest, iTRAQ-labeled |
| iTRAQphospho | HCD | Orbitrap | Tryptic digest, iTRAQ-labeled, enriched for phosphorylation |
| TMT | HCD | Orbitrap | Tryptic digest, TMT-labeled |
| TTOF5600 | CID | Quadrupole Time-of-Flight | Tryptic digest |
| HCDch2 | HCD | Orbitrap | Tryptic digest |
| CIDch2 | CID | Linear ion trap | Tryptic digest |
| Immuno-HCD | HCD | Orbitrap | Immunopeptides |
| CID-TMT | CID | Linear ion trap | Tryptic digest, TMT-labeled |
| timsTOF2023 | CID | Ion mobility quadrupole time-of-flight | Tryptic-, elastase digest, immuno class 1 |
| timsTOF2024 | CID | Ion mobility quadrupole time-of-flight | Tryptic-, elastase digest, immuno class 1 & class 2 |

### Models, version numbers, and the train and test datasets used to create each model

| Model | Current version | Train-test dataset (unique peptides) | Evaluation dataset (unique peptides) | Median Pearson correlation on evaluation dataset |
| - | - | - | - | - |
| HCD2019 | v20190107 | [MassIVE-KB](https://doi.org/10.1016/j.cels.2018.08.004) (1 623 712) | [PXD008034](https://doi.org/10.1016/j.jprot.2017.12.006) (35 269) | 0.903786 |
| CID | v20190107 | [NIST CID Human](https://chemdata.nist.gov/) (340 356) | [NIST CID Yeast](https://chemdata.nist.gov/) (92 609) | 0.904947 |
| iTRAQ | v20190107 | [NIST iTRAQ](https://chemdata.nist.gov/) (704 041) | [PXD001189](https://doi.org/10.1182/blood-2016-05-714048) (41 502) | 0.905870 |
| iTRAQphospho | v20190107 | [NIST iTRAQ phospho](https://chemdata.nist.gov/) (183 383) | [PXD001189](https://doi.org/10.1182/blood-2016-05-714048) (9 088) | 0.843898 |
| TMT | v20190107 | [Peng Lab TMT Spectral Library](https://doi.org/10.1021/acs.jproteome.8b00594) (1 185 547) | [PXD009495](https://doi.org/10.15252/msb.20188242) (36 137) | 0.950460 |
| TTOF5600 | v20190107 | [PXD000954](https://doi.org/10.1038/sdata.2014.31) (215 713) | [PXD001587](https://doi.org/10.1038/nmeth.3255) (15 111) | 0.746823 |
| HCDch2 | v20190107 | [MassIVE-KB](https://doi.org/10.1016/j.cels.2018.08.004) (1 623 712) | [PXD008034](https://doi.org/10.1016/j.jprot.2017.12.006) (35 269) | 0.903786 (+) and 0.644162 (++) |
| CIDch2 | v20190107 | [NIST CID Human](https://chemdata.nist.gov/) (340 356) | [NIST CID Yeast](https://chemdata.nist.gov/) (92 609) | 0.904947 (+) and 0.813342 (++) |
| HCD2021 | v20210416 | [Combined dataset] (520 579) | [PXD008034](https://doi.org/10.1016/j.jprot.2017.12.006) (35 269)  | 0.932361
| Immuno-HCD | v20210316 | [Combined dataset] (460 191) | [PXD005231 (HLA-I)](https://doi.org/10.1101/098780) (46 753) <br>[PXD020011 (HLA-II)](https://doi.org/10.3389/fimmu.2020.01981 ) (23 941) | 0.963736<br>0.942383
| CID-TMT | v20220104 | [in-house dataset] (72 138) | [PXD005890](https://doi.org/10.1021/acs.jproteome.7b00091) (69 768) | 0.851085
| timsTOF2023 | v20230912 | [Combined dataset] (234 973) | PXD043026<br>PXD046535<br>PXD046543 (13 012) | 0.892540 (tryptic)<br>0.871258 (elastase)<br>0.899834 (class I)<br>0.635548 (class II)
| timsTOF2024 | v20240105 | [Combined dataset]  (480 024) | PXD043026<br>PXD046535<br>PXD046543<br>PXD038782 (25 265)  | 0.883270 (tryptic)<br>0.814374 (elastase)<br>0.887192 (class I)<br>0.847951 (class II)


To train custom MS²PIP models, please refer to [Training new MS²PIP models](http://compomics.github.io/projects/ms2pip_c/wiki/Training-new-MS2PIP-models.html) on our Wiki pages.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.github.com/compomics/ms2pip_c",
    "name": "ms2pip",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4",
    "maintainer_email": "",
    "keywords": "MS2PIP,Proteomics,peptides,peak intensity prediction,spectrum,machine learning,spectral library,fasta2speclib",
    "author": "Sven Degroeve, Ralf Gabriels, Kevin Velghe, Ana S\u00edlvia C. Silva, Arthur Declercq",
    "author_email": "sven.degroeve@vib-ugent.be",
    "download_url": "https://files.pythonhosted.org/packages/b1/08/e41a5d82fc6528312c3678ec0df65a52efb4aaa443b0ae8738f0d813ce1a/ms2pip-3.13.0.tar.gz",
    "platform": null,
    "description": "[<img src=\"https://github.com/compomics/ms2pip_c/raw/releases/img/ms2pip_logo_1000px.png\" width=\"150\" height=\"150\" />](https://iomics.ugent.be/ms2pip/)\n<br/><br/>\n\n[![GitHub release](https://img.shields.io/github/v/release/compomics/ms2pip_c?include_prereleases&style=flat-square)](https://github.com/compomics/ms2pip_c/releases/latest/)\n[![PyPI](https://img.shields.io/pypi/v/ms2pip?style=flat-square)](https://pypi.org/project/ms2pip/)\n[![Tests](https://img.shields.io/github/actions/workflow/status/compomics/ms2pip_c/test.yml?branch=releases&label=tests&style=flat-square)](https://github.com/compomics/ms2pip_c/actions/workflows/test.yml)\n[![Build](https://img.shields.io/github/actions/workflow/status/compomics/ms2pip_c/build_and_publish.yml?style=flat-square)](https://github.com/compomics/ms2pip_c/actions/workflows/build_and_publish.yml)\n[![Open issues](https://img.shields.io/github/issues/compomics/ms2pip_c?style=flat-square)](https://github.com/compomics/ms2pip_c/issues/)\n[![Last commit](https://img.shields.io/github/last-commit/compomics/ms2pip_c?style=flat-square)](https://github.com/compomics/ms2pip_c/commits/releases/)\n[![GitHub](https://img.shields.io/github/license/compomics/ms2pip_c?style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0)\n[![Twitter](https://img.shields.io/twitter/follow/compomics?style=social)](https://twitter.com/compomics)\n\nMS\u00b2PIP: MS\u00b2 Peak Intensity Prediction - Fast and accurate peptide fragmention\nspectrum prediction for multiple fragmentation methods, instruments and labeling techniques.\n\n---\n\n- [Introduction](#introduction)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Specialized prediction models](#specialized-prediction-models)\n\n---\n\n## Introduction\nMS\u00b2PIP is a tool to predict MS\u00b2 peak intensities from peptide sequences. The result is\na predicted peptide fragmentation spectrum that accurately resembles its observed\nequivalent. These predictions can be used to validate peptide identifications, generate\nproteome-wide spectral libraries, or to select discriminative transitions for targeted\nproteomics. MS\u00b2PIP employs the XGBoost machine learning algorithm and is written in\nPython.\n\nYou can install MS\u00b2PIP on your machine by following the\n[installation instructions](#installation) below. For a more user-friendly experience,\ngo to the [MS\u00b2PIP web server](https://iomics.ugent.be/ms2pip). There, you can easily\nupload a list of peptide sequences, after which the corresponding predicted MS\u00b2 spectra\ncan be downloaded in multiple file formats. The web server can also be contacted\nthrough the [RESTful API](https://iomics.ugent.be/ms2pip/api/).\n\nTo generate a predicted spectral library starting from a FASTA file, we\ndeveloped a pipeline called fasta2speclib. Usage of this pipeline is described\non the\n[fasta2speclib wiki page](http://compomics.github.io/projects/ms2pip_c/wiki/fasta2speclib).\nFasta2speclib was developed in collaboration with the ProGenTomics group for the\n[MS\u00b2PIP for DIA](https://github.com/brvpuyve/MS2PIP-for-DIA) project.\n\nTo improve the sensitivity of your peptide identification pipeline with MS\u00b2PIP\npredictions, check out [MS\u00b2Rescore](https://github.com/compomics/ms2rescore/).\n\nIf you use MS\u00b2PIP for your research, please cite the following publication:\n- Gabriels, R., Martens, L., & Degroeve, S. (2019). Updated MS\u00b2PIP web server\ndelivers fast and accurate MS\u00b2 peak intensity prediction for multiple\nfragmentation methods, instruments and labeling techniques. *Nucleic Acids\nResearch* [doi:10.1093/nar/gkz299](https://doi.org/10.1093/nar/gkz299)\n\nPrior MS\u00b2PIP publications:\n- Degroeve, S., Maddelein, D., & Martens, L. (2015). MS\u00b2PIP prediction server:\ncompute and visualize MS\u00b2 peak intensity predictions for CID and HCD\nfragmentation. *Nucleic Acids Research*, 43(W1), W326\u2013W330.\n[doi:10.1093/nar/gkv542](https://doi.org/10.1093/nar/gkv542)\n- Degroeve, S., & Martens, L. (2013). MS\u00b2PIP: a tool for MS/MS peak intensity\nprediction. *Bioinformatics (Oxford, England)*, 29(24), 3199\u2013203.\n[doi:10.1093/bioinformatics/btt544](https://doi.org/10.1093/bioinformatics/btt544)\n\nPlease also take note of, and mention, the MS\u00b2PIP version you used.\n\n---\n\n## Installation\n\n[![install pip](https://flat.badgen.net/badge/install%20with/pip/green)](https://pypi.org/project/ms2pip/)\n[![install bioconda](https://flat.badgen.net/badge/install%20with/bioconda/green)](https://bioconda.github.io/recipes/ms2pip/README.html)\n[![container](https://flat.badgen.net/badge/pull/biocontainer/blue?icon=docker)](https://quay.io/repository/biocontainers/ms2pip)\n\n#### Pip package\n\nWith Python 3.6 or higher, run:\n```\npip install ms2pip\n```\n\nCompiled wheels are available for Python 3.6, 3.7, and 3.8, on 64bit Linux,\nWindows, and macOS. This should install MS\u00b2PIP in a few seconds. For other\nplatforms, MS\u00b2PIP can be built from source, although it can take a while\nto compile the large prediction models.\n\nWe recommend using a [venv](https://docs.python.org/3/library/venv.html) or\n[conda](https://docs.conda.io/en/latest/) virtual environment.\n\n#### Conda package\n\nInstall with activated bioconda and conda-forge channels:\n```\nconda install -c defaults -c bioconda -c conda-forge ms2pip\n```\n\nBioconda packages are only available for Linux and macOS.\n\n#### Docker container\nFirst check the latest version tag on [biocontainers/ms2pip/tags](https://quay.io/repository/biocontainers/ms2pip?tab=tags). Then pull and run the container with\n```\ndocker container run -v <working-directory>:/data -w /data quay.io/biocontainers/ms2pip:<tag> ms2pip <ms2pip-arguments>\n```\nwhere `<working-directory>` is the absolute path to the directory with your MS\u00b2PIP input files, `<tag>` is the container version tag, and `<ms2pip-arguments>` are the ms2pip command line options (see [Command line interface](#command-line-interface)).\n\n#### For development\n\nClone this repository and use pip to install an editable version:\n```\npip install --editable .\n```\n\n---\n\n## Usage\n\n1. [Fast prediction of large amounts of peptide spectra](#fast-prediction-of-large-amounts-of-peptide-spectra)\n    1. [Command line interface](#command-line-interface)\n    2. [Python API](#python-api)\n    3. [Input files](#input-files)\n        1. [Config file](#config-file)\n        2. [PEPREC file](#peprec-file)\n        3. [Spectrum file (optional)](#spectrum-file-optional)\n        4. [Examples](#examples)\n    4. [Output](#output)\n2. [Predict and plot a single peptide spectrum](#predict-and-plot-a-single-peptide-spectrum)\n\n\n### Fast prediction of large amounts of peptide spectra\n\nMS\u00b2PIP comes with [pre-trained models](#specialized-prediction-models) for a\nvariety of fragmentation methods and modifications. These models can easily be\napplied by configuring MS\u00b2PIP in the [config file](#config-file) and providing a\nlist of peptides in the form of a [PEPREC file](#peprec-file). Optionally,\nMS\u00b2PIP predictions can be compared to observed spectra in an\n[MGF or mzmL file](#spectrum-file-optional).\n\n#### Command line interface\n\nTo predict a large amount of peptide spectra, use `ms2pip`:\n```\nusage: ms2pip [-h] -c CONFIG_FILE [-s SPECTRUM_FILE] [-w FEATURE_VECTOR_OUTPUT]\n       [-r] [-x] [-m] [-t] [-n NUM_CPU]\n       [--sqldb-uri SQLDB_URI]\n       <PEPREC file>\n\npositional arguments:\n  <PEPREC file>         list of peptides\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -c, --config-file     Configuration file: text-based (extensions `.txt`,\n                        `.config`, or `.ms2pip`) or TOML (extension `.toml`).\n  -s, --spectrum-file   MGF or mzML spectrum file (optional)\n  -w, --vector-file     write feature vectors to FILE.{pkl,h5} (optional)\n  -r, --retention-time  add retention time predictions (requires DeepLC python package)\n  -x, --correlations    calculate correlations (if spectrum file is given)\n  -m, --match-spectra   match peptides to spectra based on predicted spectra (if spectrum file is given)\n  -n, --num-cpu         number of CPUs to use (default: all available)\n  --sqldb-uri           use sql database of observed spectra instead of spectrum files\n  --model-dir           custom directory for downloaded XGBoost model files. By default, `~/.ms2pip` is used.\n```\n\n#### Python API\n\nThe `MS2PIP` class can be imported from `ms2pip.ms2pipC` and run as follows:\n```python\n>>> from ms2pip.ms2pipC import MS2PIP\n>>> params = {\n...     \"ms2pip\": {\n...         \"ptm\": [\n...             \"Oxidation,15.994915,opt,M\",\n...             \"Carbamidomethyl,57.021464,opt,C\",\n...             \"Acetyl,42.010565,opt,N-term\",\n...         ],\n...         \"frag_method\": \"HCD\",\n...         \"frag_error\": 0.02,\n...         \"out\": \"csv\",\n...         \"sptm\": [], \"gptm\": [],\n...     }\n... }\n>>> ms2pip = MS2PIP(\"test.peprec\", params=params, return_results=True)\n>>> predictions = ms2pip.run()\n```\n\n#### Input files\n##### Config file\nSeveral MS\u00b2PIP options need to be set in this config file.\n- `model=X` where X is one of the currently supported MS\u00b2PIP models (see\n[Specialized prediction models](#specialized-prediction-models)).\n- `frag_error=X` where is X is the fragmentation spectrum mass tolerance in Da\n(only relevant if a spectrum file is passed).\n- `out=X` where X is a comma-separated list of a selection of the currently\nsupported output file formats: `csv`, `mgf`, `msp`, `spectronaut`, or\n`bibliospec` (SSL/MS2, also for Skyline). For example: `out=csv,msp`.\n- `ptm=X,Y,opt,Z` for every peptide modification where:\n  - `X` is the PTM name and needs to match the names that are used in the\n  [PEPREC file](#peprec-file)). If the `--retention_time` option is used, PTM names must\n  match the PSI-MOD/Unimod names embedded in DeepLC (see\n  [DeepLC documentation](https://github.com/compomics/DeepLC)).\n  - `Y` is the mass shift in Da associated with the PTM.\n  - `Z` is the one-letter code of the amino acid AA that is modified by the PTM.\nFor N- and C-terminal modifications, `Z` should be `N-term` or `C-term`,\nrespectively.\n\n##### PEPREC file\nTo apply the pre-trained models you need to pass *only* a `<PEPREC file>` to\nMS\u00b2PIP. This file contains the peptide sequences for which you want to predict\npeak intensities. The file is space separated and contains at least the\nfollowing four columns:\n\n- `spec_id`: unique id (string) for the peptide/spectrum. This must match the\n`TITLE` field in the corresponding MGF file, or `nativeID` (MS:1000767) in the\ncorresponding mzML file, if given.\n- `modifications`: Amino acid modifications for the given peptide. Every\nmodification is listed as `location|name`, separated by a pipe (`|`) between the\nlocation, the name, and other modifications. `location` is an integer counted\nstarting at `1` for the first AA. `0` is reserved for N-terminal modifications,\n`-1` for C-terminal modifications. `name` has to correspond to a modification\nlisted in the [Config file](#config-file). Unmodified peptides are marked with\na hyphen (`-`).\n- `peptide`: the unmodified amino acid sequence.\n- `charge`: precursor charge state as an integer (without `+`).\n\nPeptides must be strictly longer than 2 and shorter than 100 amino acids and\ncannot contain the following amino acid one-letter codes: B, J, O, U, X or Z.\nPeptides not fulfilling these requirements will be filtered out and will not be\nreported in the output.\n\nIn the [conversion_tools](https://github.com/compomics/ms2pip_c/tree/releases/conversion_tools)\nfolder, we provide a host of Python scripts to convert common search engine\noutput files to a PEPREC file.\n\nTo start from a FASTA file, see [fasta2speclib](http://compomics.github.io/projects/ms2pip_c/wiki/fasta2speclib).\n\n\n##### Spectrum file (optional)\nOptionally, an MGF or mzML file with measured spectra can be passed to MS\u00b2PIP. In this\ncase, MS\u00b2PIP will calculate correlations between the measured and predicted\npeak intensities. Make sure that the PEPREC `spec_id` matches the MGF `TITLE`\nfield or mzML `nativeID`. Spectra present in the spectrum file, but missing in the\nPEPREC file (and vice versa) will be skipped.\n\n##### Examples\nSuppose the **config file** contains the following lines\n```\nmodel=HCD\nfrag_error=0.02\nout=csv,mgf,msp\nptm=Carbamidomethyl,57.02146,opt,C\nptm=Acetyl,42.010565,opt,N-term\nptm=Glyloss,-58.005479,opt,C-term\n```\nthen the **PEPREC file** could look like this:\n```\nspec_id modifications peptide charge\npeptide1 - ACDEK 2\npeptide2 2|Carbamidomethyl ACDEFGR 3\npeptide3 0|Acetyl|2|Carbamidomethyl ACDEFGHIK 2\n```\nIn this example, `peptide3` is N-terminally acetylated and carries a\ncarbamidomethyl on its second amino acid.\n\nThe corresponding (optional) **MGF file** can contain the following spectrum:\n```\nBEGIN IONS\nTITLE=peptide1\nPEPMASS=283.11849750978325\nCHARGE=2+\n72.04434967 0.00419513\n147.11276245 0.17418982\n175.05354309 0.03652963\n...\nEND IONS\n```\n\n#### Output\nThe predictions are saved in the output file(s) specified in the\n[config file](#config-file). Note that the normalization of intensities depends\non the output file format. In the CSV file output, intensities are\nlog2-transformed. To \"unlog\" the intensities, use the following formula:\n`intensity = (2 ** log2_intensity) - 0.001`.\n\n\n### Predict and plot a single peptide spectrum\nWith `ms2pip-single-prediction` a single peptide spectrum can be predicted with MS\u00b2PIP\nand plotted with [spectrum_utils](https://spectrum-utils.readthedocs.io/). For instance,\n\n```sh\nms2pip-single-prediction \"PGAQANPYSR\" \"-\" 3 --model TMT\n```\n\nresults in:\n\n![Predicted spectrum](img/PGAQANPYSR-3-TMT.png)\n\nRun `ms2pip-single-prediction --help` for more details.\n\n---\n\n## Specialized prediction models\nMS\u00b2PIP contains multiple specialized prediction models, fit for peptide spectra\nwith different properties. These properties include fragmentation method,\ninstrument, labeling techniques and modifications. As all of these properties\ncan influence fragmentation patterns, it is important to match the MS\u00b2PIP model\nto the properties of your experimental dataset.\n\nCurrently the following models are supported in MS\u00b2PIP: `HCD`, `CID`, `iTRAQ`,\n`iTRAQphospho`, `TMT`, `TTOF5600`, `HCDch2` and `CIDch2`. The last two \"ch2\"\nmodels also include predictions for doubly charged fragment ions (b++ and y++),\nnext to the predictions for singly charged b- and y-ions.\n\n### MS\u00b2 acquisition information and peptide properties of the models' training datasets\n\n| Model | Fragmentation method | MS\u00b2 mass analyzer | Peptide properties |\n| - | - | - | - |\n| HCD2019 | HCD | Orbitrap | Tryptic digest |\n| HCD2021 | HCD | Orbitrap | Tryptic/ Chymotrypsin digest |\n| CID | CID | Linear ion trap | Tryptic digest |\n| iTRAQ | HCD | Orbitrap | Tryptic digest, iTRAQ-labeled |\n| iTRAQphospho | HCD | Orbitrap | Tryptic digest, iTRAQ-labeled, enriched for phosphorylation |\n| TMT | HCD | Orbitrap | Tryptic digest, TMT-labeled |\n| TTOF5600 | CID | Quadrupole Time-of-Flight | Tryptic digest |\n| HCDch2 | HCD | Orbitrap | Tryptic digest |\n| CIDch2 | CID | Linear ion trap | Tryptic digest |\n| Immuno-HCD | HCD | Orbitrap | Immunopeptides |\n| CID-TMT | CID | Linear ion trap | Tryptic digest, TMT-labeled |\n| timsTOF2023 | CID | Ion mobility quadrupole time-of-flight | Tryptic-, elastase digest, immuno class 1 |\n| timsTOF2024 | CID | Ion mobility quadrupole time-of-flight | Tryptic-, elastase digest, immuno class 1 & class 2 |\n\n### Models, version numbers, and the train and test datasets used to create each model\n\n| Model | Current version | Train-test dataset (unique peptides) | Evaluation dataset (unique peptides) | Median Pearson correlation on evaluation dataset |\n| - | - | - | - | - |\n| HCD2019 | v20190107 | [MassIVE-KB](https://doi.org/10.1016/j.cels.2018.08.004) (1 623 712) | [PXD008034](https://doi.org/10.1016/j.jprot.2017.12.006) (35 269) | 0.903786 |\n| CID | v20190107 | [NIST CID Human](https://chemdata.nist.gov/) (340 356) | [NIST CID Yeast](https://chemdata.nist.gov/) (92 609) | 0.904947 |\n| iTRAQ | v20190107 | [NIST iTRAQ](https://chemdata.nist.gov/) (704 041) | [PXD001189](https://doi.org/10.1182/blood-2016-05-714048) (41 502) | 0.905870 |\n| iTRAQphospho | v20190107 | [NIST iTRAQ phospho](https://chemdata.nist.gov/) (183 383) | [PXD001189](https://doi.org/10.1182/blood-2016-05-714048) (9 088) | 0.843898 |\n| TMT | v20190107 | [Peng Lab TMT Spectral Library](https://doi.org/10.1021/acs.jproteome.8b00594) (1 185 547) | [PXD009495](https://doi.org/10.15252/msb.20188242) (36 137) | 0.950460 |\n| TTOF5600 | v20190107 | [PXD000954](https://doi.org/10.1038/sdata.2014.31) (215 713) | [PXD001587](https://doi.org/10.1038/nmeth.3255) (15 111) | 0.746823 |\n| HCDch2 | v20190107 | [MassIVE-KB](https://doi.org/10.1016/j.cels.2018.08.004) (1 623 712) | [PXD008034](https://doi.org/10.1016/j.jprot.2017.12.006) (35 269) | 0.903786 (+) and 0.644162 (++) |\n| CIDch2 | v20190107 | [NIST CID Human](https://chemdata.nist.gov/) (340 356) | [NIST CID Yeast](https://chemdata.nist.gov/) (92 609) | 0.904947 (+) and 0.813342 (++) |\n| HCD2021 | v20210416 | [Combined dataset] (520 579) | [PXD008034](https://doi.org/10.1016/j.jprot.2017.12.006) (35 269)  | 0.932361\n| Immuno-HCD | v20210316 | [Combined dataset] (460 191) | [PXD005231 (HLA-I)](https://doi.org/10.1101/098780) (46 753) <br>[PXD020011 (HLA-II)](https://doi.org/10.3389/fimmu.2020.01981 ) (23 941) | 0.963736<br>0.942383\n| CID-TMT | v20220104 | [in-house dataset] (72 138) | [PXD005890](https://doi.org/10.1021/acs.jproteome.7b00091) (69 768) | 0.851085\n| timsTOF2023 | v20230912 | [Combined dataset] (234 973) | PXD043026<br>PXD046535<br>PXD046543 (13 012) | 0.892540 (tryptic)<br>0.871258 (elastase)<br>0.899834 (class I)<br>0.635548 (class II)\n| timsTOF2024 | v20240105 | [Combined dataset]  (480 024) | PXD043026<br>PXD046535<br>PXD046543<br>PXD038782 (25 265)  | 0.883270 (tryptic)<br>0.814374 (elastase)<br>0.887192 (class I)<br>0.847951 (class II)\n\n\nTo train custom MS\u00b2PIP models, please refer to [Training new MS\u00b2PIP models](http://compomics.github.io/projects/ms2pip_c/wiki/Training-new-MS2PIP-models.html) on our Wiki pages.\n",
    "bugtrack_url": null,
    "license": "apache-2.0",
    "summary": "MS\u00b2PIP: MS\u00b2 Peak Intensity Prediction",
    "version": "3.13.0",
    "project_urls": {
        "Documentation": "http://compomics.github.io/projects/ms2pip_c",
        "Homepage": "https://www.github.com/compomics/ms2pip_c",
        "Publication": "https://doi.org/10.1093/nar/gkz299/",
        "Source": "https://github.com/compomics/ms2pip_c",
        "Tracker": "https://github.com/compomics/ms2pip_c/issues",
        "Web server": "https://iomics.ugent.be/ms2pip/"
    },
    "split_keywords": [
        "ms2pip",
        "proteomics",
        "peptides",
        "peak intensity prediction",
        "spectrum",
        "machine learning",
        "spectral library",
        "fasta2speclib"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c12307ba9eb11a787d3ad1e472996d0acba35bd0fc0a6c5c474211b274519c67",
                "md5": "5bdca4e739aa643f242a292c571072b2",
                "sha256": "55e6976b42c2e9b8a2662c1725418a1b2edb512b02be2bbb4b6d849e46dddf24"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bdca4e739aa643f242a292c571072b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 14092718,
            "upload_time": "2024-03-05T16:39:05",
            "upload_time_iso_8601": "2024-03-05T16:39:05.958590Z",
            "url": "https://files.pythonhosted.org/packages/c1/23/07ba9eb11a787d3ad1e472996d0acba35bd0fc0a6c5c474211b274519c67/ms2pip-3.13.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "934c15a6e04d5294987d8734fa53e9f4e4203d62aa7b86c7c17332764a6400c3",
                "md5": "2740afd78bd0d601f21ed6a64aa0b386",
                "sha256": "9a4d4a86d9a2d551ce752cbf4ff39449cd58e3a2617801becc1150eb6f82909c"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2740afd78bd0d601f21ed6a64aa0b386",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 15558236,
            "upload_time": "2024-03-05T16:39:08",
            "upload_time_iso_8601": "2024-03-05T16:39:08.445109Z",
            "url": "https://files.pythonhosted.org/packages/93/4c/15a6e04d5294987d8734fa53e9f4e4203d62aa7b86c7c17332764a6400c3/ms2pip-3.13.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea54b72c1d4acc2f6900474a13f24059d98cc84818e4534143da36ca2ba77854",
                "md5": "64ad9e48dd8ab172549ae2526be92cb7",
                "sha256": "5ee12af3a3301915c02ba05d9f40472a7be0d120c23f1e920a4478d9e2ba94cc"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64ad9e48dd8ab172549ae2526be92cb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4",
            "size": 13683968,
            "upload_time": "2024-03-05T16:39:11",
            "upload_time_iso_8601": "2024-03-05T16:39:11.906710Z",
            "url": "https://files.pythonhosted.org/packages/ea/54/b72c1d4acc2f6900474a13f24059d98cc84818e4534143da36ca2ba77854/ms2pip-3.13.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "952e7e7cb3dc527d84eaad381ae899551b4ce625b8f52fa3aeadf8c9e862862a",
                "md5": "6c200db488b5c4d121e445f91722f4fb",
                "sha256": "1eee48ade2bc657b6e164e06dc3e512425f2eb41e9c5baefaea91721f728a0fe"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c200db488b5c4d121e445f91722f4fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 14009958,
            "upload_time": "2024-03-05T16:39:14",
            "upload_time_iso_8601": "2024-03-05T16:39:14.726278Z",
            "url": "https://files.pythonhosted.org/packages/95/2e/7e7cb3dc527d84eaad381ae899551b4ce625b8f52fa3aeadf8c9e862862a/ms2pip-3.13.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7bf13e49b59355deaddd415c6a4aae83ae2db40d18cb8f0beb1c35e4734be74",
                "md5": "55d5a43010fa902f5257b3a4334cb88a",
                "sha256": "b42b7753f85e34fff88169c1593c1a35d1e22b0d04619b6433a3eaae924e36ea"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55d5a43010fa902f5257b3a4334cb88a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 15484083,
            "upload_time": "2024-03-05T16:39:17",
            "upload_time_iso_8601": "2024-03-05T16:39:17.766707Z",
            "url": "https://files.pythonhosted.org/packages/b7/bf/13e49b59355deaddd415c6a4aae83ae2db40d18cb8f0beb1c35e4734be74/ms2pip-3.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "955e4185383946a68fe4300e49548a3bbc2658b9400e7e771f80a74d1b505332",
                "md5": "81622da9f5370207cae5c7f355c7293e",
                "sha256": "cb783e00aaf2ea54ff1bbb8bac095a4c9ba721d223bcd7df6c7ebbe6c37f4230"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81622da9f5370207cae5c7f355c7293e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4",
            "size": 13604123,
            "upload_time": "2024-03-05T16:39:20",
            "upload_time_iso_8601": "2024-03-05T16:39:20.448157Z",
            "url": "https://files.pythonhosted.org/packages/95/5e/4185383946a68fe4300e49548a3bbc2658b9400e7e771f80a74d1b505332/ms2pip-3.13.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c24caac45c068b65bde8a6e4f16b3784363f940bfbd6d304e933e27280bd64b6",
                "md5": "337ce4426e67f9216b69ecce460c7ffd",
                "sha256": "001d8168b9f6e47a374dd987bc5c2a410caa0d228b027dc40dc74adb4d3a78f9"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "337ce4426e67f9216b69ecce460c7ffd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 14094648,
            "upload_time": "2024-03-05T16:39:23",
            "upload_time_iso_8601": "2024-03-05T16:39:23.283199Z",
            "url": "https://files.pythonhosted.org/packages/c2/4c/aac45c068b65bde8a6e4f16b3784363f940bfbd6d304e933e27280bd64b6/ms2pip-3.13.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1aca8231dc5fc54a93318d7fab09728a8c930dcc0b918d42b8010f47b105280",
                "md5": "3b071c4bf0ba3f9789792e37f8423cc2",
                "sha256": "d0485d8d13ac71c8571c6da2b164aad5be7f3cf740ac67a208bf90579557930e"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b071c4bf0ba3f9789792e37f8423cc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 15559876,
            "upload_time": "2024-03-05T16:39:26",
            "upload_time_iso_8601": "2024-03-05T16:39:26.224719Z",
            "url": "https://files.pythonhosted.org/packages/d1/ac/a8231dc5fc54a93318d7fab09728a8c930dcc0b918d42b8010f47b105280/ms2pip-3.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80e9cb7c28aeca14d82958ccb8852342b2ed3233515db20060ae292ef0990994",
                "md5": "0cecf0ff41b07dd66c34c99f58a87902",
                "sha256": "bdc86982c8416f939f00a54819f4b53573cc8ae133ca159d9cdc4fce5b98eda0"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0cecf0ff41b07dd66c34c99f58a87902",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4",
            "size": 13686413,
            "upload_time": "2024-03-05T16:39:29",
            "upload_time_iso_8601": "2024-03-05T16:39:29.153133Z",
            "url": "https://files.pythonhosted.org/packages/80/e9/cb7c28aeca14d82958ccb8852342b2ed3233515db20060ae292ef0990994/ms2pip-3.13.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc715f4fe926b201b0b712f72f935474871b070800fde05630504cdc747415a4",
                "md5": "24dac5c9403ddc287da6be79fa5cabf8",
                "sha256": "240ed3a54f7abad2ed5db582b96fe0146a3e3635ccfdc304ebfb6aabcba75107"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24dac5c9403ddc287da6be79fa5cabf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 15557619,
            "upload_time": "2024-03-05T16:39:32",
            "upload_time_iso_8601": "2024-03-05T16:39:32.123792Z",
            "url": "https://files.pythonhosted.org/packages/fc/71/5f4fe926b201b0b712f72f935474871b070800fde05630504cdc747415a4/ms2pip-3.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81de9a3e91b4ccd6460638d40f83fa5e6022030fb54c8ca95e9acbdd8b8e2f16",
                "md5": "04b4f43c988045be56e6e745f6bb2cab",
                "sha256": "c0c4800bda4ef406d73dab98378c3345f29fc4435e08a88a2eb476fed0794d44"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "04b4f43c988045be56e6e745f6bb2cab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4",
            "size": 13683827,
            "upload_time": "2024-03-05T16:39:34",
            "upload_time_iso_8601": "2024-03-05T16:39:34.320471Z",
            "url": "https://files.pythonhosted.org/packages/81/de/9a3e91b4ccd6460638d40f83fa5e6022030fb54c8ca95e9acbdd8b8e2f16/ms2pip-3.13.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b108e41a5d82fc6528312c3678ec0df65a52efb4aaa443b0ae8738f0d813ce1a",
                "md5": "81ee424d3d103a29ee24ff6851aa30cf",
                "sha256": "e8da78d99ed53fb0677bb9e8287f53a21e229d1aca987994018f8ff31965f46c"
            },
            "downloads": -1,
            "filename": "ms2pip-3.13.0.tar.gz",
            "has_sig": false,
            "md5_digest": "81ee424d3d103a29ee24ff6851aa30cf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4",
            "size": 5530876,
            "upload_time": "2024-03-05T16:39:36",
            "upload_time_iso_8601": "2024-03-05T16:39:36.924369Z",
            "url": "https://files.pythonhosted.org/packages/b1/08/e41a5d82fc6528312c3678ec0df65a52efb4aaa443b0ae8738f0d813ce1a/ms2pip-3.13.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-05 16:39:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "compomics",
    "github_project": "ms2pip_c",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ms2pip"
}
        
Elapsed time: 0.22934s