Run the IPAW proteogenomics analysis nextflow pipeline
394
This is a workflow to identify, curate, and validate variant and novel peptides from MS proteomics spectra data, using databases containing novel and variant peptides, such as the VarDB database. VarDB combines entries from COSMIC, PGOHUM, CanProVar and lncipedia. The workflow takes mzML spectra files as input, is powered by Nextflow and runs in Docker or Singularity containers.
Searches are run using MSGF+ on a concatenated target and decoy databases which are then passed to Percolator for statistical evaluation, in which FDR is determined in a class specific manner, filtering out known peptides and dividing novel/variant in different FDR arms. Thereafter a curation procedure is performed in which resulting peptides are evaluated on several different criteria, dependent on the peptide.
Please cite the following paper when you have used the workflow for publications :)
Zhu Y, Orre LM, Johansson HJ, Huss M, Boekel J, Vesterlund M, Fernandez-Woodbridge A, Branca RMM, Lehtio J: Discovery of coding regions in the human genome by integrated proteogenomics analysis workflow. Nat Commun 2018, 9(1):903. PMID: 29500430

Database search related inputs for MSGFplus
--mzmldef # a tab deliminated text file with mzmlfilepath(absolute path) and setname
--mods Mods.txt # use standard Unimod name for modification
--activation hcd # default, else use cid, etd
--tdb /path/to/vardb.fa
Quantification related inputs
--mzmldef parameter.`--isobaric 'set01:tmt10plex:130C:131 set02:tmt10plex:126'
Post-search processing inputs
--gtf /path/tovardb.gtf
--blastdb /path/to/Uniprot.Ensembl.GENCODE.proteins.fa # Here we use latest uniprot, ensembl, gencode annotated protein sequences
--knownproteins /path/to/Homo_sapiens.GRCh38.pep.all.fa # a prefiltering known proteins DB needed to remove known peptides during class FDR calculation
--annovar_dir path/to/annovar # Downloaded before running, due to licensing
Bigwig files for phastCons/PhyloCSF:
--bigwigs /path/to/bigwigs/
Mark novel peptides which can be explained by nsSNPs
--snpfa /path/to/MSCanProVar_ensemblV79.fa # CanProVar annotated peptide sequences derived from known nsSNPs
--genome /path/to/hg19.fa # use hg19.fa.masked version if you don't want to consider repeated regions.
When using the VarDB database
--dbsnp /path/to/SNP142CodingDbSnp.txt # a text file containing genomic coordinates of coding SNPs
--cosmic /path/to/CosmicMutantExport.tsv # a text file containing genomic coordinates of mutations
`--bamfiles '/path/to/*.bam'
Nextflow command option:
-profile option to run it in locally or submit it in slurm or sge system.-profile ## options are standard and testing. Options and cpus allocated can be re-defined in nextflow.config file.
-resume ## use it to resume the jobs from the last stopped process.
Nextflow configuration
configuration/base.config# Get this repo
git clone https://github.com/lehtiolab/proteogenomics-analysis-workflow
cd proteogenomics-analysis-workflow
# Get Annovar
cd /path/to/your/annovar
wget __link_you_get_from_annovar__
tar xvfz annovar.latest.tar.gz
# This creates a folder with annotate_variation.pl and more files, to be passed to the pipeline with --annovar_dir
# Download bigwigs, this can take some time
cd /path/to/your/bigwigs # this dir will be passed to the pipeline with --bigwigs
wget http://hgdownload.cse.ucsc.edu/goldenPath/hg19/phastCons100way/hg19.100way.phastCons.bw
wget https://data.broadinstitute.org/compbio1/PhyloCSFtracks/hg19/latest/PhyloCSF+0.bw
wget https://data.broadinstitute.org/compbio1/PhyloCSFtracks/hg19/latest/PhyloCSF+1.bw
wget https://data.broadinstitute.org/compbio1/PhyloCSFtracks/hg19/latest/PhyloCSF+2.bw
wget https://data.broadinstitute.org/compbio1/PhyloCSFtracks/hg19/latest/PhyloCSF-0.bw
wget https://data.broadinstitute.org/compbio1/PhyloCSFtracks/hg19/latest/PhyloCSF-1.bw
wget https://data.broadinstitute.org/compbio1/PhyloCSFtracks/hg19/latest/PhyloCSF-2.bw
# In the meantime, download and extract varDB data (Fasta, GTF, BlastP, SNP Fasta) to a good spot
wget -O varDB_data.tar.gz https://ndownloader.figshare.com/files/13358006
tar xvfz varDB_data.tar.gz
# Get the hg19 masked genome sequence
wget hgdownload.soe.ucsc.edu/goldenPath/hg19/bigZips/chromFaMasked.tar.gz
tar xvfz chromFaMasked.gz
for chr in {1..22} X Y M; do cat chr$chr.fa.masked >> hg19.chr1-22.X.Y.M.fa.masked; done
# Download ENSEMBL database
wget ftp://ftp.ensembl.org/pub/release-91/fasta/homo_sapiens/pep/Homo_sapiens.GRCh38.pep.all.fa.gz
gunzip Homo_sapiens.GRCh38.pep.all.fa.gz
# Get the COSMIC database
sftp '[email protected]'@sftp-cancer.sanger.ac.uk
# Download the data
sftp> get cosmic/grch37/cosmic/v81/CosmicMutantExport.tsv.gz
sftp> exit
# Extract COSMIC data
tar xvfz CosmicMutantExport.tsv.gz
Example command to search TMT 10-plex labelled data in docker
Remove --isobaric parameter if you have label-free data.
nextflow run main.nf --tdb /path/to/VarDB.fasta \
--mzmldef spectra_file_list.txt \
--activation hcd \
--isobaric 'set01:tmt10plex:131 set02:tmt10plex:131' 'set03:tmt10plex:127N' \
--gtf /path/to/VarDB.gtf \
--mods /path/to/tmt_mods.txt \
--knownproteins /path/to/Homo_sapiens.GRCh38.pep.all.fa \
--blastdb /path/to/UniProteome+Ensembl94+GENCODE24.proteins.fasta \
--cosmic /path/to/CosmicMutantExport.tsv \
--snpfa /path/to/MSCanProVar_ensemblV79.filtered.fasta \
--genome /path/to/hg19.chr1-22.X.Y.M.fa \
--dbsnp /path/to/snp142CodingDbSnp.txt \
--annovar_dir /path/to/your/annovar \
--bigwigs /path/to/your/bigwigs \
--bamfiles /path/to/\*.bam \
--outdir /path/to/results \
-profile standard,docker # replace docker with singularity if needed
Content type
Image
Digest
Size
1.1 GB
Last updated
over 5 years ago
docker pull glormph/ipaw:dev