DeepLC: Retention time prediction for (modified) peptides using Deep Learning.
Project description
DeepLC: Retention time prediction for (modified) peptides using Deep Learning.
Introduction
DeepLC is a retention time predictor for (modified) peptides that employs Deep Learning. It's strength lies in the fact that it can accurately predict retention times for modified peptides, even if hasn't seen said modification during training.
DeepLC can be run with a graphical user interface (GUI) or as a Python package. In the latter case, DeepLC can be used from the command line, or as a python module.
Graphical user interface
Installation
- Download
deeplc_gui.zip
from the latest release and unzip. - Install DeepLC GUI with
install_gui_windows.bat
orinstall_gui_linux.sh
, depending on your operating system. - Run DeepLC GUI by running the
deeplc_gui.jar
.
Python package
Installation
Install with conda, using the bioconda and conda-forge channels:
conda install -c bioconda -c conda-forge deeplc
Or install with pip:
pip install deeplc
Command line interface
To use the DeepLC CLI, run:
deeplc --file_pred <path/to/peptide_file.csv>
We highly recommend to add a peptide file with known retention times for calibration:
deeplc --file_pred <path/to/peptide_file.csv> --file_cal <path/to/peptide_file_with_tr.csv>
For an overview of all CLI arguments, run deeplc --help
.
Python module
Minimal example:
import pandas as pd
from deeplc import DeepLC
peptide_file = "datasets/test_pred.csv"
calibration_file = "datasets/test_train.csv"
pep_df = pd.read_csv(peptide_file, sep=",")
pep_df['modifications'] = pep_df['modifications'].fillna("")
cal_df = pd.read_csv(calibration_file, sep=",")
cal_df['modifications'] = cal_df['modifications'].fillna("")
dlc = DeepLC()
dlc.calibrate_preds(seq_df=cal_df)
preds = dlc.make_preds(seq_df=pep_df)
For a more elaborate example, see examples/deeplc_example.py .
Input files
DeepLC expects comma-separated values (CSV) with the following columns:
seq
: unmodified peptide sequencesmodifications
: MS2PIP-style formatted modifications: Every modification is listed aslocation|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 Unimod (PSI-MS) name.tr
: retention time (only required for calibration)
For example:
seq,modifications,tr
AAGPSLSHTSGGTQSK,,12.1645
AAINQKLIETGER,6|Acetyl,34.095
AANDAGYFNDEMAPIEVKTK,12|Oxidation|18|Acetyl,37.3765
See examples/datasets for more examples.
Prediction models
DeepLC comes with multiple CNN models trained on data from various experimental settings:
Model filename | Experimental settings | Publication |
---|---|---|
full_hc_dia_fixed_mods.hdf5 | Reverse phase | Rosenberger et al. 2014 |
full_hc_LUNA_HILIC_fixed_mods.hdf5 | HILIC | Spicer et al. 2018 |
full_hc_LUNA_SILICA_fixed_mods.hdf5 | HILIC | Spicer et al. 2018 |
full_hc_PXD000954_fixed_mods.hdf5 | Reverse phase | Rosenberger et al. 2014 |
By default, DeepLC selects the best model based on the calibration dataset. If no calibration is performed, the first default model is selected. Always keep note of the used models and the DeepLC version.
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 Distribution
Built Distribution
File details
Details for the file deeplc-0.1.7.tar.gz
.
File metadata
- Download URL: deeplc-0.1.7.tar.gz
- Upload date:
- Size: 44.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4707dc490abfd6323876f2f0425e5fad6bc9b890c925a2bbe65e12b66fe938b1 |
|
MD5 | 4a0ad398fe9270692522b44e840fc4e0 |
|
BLAKE2b-256 | 90ac05f0fd59cf82a2fe2dfc3d20e9dead0e79a197e926814d721936192dba7e |
Provenance
File details
Details for the file deeplc-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: deeplc-0.1.7-py3-none-any.whl
- Upload date:
- Size: 44.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89806d786e30e36e0e54339289bd5d47e68544a38251a1a8d6c56eeb1e2373bf |
|
MD5 | f91e5190d0f3215b761710e275dec048 |
|
BLAKE2b-256 | 76412399356c98246cf1bc17d54021f712a49c8fd35366ac30036843fc08bc4b |