In proteogenomic analyses it is essential to know the loci giving rise to peptides in order to improve genomic annotation and the functional characterization of protein products in their biological context. With next-generation sequencing of DNA and RNA for each sample studied by proteomic mass spectrometry integration and visualisation in a common coordinate system, i.e. the genome, is vital for systems biology. Advances in technology in mass spectrometry now allow almost complete quantification of the sample proteome. With research moving to protein quantitative trait loci (pQTL) to identify genomic alterations with functional effects on the proteome and the high complexity of combinations thereof integration and visualisation of protein and peptide quantification on genomic loci is paramount for this type of analysis. Furthermore, moving towards more personal multi-omics studies comparative visualisation of proteomic data on a genome has been lacking. Not only genomic variation affecting proteins have come into focus of functional integration studies but also post-translational modifications (PTM), the effect of single nucleotide variants and other alterations on PTMs and alternative modification loci, and the effects of alternative PTMs on protein abundance have become more a centre of attention for researchers. To facilitate this type of integration not only the genomic locations of modified peptides but specifically the genomic loci of associated with these modifications is required. Here, we provide a mapping tool, PoGo, to quickly and efficiently identify genomic loci of peptides and post-translational modifications and couple these mappings with associated quantitative values over multiple samples. Using reference gene annotation and an associated transcript translations our tool identifies the genomic loci of peptides given as input and generates output in different formats borrowed from genomics and transcriptomics which can be loaded in various genome browsers such as UCSC Genome Browser, Ensembl Genome Browser, BioDalliance, and the Integrative Genomics Viewer.
PoGo source code is written to support compilation on Windows, Mac and Linux systems. Executables can be downloaded here: ftp://ftp.sanger.ac.uk/pub/teams/17/software/PoGo/.
PoGo uses transcript translations and reference gene annotations to identify the genomic loci of peptides and post-translational modifications. Multiple occurrences of peptides in the input data resulting in the same genomic loci will be collapsed as a single occurrence in the output.
The input format required by PoGo is a tab delimited file with four columns.
Column | Column header | Description |
---|---|---|
1 | Sample | Name of sample or experiment |
2 | Peptide | Peptide sequence with PSI-MS nodification names in round brackets following the mpdified amino acid, e.g. PEPT(Phopsho)IDE for a phosphorylated threonine |
3 | PSMs | Number of peptide-spectrum matches (PSMs) for the given peptide |
4 | Quant | Quantitative value for the given peptide in the given sample |
This format contains the genomic loci for peptides, the exon-structure, the peptide sequence, as well as a colour code for uniqueness of peptides within the genome.
Colour | Description |
---|---|
Peptide is unique to single gene AND single transcript | |
Peptide is unique to single gene BUT shared between multiple transcripts | |
Peptide is shared between multiple genes |
Like BED but containing the location of the post-translational modification on the genome. Thick parts of the peptide blocks indicate the position of the post-translational modification on a single amino acid (short thick block) while longer blocks indicate the occurrence of the first and last post-translational modification and residues in between. In the PTMBED the colour code is changed to indicate the type of modification.
Colour | Post-translational Modification |
---|---|
Phosphorylation (phospho) | |
Acetylation (acetyl) | |
Amidation (amidated) | |
Oxidation (oxidation) | |
Methylation (methyl) | |
Ubiquitinylation (glygly; gg) | |
Sulfation (sulfo) | |
Palmitoylation (palmitoyl) | |
Formylation (formyl) | |
Deamidation (deamidated) | |
Any other post-translational modification |
This output format contains besides the genomic loci the annotated information for the genes giving rise to each peptide sequence including status and biotype. For each mapped peptide the sample, number of peptide-spectrum matches and associated quantitative value as tags.
In this format the peptide sequences are combines with the Ensembl gene identifier. It contains the genomic loci for each peptide as well as the quantitative values for each peptide in different samples as a matrix.
PoGo is a readily compiled command line tool written in C++, basic usage to generate map peptides to corresponding genomic loci with default parameters:
Windows: PoGo.exe -fasta annotation.translation.fasta -gtf annotation.gtf -in example.tsv
Linux/Unix/Mac: PoGo -fasta annotation.translation.fasta -gtf annotation.gtf -in example.tsv
Full usage:
PoGo/PoGo.exe -fasta TRANSL -gtf ANNO -in *.tsv[,*.tsv] [-format OUTF] [-merge TRUE/FALSE] [-source SRC] [-mm NUM] [-mmmode TRUE/FALSE]
Required arguments:
-fasta TRANSL | Filepath for file containing protein sequences in FASTA format |
-gtf ANNO | Gene annotation with coding sequences (CDS) in GTF format |
-in *.tsv | Path to single input file or comma separated list of paths to input files containing peptides to be mapped with associated number of peptide to spectrum matches, sample name and quantitative value (see input file format) |
Optional arguments:
-format OUTF | Set output format GTF, GCT, BED, PTMBED or ALL. Comma separated combination possible. Default = ALL |
-merge TRUE/FALSE | Set TRUE to merge output of multiple input files (output will be named after last input file *_merged). Default = FALSE |
-source SRC | Set TRUE to merge output of multiple input files (output will be named after last input file *_merged). Default = FALSE |
-mm NUM | Number of mismatches allowed in mapping (0, 1 or 2). DEFAULT = 0 |
-mmmode TRUE/FALSE | Set TRUE to restrict number of mismatch in kmer to 1. DEFAULT = FALSE |
-genome GENOME | Filepath for the fine containing genome sequences in Ensembl FASTA format. Used to identify chromosome names and order and differenciate between chromosomes and scaffolds. If not set chromosome names are extracted from the GTF file without differenciation between chromosomes and scaffolds |
./PoGo -fasta ./input/gencode.v25.pc_translations.fa -gtf ./input/gencode.v25.annotation.gtf -in /PATH/TO/${Peptides.txt}
.\PoGo.exe -fasta .\input\gencode.v25.pc_translations.fa -gtf .\input\gencode.v25.annotation.gtf -in \PATH\TO\${Peptides.txt}
Mismatch Parameter Setting | ~1,500 peptides in Input | ~250,000 peptides in Input |
---|---|---|
-mm 0 | < 5 min / < 4 GB | <5 min / min 10 GB |
-mm 1 | ~5 min / < 4 GB | ~5 min / min 16 GB |
-mm 2 -mmode true | < 15 min / min 6 GB | < 20 min / min 32 GB |
-mm 2 -mmode false | ~ 1.5 h / min 64 GB | ~ 2 h / min 160 GB |