oncodriveclustl

OncodriveCLUSTL is a clustering method to identify cancer drivers


License
AGPL-3.0
Install
pip install oncodriveclustl==1.1.0

Documentation

OncodriveCLUSTL

One of the main goals of cancer research is the identification of the genomic elements that drive tumorigenesis. OncodriveCLUSTL is a new nucleotide sequence-based clustering algorithm to detect cancer drivers in genomic regions. OncodriveCLUSTL is based on a local background model derived from the nucleotide context mutational probabilities of the chort under study. Our method is able to identify well-known cancer drivers in coding regions. It can be applied to non-coding regions and non-human data.

License

OncodriveCLUSTL is available to the general public subject to certain conditions described in its LICENSE.

Installation

OncodriveCLUSTL depends on Python 3.5 and some external libraries. We recommend to install it using conda:

$ conda install -c bbglab oncodriveclustl

Note

The first time that you run OncodriveCLUSTL it will download the genome reference from our servers. By default the downloaded datasets go to ~/.bgdata. If you want to move these datasets to another folder you have to define the system environment variable BGDATA_LOCAL with an export command.

The following command will show you the help:

$ oncodriveclustl --help

Input data

OncodriveCLUSTL only requires two main inputs:

  • Mutations file. TSV file containing the substitutions from whole exome (WXS) or whole genome (WGS) data mapped to a reference genome (e.g., human hg19 or mice c3h). This file must contain, at least, the following columns with header:

    1. CHROMOSOME: 1, 2,..., X, Y
    2. POSITION: Integer indicating the position of the mutation
    3. REF: Reference nucleotide
    4. ALT: Alternate nucleotide
    5. SAMPLE: Identifier of the sample
  • Annotations file. TSV GZIP compressed file without headers containing the genomic positions annotations of genomic elements (GEs):

    1. Chromosome: 1, 2,..., X, Y
    2. Start: Starting position of the genomic region
    3. End: Final position of the genomic region
    4. Strand: Strand of the genomic region ("+" or "-")
    5. Element ID: Identifier of the genomic element
    6. Transcript ID: Identifier of the transcript
    7. Symbol: Symbol of the genomic element

You can check the input formats in the files provided in the example.

Output data

OncodriveCLUSTL generates three output files :

  • Elements results file ('elements_results.txt'). TSV file containing results of the analyzed elements:

    1. SYMBOL: GE symbol
    2. ENSID: GE ID
    3. CGC: True if GE in the CGC list
    4. CHROMOSOME: 1, 2,..., X, Y
    5. STRAND: Strand of the GE ("+" or "-")
    6. LENGTH: length (bp) of the GE
    7. TOTAL_MUT: total mutations observed in the GE
    8. CLUSTERED_MUT: number of mutations in a cluster
    9. CLUSTERS: number of clusters
    10. SIM_CLUSTERS: number of simulated clusters
    11. SCORE: GE score
    12. P_EMPIRICAL: empirical p-value of the GE
    13. Q_EMPIRICAL: empirical q-value of the GE
    14. P_ANALYTICAL: analytical p-value of the GE
    15. Q_ANALYTICAL: analytical q-value of the GE
    16. P_TOPCLUSTER: analytical p-value of the cluster with highest cluster score
    17. Q_TOPCLUSTER: analytical q-value of the cluster with highest cluster score
  • Clusters results file ('clusters_results.tsv'). TSV file containing results of the clusters observed in the analyzed elements:

    1. RANK: Position of the GE in the list of
    2. SYMBOL: GE symbol
    3. ENSID: GE ID
    4. CGC: True if GE in the CGC list
    5. CHROMOSOME: 1, 2,..., X, Y
    6. STRAND: Strand of the GE ("+" or "-")
    7. COORDINATES: genomic coordinates of the cluster. It can be 'coord1,coord2' for clusters inside a single region or 'coord1,coord2;coord3,coord4' for those spanning regions (--concatenate flag)
    8. MAX_COORD: genomic position with the highest smoothing score inside the cluster
    9. WIDTH: cluster's width (pb)
    10. N_MUT: number of mutations in the cluster
    11. N_SAMPLES: number of samples with a mutation in the cluster
    12. FRA_UNIQ_SAMPLES: proportion of unique samples mutated in the cluster out of the total of mutations in the cluster
    13. SCORE: cluster score
    14. P: analytical p-value of the cluster
  • Log file ('results.log'). TXT file containing OncodriveCLUSTL's run information

Command line

  • '-i', '--input-file': File containing mutations (required)
  • '-r', '--regions-file': GZIP compressed file with the genomic regions to analyze (required)
  • '-o', '--output-directory': Output directory to be created (required)
  • '-sign', '--input-signature': File containing input context based mutational probabilities
  • '-ef', '--elements-file': File with the symbol of a set elements to analyze, one per row
  • '-e', '--elements': Symbol of the element to analyze
  • '-g', '--genome': Genome to use. Default is hg19.
  • '-emut', '--element-mutations': Cutoff of element mutations. Default is 2
  • '-cmut', '--cluster-mutations': Cutoff of cluster mutations. Default is 2
  • '-sw', '--smooth-window': Smoothing window. Default is 11
  • '-cw', '--cluster-window': Cluster window. Default is 11
  • '-kmer', '--kmer': Kmer-nucleotide context (3 or 5)
  • '-n', '--n-simulations': Number of simulations. Default is 1000
  • '-sim', '--simulation-mode': Simulation mode. Default is 'mutation_centered'
  • '-simw', '--simulation-window': Simulation window. Default is 31
  • '-c', '--cores': Number of cores to use in the computation. By default it uses all the available cores
  • '--log-level': Verbosity of the logger. Default is 'info'
  • '--concatenate', is_flag=True: Calculate clustering on concatenated genomic regions (e.g., exons in coding sequences)
  • '--pancancer': PanCancer cohort analysis
  • '--clustplot': Generate a needle plot with clusters for an element
  • '--qqplot': Generate a quantile-quantile (QQ) plot for a dataset
  • '--gzip': Gzip compress files

Run the example

After installing OncodriveCLUSTL, you can run an example of TCGA pancreatic adenocarcinomas (Ellrott et al. 2018) for coding regions (Mularoni et al., 2016) using 1000 simulations. First you need to download the example folder. Then you run OncodriveCLUSTL with default parameters as:

$ oncodriveclustl -i ~/example/PAAD.tsv.gz -r ~/example/cds_regions.gz -o ~/example/output_example

The results will be saved in a folder named output_example.

You can compute a more sophisticated analysis and generate a quantile-quantile plot by typing:

$ oncodriveclustl -i ~/example/PAAD.tsv.gz -r ~/example/cds_regions.gz -o ~/example/output_example -sw 15 -cw 15 -simw 35 -sim region_restricted --concatenate --qqplot

If you want to run a specific GE and generate a plot its observed clusters, you can type:

$ oncodriveclustl -i ~/example/PAAD.tsv.gz -r ~/example/cds_regions.gz -o ~/example/output_example -sw 15 -cw 15 -simw 35 -sim region_restricted --concatenate --clustplot -e KRAS