This package provides functions to analyse de novo genetic
variants using the statistical framework described in Samocha
et al (2014) Nature Genetics 10.1038/ng.3050. This vignette
demonstrates the usage of the denovolyzeR
package to
recapitulate the analyses described in this paper:
If using the package, please cite Ware et al (2015) Curr Protoc Hum Genet. 10.1002/0471142905.hg0725s87.
# Install the package if you haven't already.
# OPTION 1 - install the latest release from CRAN:
install.packages("denovolyzeR")
# OPTION 2 - install the latest development version from GitHub. Either download and install, or use devtools:
if(!"devtools" %in% installed.packages()){
install.packages("devtools")
}
devtools::install_github("jamesware/denovolyzeR")
We start with a table of de novo variants. An example dataset is provided:
## [1] 1040 2
## gene class
## 1 BCORL1 mis
## 2 SPANXD mis
## 3 GLRA2 mis
## 4 RPS6KA3 non
## 5 TSR2 mis
## 6 GNL3L syn
First we want to know whether there are more de novos than expected,
using the denovolyzeByClass()
function. These variants were
obtained by sequencing 1,078 cases, so we use
nsamples=1078
.
## class observed expected enrichment pValue
## 1 syn 254 302.3 0.840 0.998000
## 2 mis 655 679.0 0.965 0.826000
## 3 lof 131 94.3 1.390 0.000199
## 4 prot 786 773.2 1.020 0.328000
## 5 all 1040 1075.5 0.967 0.864000
The total number of de novos is almost exactly as our model predicts. However, we see a statistically significant excess of LOF variants in this population.
Next, we look to see if the total number of genes that contain more
than one de novo is greater than expected, using the
denovolyzeMultiHits()
function.
## class obs expMean expMax pValue nVars
## 1 syn 3 3.0 8 0.56 254
## 2 mis 31 20.0 32 0.01 655
## 3 lof 5 1.0 3 0.00 131
## 4 prot 43 29.2 43 0.01 786
## 5 all 66 47.9 61 0.00 1040
obs = the number of genes in our dataset with >1 de novo
variant
expMean = the expected number of genes containing >1 de
novo: an average obtained by permutation
expMax = the maximum number of genes containing >1 de novo
in nperms
permutations (default
nperms=100
)
pValue = an empirical p value
nVars = the total number of de novo variants in each
class
Note that the number of observed genes with >1 protein-altering
variant does not equal the number of genes with >1
lof + number of genes with >1 missense, as genes containing 1 lof + 1
missense will only be counted as “multihits” in the combined
analysis.
Here it looks like there may be an excess of genes with >1 lof variant, >1 missense, and >1 protein-altering variant. We will want to increase the number if permutations here to get a handle on our level of significance.
denovolyzeMultiHits(genes=autismDeNovos$gene,
classes=autismDeNovos$class,
nsamples=1078,
nperms=1000)
## class obs expMean expMax pValue nVars
## 1 syn 3 3.3 11 0.644 254
## 2 mis 31 20.3 34 0.013 655
## 3 lof 5 1.0 5 0.001 131
## 4 prot 43 28.0 49 0.002 786
## 5 all 66 47.8 69 0.003 1040
There is another important option here. The expected number of genes
containing >1 hit is obtained by permutation: Given n de
novo variants, how many genes contain >1 de novo? There are two
options for selecting n: by default it is derived from your data:
e.g. in the example above autismDeNovos contains 131 lof variants, so
this is the number used in the permutation. This is controlled by the
default parameter nVars="actual"
## [1] 131
This is a conservative approach, addressing the question: “given the number of variants in our dataset, do we see more genes with >1 variant than expected?”
An alternative approach simply asks whether there are more genes with
>1 variant than our de novo model predicts. This is accessed by
setting nVars="expected"
.
denovolyzeMultiHits(genes=autismDeNovos$gene,
classes=autismDeNovos$class,
nsamples=1078,
nperms=1000,
nVars="expected")
## class obs expMean expMax pValue nVars
## 1 syn 3 4.6 12 0.828 302.27646
## 2 mis 31 21.3 34 0.019 678.98816
## 3 lof 5 0.5 4 0.000 94.26139
## 4 prot 43 27.5 43 0.001 773.24955
## 5 all 66 50.5 72 0.006 1075.52601
We see 5 genes containing >1 de novo lof variant. This is
more than expected, but are any of these genes individually significant?
We can denovolyzeByGene()
to find out.
By default this function compares the number of LOF variants against expectation for each gene, and then the total number of protein-altering variants (LOF + missense). It can also be configured to return other classes if relevant.
## gene lof_observed lof_expected lof_pValue prot_observed prot_expected
## 239 DYRK1A 3 0 2.69e-08 3 0.1
## 706 SCN2A 3 0 1.83e-06 5 0.1
## 141 CHD8 3 0 7.19e-07 4 0.2
## 674 RFX8 0 0 1.00e+00 2 0.0
## 796 SUV420H1 1 0 6.37e-03 3 0.1
## 618 POGZ 2 0 1.23e-04 2 0.1
## prot_pValue
## 239 2.77e-05
## 706 3.70e-07
## 141 2.44e-05
## 674 2.34e-05
## 796 3.17e-05
## 618 5.07e-03
Several genes meet statistical significance after correcting for multiple testing. Default options apply two tests across 19618 genes, so a Bonferroni corrected p-value threshold at α = 0.05 would be 1.3 × 10−6.
The analyses presented so far have been exome-wide. It may be
appropriate to restrict analyses to a geneset of interest - for example,
it may be relevant to examine the burden of de novo variation
in a pathway of interest, or initial variant detection may have been
restricted to a set of candidate genes (rather than whole exome
sequencing). All of the above funtions can be targeted to a subset of
genes using the includeGenes
argument.
The package includes as an example a list of 837 genes that interact with the fragile X mental retardation protein (FMRP). Is this geneset enriched for de novos, and recurrent de novos, in our autism trios?
## [1] 837
## ensgID enstID hgncID hgncSymbol geneName
## 1 ENSG00000142599 ENST00000337907 9965 RERE RERE
## 2 ENSG00000149527 ENST00000449969 29037 PLCH2 PLCH2
## 3 ENSG00000078369 ENST00000378609 4396 GNB1 GNB1
## 4 ENSG00000157933 ENST00000378536 10896 SKI SKI
## 5 ENSG00000171735 ENST00000303635 18806 CAMTA1 CAMTA1
## 6 ENSG00000188157 ENST00000379370 329 AGRN AGRN
denovolyzeByClass(genes=autismDeNovos$gene,
classes=autismDeNovos$class,
nsamples=1078,
includeGenes=fmrpGenes$geneName)
## class observed expected enrichment pValue
## 1 syn 28 33.6 0.835 8.53e-01
## 2 mis 83 74.4 1.110 1.74e-01
## 3 lof 32 9.1 3.500 3.18e-09
## 4 prot 115 83.6 1.380 6.47e-04
## 5 all 143 117.1 1.220 1.13e-02
denovolyzeMultiHits(genes=autismDeNovos$gene,
classes=autismDeNovos$class,
nsamples=1078,
nperms=1000,
includeGenes=fmrpGenes$geneName)
## Warning in denovolyzeMultiHits(genes = autismDeNovos$gene, classes =
## autismDeNovos$class, : De novo list includes 897 genes not specified for
## inclusion. These will not be analysed.
## class obs expMean expMax pValue nVars
## 1 syn 0 0.6 3 1.000 28
## 2 mis 9 5.2 11 0.043 83
## 3 lof 3 1.0 5 0.063 32
## 4 prot 15 9.5 20 0.036 115
## 5 all 20 14.2 25 0.039 143
viewProbabilityTable
provides access to the underlying
de novo probability tables used to calculate expected de
novo burdens throughout this package:
## hgncID hgncSymbol enstID ensgID geneName syn
## 1 658 ARF5 ENST00000000233 ENSG00000004059 ARF5 2.704295e-06
## 2 6752 M6PR ENST00000000412 ENSG00000003056 M6PR 2.877349e-06
## 3 3720 FKBP4 ENST00000001008 ENSG00000004478 FKBP4 5.608786e-06
## 4 20581 CYP26B1 ENST00000001146 ENSG00000003137 CYP26B1 1.013847e-05
## 5 28816 NDUFAF7 ENST00000002125 ENSG00000003509 NDUFAF7 5.079037e-06
## 6 4008 FUCA2 ENST00000002165 ENSG00000001036 FUCA2 5.445799e-06
## mis non splice frameshift lof prot
## 1 6.234164e-06 2.016875e-07 2.207269e-07 1.059040e-06 1.481454e-06 7.715618e-06
## 2 7.767629e-06 5.370605e-07 3.469603e-07 7.571830e-08 9.597391e-07 8.727368e-06
## 3 1.346427e-05 7.503486e-07 3.996519e-07 4.035024e-08 1.190351e-06 1.465462e-05
## 4 2.091603e-05 4.151766e-07 2.143277e-07 6.023546e-07 1.231859e-06 2.214789e-05
## 5 1.208114e-05 7.784025e-07 3.826662e-07 5.197949e-07 1.680864e-06 1.376201e-05
## 6 1.222216e-05 8.668046e-07 2.605275e-07 1.396694e-06 2.524026e-06 1.474619e-05
## all
## 1 1.041991e-05
## 2 1.160472e-05
## 3 2.026341e-05
## 4 3.228636e-05
## 5 1.884104e-05
## 6 2.019199e-05
## hgncID hgncSymbol enstID ensgID geneName class value
## 1 658 ARF5 ENST00000000233 ENSG00000004059 ARF5 syn 2.704295e-06
## 2 6752 M6PR ENST00000000412 ENSG00000003056 M6PR syn 2.877349e-06
## 3 3720 FKBP4 ENST00000001008 ENSG00000004478 FKBP4 syn 5.608786e-06
## 4 20581 CYP26B1 ENST00000001146 ENSG00000003137 CYP26B1 syn 1.013847e-05
## 5 28816 NDUFAF7 ENST00000002125 ENSG00000003509 NDUFAF7 syn 5.079037e-06
## 6 4008 FUCA2 ENST00000002165 ENSG00000001036 FUCA2 syn 5.445799e-06
Most of the core functionality of this package is contained in the
denovolyze
function. The denovolyzeByClass
and
denovolyzeByGene
functions used in this vignette are
convenience functions that set defaults appropriate to the most common
usages of this function. Full details of additional options and default
behaviours are available using ?denovolyze
.