Skip to main content

A utility for statistical comparison of protein identification results in proteomics and calculation of quantitative metrics for total cellular response

Project description

Logo

Overview

QRePS is a tool for shotgun proteomics that performs statistical analysis on NSAF values in the results of proteome analysis. QRePS visualizes results of statistical testing with volcano plot and selects differentially regulated proteins (DRP) with different methods (listed below). Based on selected features QRePS calculates set of proteomic metrics and performs GO terms enrichment analysis with the use of STRING. New version of QRePS calculates proteomic metrics and performs GO analysis for DirectMS1Quant results.

DRP selection

QRePS proviDes three methods to select DRP:

  1. static - fold change and fdr thresholds are given by user
  2. semi-dynamic - fold change threshold is given by user and fdr threshold is calculated according to outliers rule: Q3 + 1.5 IQR
  3. dynamic - lower and upper fold change thresholds are calculated as Q1 - 1.5 IQR and Q3 + 1.5 IQR respectively, fdr threhold is calculated as in semi-dynamic

Metrics calculation

QRePS calculates following metrics

Installation

Install from PyPI

pip install QRePS

Alternatively, you can install directly from GitHub::

pip install git+https://github.com/kazakova/Metrics

Usage

qreps [-h]
             (--sample-file SAMPLE_FILE | --quantitation-file QUANTITATION_FILE | --ms1-file MS1_FILE)
             [--pattern PATTERN] [--labels LABELS [LABELS ...]]
             [--input-dir INPUT_DIR] [--output-dir OUTPUT_DIR]
             [--imputation {kNN,MinDet}] [--max-mv MAX_MV]
             [--thresholds {static,semi-dynamic,dynamic,ms1}]
             [--regulation {UP,DOWN,all}] [--species SPECIES]
             [--fold-change FOLD_CHANGE] [--alpha ALPHA]
             [--fasta-size FASTA_SIZE] [--report REPORT]

options:
  -h, --help            show this help message and exit
  --sample-file SAMPLE_FILE
                        Path to sample file.
  --quantitation-file QUANTITATION_FILE
                        Path to quantitative analysis results file.
  --ms1-file MS1_FILE   Path to DirectMS1Quant results file.
  --pattern PATTERN     Input files common endpattern. Default is "_protein_groups.tsv".
  --labels LABELS [LABELS ...]
                        Groups to compare.
  --input-dir INPUT_DIR
  --output-dir OUTPUT_DIR
                        Directory to store the results. Default value is current directory.
  --imputation {kNN,MinDet}
                        Missing value imputation method.
  --max-mv MAX_MV       Maximum ratio of missing values. Default value is 0.5.
  --thresholds {static,semi-dynamic,dynamic,ms1}
                        DE thresholds method.
  --regulation {UP,DOWN,all}
                        Target group of DE proteins.
  --species SPECIES     NCBI species identifier. Default value is 9606 (H. sapiens).
  --fold-change FOLD_CHANGE
                        Fold change threshold.
  --alpha ALPHA         False discovery rate threshold.
  --fasta-size FASTA_SIZE
                        Number of proteins in database for enrichment calculation.
  --report REPORT       Generate report.txt file, default False.

Input files

QRePS can be used in three different ways:

  1. Perform quantitative analysis (--input-dir, --pattern, --imputation, --sample-file parameters)
  2. Use external quantitative analysis results (--quantitation-file)
  3. Use results of MS1-based quantitative analysis (--ms1-file)

Input files for quantitative analysis should contain following columns:

  1. 'dbname' (i.e. sp|P14866|HNRPL_HUMAN)
  2. 'description' (i.e. Heterogeneous nuclear ribonucleoprotein L OS=Homo sapiens OX=9606 GN=HNRNPL PE=1 SV=2)
  3. 'NSAF' We suggest using Scavager protein_groups result files. If you use something else, you should specify what files are to be taken from --input-dir with common endpattern --pattern.

Quantitation file should contain 'log2(fold_change)', '-log10(fdr_BH)', 'Gene', 'Protein' columns

MS1 file should be *quant_full.tsv file from DirectMS1Quant results.

Sample file

QRePS tool needs a sample file and at least one data file for each of groups to perform quantitative analysis. Sample file should be comma-separated and contain columns 'File Name' and 'SampleID'.

Input directory can be given either with --input_dir or with 'File Name' in sample file. If both --input-dir and path with sample file are given, directory given with --input-dir will be used.

Pattern may or may not be included in 'File Name' (see example).

SampleID contain labels of groups to be compared and should match those given by --labels.

Output files

QRePS produces the following files:

  1. volcano plot (volcano.png)
  2. missing value ration distribution plot (NaN_distribution.png) (only if quantitative analysis is performed)
  3. summary table with the results of statistical testing (Quant_res.tsv)
  4. summary table with differentially regulated genens (DRF.tsv)
  5. symmary table with calculated proteomic metrics (metrics.tsv)
  6. summary table with the results of GO terms enrichment analysis (GO_res.tsv)
  7. STRING network plot (GO_network.svg)
  8. report file (report.txt if --report True)

Example

Input and output files can be found in /example

  1. Quantiative analysis
qreps --sample-file example_1/a172_dbtrg_sample.csv --labels DBTRG_I,DBTRG_K A172_I,A172_K --input-dir example_1 --output-dir example_1 --imputation kNN --thresholds dynamic --regulation UP 
  1. External quantitative analysis results
qreps --quantitation-file example_2/ms1diffacto_out_DE_A2780_0.5_sum_each_run.txt --labels Chemprot_0.5,Chemprot_K --output-dir example_2 --thresholds semi-dynamic --fold-change 1.5 --regulation all --report True
  1. DirectMS1Quant resuls analysis
qreps --ms1-file ms1quant_out_DE_A2780_5_DE_A2780_K1_quant_full.tsv --labels Chemprot_0.5,Chemprot_K --output-dir output --thresholds ms1 --regulation all --report True

Extra Materials for Publication

Apart from the QRePS tool, this repository contains additional resources referenced in the article "PROTEOMICS-BASED SCORING OF CELLULAR RESPONSE TO STIMULI FOR IMPROVED CHARACTERIZATION OF SIGNALING PATHWAY ACTIVITY":

Supplementary Tables

Jupyter Notebooks with original calculations (you can just use QRePS on your data now)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

QRePS-1.2.1.tar.gz (21.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

QRePS-1.2.1-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file QRePS-1.2.1.tar.gz.

File metadata

  • Download URL: QRePS-1.2.1.tar.gz
  • Upload date:
  • Size: 21.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for QRePS-1.2.1.tar.gz
Algorithm Hash digest
SHA256 2caaa7063db98c470d2938b793bab00e9f1aaa7b01bdee2b5b5d51dbacfa5c7b
MD5 5de0dfebe4b2d2dc5dab94e619f9fef9
BLAKE2b-256 219dc2e0e98c0986365f374b8de8a2c19cc7091cba275aa9068f58482a148244

See more details on using hashes here.

File details

Details for the file QRePS-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: QRePS-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for QRePS-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a7321a6276ed901fa8fab694c2de63241b511de4579787291dccd3cb05384d75
MD5 7f89cc677b78a525e75f2aadc6c7a9ff
BLAKE2b-256 d01d256f2d5bbfc868747a2034697470a23a052e10d187d12342b128db31690f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page