I am the only being whose doom
No tongue would ask, no eye would mourn;
I never caused a thought of gloom,
A smile of joy, since I was born.
(from 'I Am the Only Being Whose Doom' by Emily Brontë [1818 - 1848])
DOOMSAYER ( Detection Of Outliers using Mutation Spectrum AnalYsis in Extremely Rare variants) is a utility for analyzing patterns of rare, single-nucleotide variants (SNVs) in whole-genome (WGS) or whole-exome sequencing (WES) data.
The basic intuition behind Doomsayer is that the non-somatic mutation spectra of rare SNVs should have little inter-individual heterogeneity. If an individual's mutation spectrum differs drastically from the expected distribution, it is likely due to cryptic error biases or batch effects rather than genuine biological variation. Doomsayer uses a series of statistical analyses to identify these outlier samples, and provides a diagnostic report summarizing the observed error signatures, helping to ensure rigor and reproducibility in the analysis of WGS/WES data.
In addition to its purpose as a quality control program, Doomsayer can be applied more generally to study between-sample differences in somatic and germline mutation signatures.
The following commands will create a Conda environment named doomsayer
and install all dependencies from env.yml
. This environment will install the R binaries and most required R packages; however, some packages are not available via the Conda channels, so must be installed in the environment using the install.r
script (note that this script will NOT install these packages outside of the doomsayer
environment).
git clone https://github.com/carjed/doomsayer.git
cd doomsayer
conda env create -n doomsayer -f env.yml
source activate doomsayer
R --quiet -f install.r
Prerequisites for Doomsayer can also be installed using pip
and the included install.r
script:
git clone https://github.com/carjed/doomsayer.git
cd doomsayer
pip install -r pip_reqs.txt
R --quiet -f install.r
Note that this method assumes you have pip
and R
(version 3.1 or higher) already installed. You will also need pandoc
(version 1.19) installed in order to render RMarkdown reports. If RStudio (or RStudio Server) is installed on your system, the necessary pandoc binaries should already be available, and no additional acction is needed.
Debian/Ubuntu users may run the check_pandoc.sh
script to confirm if the pandoc binaries are installed--if they are not found, the script will attempt to download the binaries to doomsayer/pandoc/
.
bash check_pandoc.sh
Mac users will need to either install RStudio or manually install the binaries to doomsayer/pandoc/
per the instructions described here.
For more flexible deployment options, Doomsayer is available as a Docker container. The following command will pull and run the preconfigured image from the Docker Hub:
docker run -d --name doomsayer \
-v /path/to/local/data:/data \ # map directory containing input data
-p 8888:8888 \ # expose jupyter notebook on port 8888
start-notebook.sh --NotebookApp.token='' \ # start with token disabled
carjed/doomsayer
You may also clone this repository and build the dockerfile locally, using the following commands:
git clone https://github.com/carjed/doomsayer.git
cd doomsayer
docker build -t latest --force-rm .
docker run -d --name doomsayer \
-p 8888:8888 \
start-notebook.sh --NotebookApp.token='' \
doomsayer
In both cases, Doomsayer will be available as a Jupyter notebook server, accessible at http://[machine ip]:8888.
A prebuilt Doomsayer docker image can be accessed via the cloud-based Binder platform.
When launched, this will spawn a Jupyter notebook with an interactive tutorial to guide new users through the various options and use cases for Doomsayer.
Due to the resource constraints of the public BinderHub server, this should not be used to run Doomsayer on large datasets. However, if you have generated the subtype count matrix locally, you can easily upload this file into a Binder instance and run Doomsayer.
usage: doomsayer.py [-h] [-c [INT]] [-S [INT]] [-v] [-V] [-M [STR]] -i
[/path/to/input.vcf] [-f [/path/to/genome.fa]]
[-g [/path/to/sample_batches.txt]]
[-s [/path/to/kept_samples.txt]] [-C [INT]] [-X [INT]]
[-p [/path/to/project_directory]] [-m [STR]] [-o]
[-d [STR]] [-r [INT]] [-F [STR]] [-t [FLOAT]] [-l [INT]]
[-R] [-G] [-T [STR]]
optional arguments:
-h, --help show this help message and exit
-c [INT], --cpus [INT]
number of CPUs. Must be integer value between 1 and 10
-S [INT], --seed [INT]
random seed for NMF and outlier detection
-v, --verbose Enable verbose logging
-V, --version show program's version number and exit
-M [STR], --mode [STR]
Mode for parsing input. Must be one of {vcf, agg,
txt}. Defaults to VCF mode.
-i [/path/to/input.vcf], --input [/path/to/input.vcf]
In VCF mode (default) input file is a VCF or text file
containing paths of multiple VCFs. Defaults to accept
input from STDIN with "--input -". In aggregation
mode, input file is a text file containing mutation
subtype count matrices, or paths of multiple such
matrices. In plain text mode, input file is tab-
delimited text file containing 5 columns: CHR, POS,
REF, ALT, ID
-f [/path/to/genome.fa], --fastafile [/path/to/genome.fa]
reference fasta file
-g [/path/to/sample_batches.txt], --groupfile [/path/to/sample_batches.txt]
two-column tab-delimited file containing sample IDs
(column 1) and group membership (column 2) for pooled
analysis
-s [/path/to/kept_samples.txt], --samplefile [/path/to/kept_samples.txt]
file with sample IDs to include (one per line)
-C [INT], --minsnvs [INT]
minimum # of SNVs per individual to be included in
analysis. Default is 0.
-X [INT], --maxac [INT]
maximum allele count for SNVs to keep in analysis.
Defaults to 1 (singletons) Set to 0 to include all
variants.
-p [/path/to/project_directory], --projectdir [/path/to/project_directory]
directory to store output files (do NOT include a
trailing '/'). Defaults to ./doomsayer_output
-m [STR], --matrixname [STR]
filename prefix for M matrix [without extension]
-o, --filterout in VCF or plain text modes, re-reads input file and
writes to STDOUT, omitting records that occur in the
detected outliers. To write to a new file, use
standard output redirection [ > out.vcf] at the end of
the doomsayer.py command
-d [STR], --decomp [STR]
mode for matrix decomposition. Must be one of {nmf,
pca}. Defaults to pca.
-r [INT], --rank [INT]
Rank for Matrix decomposition. If --decomp pca, will
select first r components. Default [0] will force
Doomsayer to iterate through multiple ranks to find an
optimal choice.
-F [STR], --filtermode [STR]
Method for detecting outliers. Must be one of {ee,
lof, if, any, any2, all, none}. Defaults to ee.
-t [FLOAT], --threshold [FLOAT]
threshold for fraction of potential outliers
-l [INT], --length [INT]
motif length. Allowed values are 1,3,5,7
-R, --report automatically generates an HTML-formatted report in R.
-G, --staticplots use static ggplot figures instead of interactive
plotly figures
-T [STR], --template [STR]
Template for diagnostic report. Must be one of
{diagnostics, msa}. Defaults to diagnostics.
--cpus [INT]
Set the number of CPUs to use if input is a list of files.
--seed [INT]
Set the random seed to be used for NMF decomposition and outlier detection algorithms. If not specified, a random seed will be assigned and printed to the output if you need to reproduce results of a particular run.
--verbose
This flag enables debug logging for troubleshooting.
--version
Show program's version number and exit.
These options together specify the data to be processed by Doomsayer. Each mode and the possible inputs it can accept are described in the input modes section.
--input [/path/to/input.vcf]
Doomsayer can accept multiple types of input:
- a single VCF file (either uncompressed or bgzip-compressed)
- a text file containing the file paths of multiple VCF files (e.g., one per chromosome)
- a tab-delimited text file with one variant per row
- a text file containing the file paths of multiple matrices to be aggregated together
By default, Doomsayer assumes input is a VCF file or text file containing file paths of multiple VCF files. To parse tab-delimited text files or aggregate data from multiple previous runs, use the --mode txt
or --mode agg
options, respectively.
--fastafile [/path/to/genome.fa]
In VCF mode and plain text mode, you must specify the fasta-formatted reference genome to be used to look up the local sequence context for each SNV. This file must corresponding to the same reference genome build used to call the variants contained in the input VCF file, with consistently-formatted records. The fasta file may be either uncompressed or bgzip-compressed.
--mode vcf
A VCF file formatted with mandatory columns (#CHROM, POS, ID, REF, ALT, QUAL, FILTER, and INFO). This VCF must contain an allele count field in the INFO column ([AC=N]), and include individual genotypes (i.e., the VCF cannot be a "sites-only" file).
The VCF input can be either a file on disk or piped from STDIN (using --input -
), enabling compatibility with a wide range of existing pipelines and workflows. The VCF can contain any combination of variant types (e.g., SNVs, indels, CNVs), allele counts, or filter flags. By default, Doomsayer will only analyze singleton SNVs with a "PASS" value in the FILTER column of the VCF. This can be disabled with the --novarfilter
flag.
If your data are spread across multiple files (e.g., one VCF per chromosome), Doomsayer will accept a plain text file containing the absolute file paths (one per line) for the VCF files to process. This assumes all VCF files contain the exact same sample IDs and that the IDs in the VCF header are ordered identically across all subfiles. This option is best used in conjunction with the --cpus {N}
argument to enable parallel processing of the files.
--mode txt
When using this mode, input must be a tab-delimited text file containing a list of SNVs with the following 5 columns (order must be maintained):
- Chromosome
- Position
- Reference allele
- Alternative allele
- Identifier variable
The identifier variable can be any factor by which we wish to compare mutation patterns. This could be a population, gene ID, sample ID, variant quality level, etc.
This is the most flexible input mode, as it allows the user to curate the set of variants and identifier variables as they see fit, though we leave it to the user to coerce their data into the requisite format.
--mode agg
This mode can be used to run Doomsayer on pre-existing sample x subtype SNV count matrices, which can be obtained either from the output of previous Doomsayer runs, or generated by the user. Input should be a plain text file containing the absolute paths of the count matrices to aggregate.
If generating these subtype count matrices outside of Doomsayer, files should be formatted as tab-delimited text files where the ith row of each file is a sample ID (or some other identifier variable) and the jth column is a mutation subtype. Row and column names must be included.
Aggregation mode is useful if you are combining output from previous Doomsayer runs (e.g., adding data from a new batch of samples or aggregating across subregions) or wish to run Doomsayer with different filtering/output options without needing to re-run the more computationally demanding VCF processing. This could also be used to compare mutation patterns across different species or alignments.
In aggregation mode, the input should be named either m_regions.txt
, where each count matrix contains the same set of samples with subtype counts across a nonoverlapping set of regions, or m_samples.txt
, where each file contains a nonoverlapping set of samples. If running regional aggregation, a final M matrix will be generated by summing subtype count matrices element-wise; if running sample aggregation, the M matrix will be generated by row-wise concatenation of the sub-matrices.
If you plan on generating subtype count matrices via Doomsayer to aggregate at a later point, you should use the --matrixname custom_output_name
to create unique file names for the matrices to combine.
Doomsayer is designed to integrate in existing VCF processing workflows, so if you wish to apply sample-level or variant-level filters to your input data prior to running Doomsayer, we advise pre-filtering your data (e.g., using bcftools) for greater flexibility and efficiency. However, we have included options that enable the user to perform a few common filtering tasks directly in Doomsayer.
--samplefile [/path/to/kept_samples.txt]
Currently only applies to VCF mode
To run Doomsayer on a subset of samples present in the input VCF, this parameter will read a list of sample IDs to keep (one per line) and skip all other samples in the VCF.
--groupfile [/path/to/sample_batches.txt]
Currently only applies to VCF mode
This parameter forces Doomsayer to evaluate mutation spectra across pooled groups of samples. The GROUPFILE should be a tab-delimited text file containing sample IDs in the first column and a grouping variable (e.g., plate number, sequencing date, sub-study) in the second column. This option is particularly useful if you wish to explicitly filter for batch effects in your data, e.g., by setting the grouping variable to be the sequencing date, study of origin, sequencing plate, or some other batch variable.
Note that this option will assume the GROUPFILE contains all samples in the input VCF. If your GROUPFILE contains only a subset of samples, other samples will not be evaluated.
--minsnvs [INT]
In some cases, samples may appear as outliers simply because they have very few observed SNVs. The --minsnvs
parameter forces Doomsayer to only evaluate individuals with at least X observed SNVs. By default, minsnvs=0
, and all samples are retained. If this option is enabled, the low-SNV outliers will be written to a separate file named doomsayer_snvs_lt{X}.txt
in the output directory, and the keep/drop lists will be derived from the remaining subset of samples.
Note that the chisq
outlier detection mode is generally more robust to low-SNV outliers.
--maxac [INT]
By default, Doomsayer will evaluate only singleton SNVs (--maxac 1
). To include more common SNVs, increase the value of this parameter. To include all SNVs, use --maxac 0
. This is not recommended when using Doomsayer for QC functionality, but may be useful for more general mutation signature analysis.
The default output consists of two plain-text files: doomsayer_keep.txt
, containing the IDs of samples that passed the filter, and doomsayer_drop.txt
, containing the IDs of samples that failed the filter. These lists can be easily integrated into bcftools, vcftools, PLINK, and other tools to exclude outlier samples from your downstream analyses.
By default, Doomsayer will also write three data files from the NMF decomposition to the output directory:
- the M matrix of observed mutation spectra per sample
- the H matrix containing loadings of the mutation subtypes in each signature
- the W matrix containing the contributions of each signature within each sample's mutation spectrum
--projectdir [/path/to/project_directory]
By default, output files are stored in a subfolder named /doomsayer_output/
in your current directory. The --projectdir
parameter will specify a custom name/location for the Doomsayer output directory.
--matrixname [STR]
This parameter allows you to specify a custom name for the mutation spectra matrix file. The default is --matrixname subtype_count_matrix
. This is particularly useful if you wish to generate an initial count matrix then play around with the outlier detection parameters.
--filterout
If the input is a single VCF or text file of sites, this flag will force Doomsayer to re-read the input file and write a new file of the same format, removing any samples specified in the doomsayer_drop.txt
list that has been generated.
This command will print the VCF header and records to STDOUT, which can then be piped to compatible programs, or redirected to a file using standard UNIX redirection (i.e., adding > /path/to/output.vcf
at the end of the command), allowing Doomsayer to be used as an intermediate step of more complex VCF processing pipelines.
As far as possible, all records present in the original input will be preserved in the output, with three notable exceptions:
- All samples in the drop list (and their genotypes) will be omitted
- Variants that were unique to the set of dropped samples will be automatically removed.
- Four of the INFO fields will be updated to reflect the smaller set of retained samples:
- The total number of alleles (AN)
- allele count in genotypes (AC)
- number of samples (NS)
- combined depth (DP)
--decomp [STR]
Doomsayer will decompose the subtype count matrix using either Principal Components Analysis (PCA), or Nonnegative Matrix Factorization (NMF).
--rank [INT]
Set the rank of the NMF decomposition to R components if using --decomp nmf
, or select the first R principal components if using --decomp pca
--filtermode [STR]
Once we have reduced the input matrix to R components, we want to identify which individuals are outliers in that R-dimensional space. Doomsayer can apply three different outlier detection algorithms: elliptic envelopes, local outlier factors, and isolation forests.
--filtermode ee
: Outliers are determined by assuming components follow a multivariate Gaussian distribution, and computing an elliptic envelope.--filtermode lof
: Outliers are determined using local outlier factors.--filtermode if
: Outliers are determined using isolation forests.
In addition, Doomsayer can perform omnibus filtering using two or more of the above methods:
--filtermode any2
: Outliers must be called by at least two of the above methods--filtermode all
: Outliers must be called by all three of the above methods (will call the fewest outliers)
To disable outlier detection, use --filtermode none
For a detailed overview of these methods, see the scikit-learn outlier detection tutorial.
--threshold [FLOAT]
This parameter specifies the fraction of the sample to flag as potential outliers by a given algorithm. If we set --threshold 0.05
(the default) and use either the ee, lof, or if filter modes, Doomsayer will always flag ~5% of the sample as outliers.
When using the omnibus filtering modes,
--length {1,3,5,7}
This parameter specifies the (symmetric) motif length to be considered in determining the mutation subtypes. The default (3) produces 96 3-mer subtypes, which is likely sufficient for QC of whole-genome germline variants. If you are using Doomsayer for QC of whole-exome germline variants, you will likely need to specify --length 1
, as most individuals will not have enough singleton variants to accurately infer higher-order mutation signatures. Values greater than 3 will likely lead to extremely noisy or unreliable QC results for germline variants, but may be useful for examining somatic sequencing data.
--report
+ --template
The --report
option will tell Doomsayer to execute the generate_report.r
script. This script will copy an RMarkdown template (specified with the -T, --template
parameter) into ~/doomsayer_output/
(or the user-specified project directory) and render an HTML-formatted report detailing the results of your Doomsayer run.
By default, plots are fully interactive using the Plotly engine. If you want to download static .png images, just mouse over the upper right corner of the figure and click the camera icon.
Alternatively, you can set the --staticplots
option in your command, which will generate a report without any interactive elements. The standalone .png images will be saved to ~/doomsayer_output/report_files/figure-html/
.