Within omics sample relationship verification

Here we illustrate how to detect data linkage errors with the omicsPrint package using both artificially generated data and experimental data. Several additional vignettes are available that show the use of the package on further experimental data in different settings, i.e., 450k DNA methylation and imputed genotypes.

Create toy data

Here we generate a single vector with 100 randomly drawn integers from the set; 1, 2, 3, representing 100 SNP calls from a single individual. Three additional individuals are generated by randomly swapping a certain fraction of the SNPs. Swapping 5 SNPs will introduce a few mismatches mimicking a situation where the same individual was measured twice (replicate) but with measurement error. Swapping 50% of the SNPs will be similar to the difference in genotypes between parents and offspring. Swapping all SNPs will result in a situation similar to comparing two unrelated individuals.

swap <- function(x, frac=0.05) {
    n <- length(x)
    k <- floor(n*frac)
    x1 <- sample(1:n,k)
    x2 <- sample(1:n,k) ##could be overlapping
    x[x2] <- x[x1]
    x
}
x1 <- 1 + rbinom(100, size=2, prob=1/3)
x2 <- swap(x1, 0.05) ##strongly related e.g. replicate
x3 <- swap(x1, 0.5) ##related e.g. parent off spring
x4 <- swap(x1, 1) ##unrelated
x <- cbind(x1, x2, x3, x4)

Now x contains the 100 SNPs for the four individuals using head we can inspect the first six SNPs.

head(x)
##      x1 x2 x3 x4
## [1,]  2  2  2  2
## [2,]  1  1  1  1
## [3,]  1  1  2  2
## [4,]  1  1  2  2
## [5,]  2  2  1  1
## [6,]  1  1  1  1

Running the allelesharing algorithm

We use Identity by State (IBS) for the set of SNPs to infer sample relations. See Abecasis et al. (2001), for the description of this approach applied to genetic data. Briefly, between each sample pair, the IBS-vector is calculated, which is a measure of genetic distance between individuals. Next, the vector is summarized by its mean and variance. A mean of 2 and variance of 0 indicates that the samples are identical.

data <- alleleSharing(x, verbose=TRUE)
## Hash relations
## Pruning 100 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Using 100 polymorphic SNPs to determine allele sharing.
## Running `square` IBS algorithm!

The set of SNPs may contain uninformative SNPs, SNPs of bad quality or even SNPs could be missing. The following pruning steps are implemented to yield the most informative set of SNPs (thresholds can be adjusted see ?alleleSharing):

  1. a SNP is remove if missing in >5% of the samples (callRate = 0.95)
  2. a sample should have at least 2/3 of the SNPs called (coverageRate = 2/3)
  3. a SNP is can be removed if it violates the Hardy-Weinberg equilibrium (alpha = 0).
  4. a SNP is can be removed if the minor allele frequency is below the given threshold (maf = 0)

Hardy-Weinberg test-statistics is calculated using a \(\chi^2\)-test and Bonferonni multiple testing correction is performed.

data
##    mean       var colnames.x colnames.y  relation
## 1  2.00 0.0000000         x1         x1 identical
## 2  1.99 0.0100000         x2         x1 unrelated
## 3  1.68 0.3208081         x3         x1 unrelated
## 4  1.40 0.3434343         x4         x1 unrelated
## 5  2.00 0.0000000         x2         x2 identical
## 6  1.67 0.3243434         x3         x2 unrelated
## 7  1.39 0.3413131         x4         x2 unrelated
## 8  2.00 0.0000000         x3         x3 identical
## 9  1.38 0.3591919         x4         x3 unrelated
## 10 2.00 0.0000000         x4         x4 identical

By default no relations are assumed except for the self-self relations.

The output is a data.frame containing all pairwise comparisons with the mean and variance of the IBS over the set of SNPs and the reported sample relationship, including the identifiers.

Report mismatches and provide graphical summary

Since we provided a list of known relations and assume that the majority is correct, we can build a classifier to discover misclassified relations. Linear discriminant analysis is used to generate a confusion-matrix, which is subsequently used to graphically represent the classification boundaries and generate an output file with misclassified sample pairs.

mismatches <- inferRelations(data)
Scatter-plot of IBS mean and variance with classification boundary for pairwise comparison between the samples without specifying sample relationships using artificially generated data.

Scatter-plot of IBS mean and variance with classification boundary for pairwise comparison between the samples without specifying sample relationships using artificially generated data.

mismatches
##   mean  var colnames.x colnames.y  relation predicted
## 2 1.99 0.01         x2         x1 unrelated identical

There is one misclassified sample, namely the replicate that we introduced but was not a priori specified as an existing relationship. The true relationship with between sample x1 and sample x2 is an identical relation. Furthermore, we see two sample pairs with mean IBS of 1.99 and variance 0.01 which is an indication that also these pairs share a considerable number of alleles. If known, such relationships can be specified prior to analysis.

relations <- expand.grid(idx = colnames(x), idy= colnames(x))
relations$relation_type <- "unrelated"
relations$relation_type[relations$idx == relations$idy] <- "identical"
relations$relation_type[c(2,5)] <- "identical" ##replicate
relations$relation_type[c(3,7,9,10)] <- "parent offspring"
relations
##    idx idy    relation_type
## 1   x1  x1        identical
## 2   x2  x1        identical
## 3   x3  x1 parent offspring
## 4   x4  x1        unrelated
## 5   x1  x2        identical
## 6   x2  x2        identical
## 7   x3  x2 parent offspring
## 8   x4  x2        unrelated
## 9   x1  x3 parent offspring
## 10  x2  x3 parent offspring
## 11  x3  x3        identical
## 12  x4  x3        unrelated
## 13  x1  x4        unrelated
## 14  x2  x4        unrelated
## 15  x3  x4        unrelated
## 16  x4  x4        identical

Rerun the allelesharing algorithm now provided with the known relations.

data <- alleleSharing(x, relations=relations)
## Hash relations
## Pruning 100 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Using 100 polymorphic SNPs to determine allele sharing.
## Running `square` IBS algorithm!
data
##    mean       var colnames.x colnames.y         relation
## 1  2.00 0.0000000         x1         x1        identical
## 2  1.99 0.0100000         x2         x1        identical
## 3  1.68 0.3208081         x3         x1 parent offspring
## 4  1.40 0.3434343         x4         x1        unrelated
## 5  2.00 0.0000000         x2         x2        identical
## 6  1.67 0.3243434         x3         x2 parent offspring
## 7  1.39 0.3413131         x4         x2        unrelated
## 8  2.00 0.0000000         x3         x3        identical
## 9  1.38 0.3591919         x4         x3        unrelated
## 10 2.00 0.0000000         x4         x4        identical
mismatches <- inferRelations(data)
Scatter-plot of IBS mean and variance with classification boundaries for pairwise comparison between the samples with specifying sample relationships using artificially generated data.

Scatter-plot of IBS mean and variance with classification boundaries for pairwise comparison between the samples with specifying sample relationships using artificially generated data.

mismatches
## [1] mean       var        colnames.x colnames.y relation   predicted 
## <0 rows> (or 0-length row.names)

All misclassified relations were resolved.

Across omics data type sample relationship verification

The previous example showed how to perform sample relationship verification within a single omics data type. If a second set of SNPs is available obtained from a different omic data type (and the SNPs are partly overlapping), omicsPrint can be used to verify relationships between omics types, e.g. to establish whether two omics data types were indeed generated for the same individual in order to exclude or detect sample mix-ups.

In this artificial example a random subset of 80 SNPs is selected as the set of SNPs from a different omic type. First running without providing the known relations.

rownames(x) <- paste0("rs", 1:100)
y <- x[sample(1:100, 80),]
data <- alleleSharing(x, y)
## Hash relations
## Pruning 100 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Pruning 80 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Using 80 polymophic SNPs to determine allele sharing.
## Running `rectangular` IBS algorithm!

Note that pruning is performed on both data types and automatically a set of overlapping SNPs (80) is used provided that the rownames of x and y are identical (this also holds for sample relations where the relation identifiers idx and idy should match with the columnames of x and y).

data
##      mean       var colnames.x colnames.y  relation
## 1  2.0000 0.0000000         x1         x1 identical
## 2  2.0000 0.0000000         x2         x1 unrelated
## 3  1.6625 0.3530063         x3         x1 unrelated
## 4  1.4250 0.3234177         x4         x1 unrelated
## 5  2.0000 0.0000000         x1         x2 unrelated
## 6  2.0000 0.0000000         x2         x2 identical
## 7  1.6625 0.3530063         x3         x2 unrelated
## 8  1.4250 0.3234177         x4         x2 unrelated
## 9  1.6625 0.3530063         x1         x3 unrelated
## 10 1.6625 0.3530063         x2         x3 unrelated
## 11 2.0000 0.0000000         x3         x3 identical
## 12 1.4125 0.3466772         x4         x3 unrelated
## 13 1.4250 0.3234177         x1         x4 unrelated
## 14 1.4250 0.3234177         x2         x4 unrelated
## 15 1.4125 0.3466772         x3         x4 unrelated
## 16 2.0000 0.0000000         x4         x4 identical
mismatches <- inferRelations(data)
Scatter-plot of IBS mean and variance with classification boundary for pairwise comparison between the samples without specifying sample relationships using artificial data.

Scatter-plot of IBS mean and variance with classification boundary for pairwise comparison between the samples without specifying sample relationships using artificial data.

mismatches
##   mean var colnames.x colnames.y  relation predicted
## 2    2   0         x2         x1 unrelated identical
## 5    2   0         x1         x2 unrelated identical

Now running with providing the known relations.

data <- alleleSharing(x, y, relations)
## Hash relations
## Pruning 100 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Pruning 80 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Using 80 polymophic SNPs to determine allele sharing.
## Running `rectangular` IBS algorithm!
data
##      mean       var colnames.x colnames.y         relation
## 1  2.0000 0.0000000         x1         x1        identical
## 2  2.0000 0.0000000         x2         x1        identical
## 3  1.6625 0.3530063         x3         x1 parent offspring
## 4  1.4250 0.3234177         x4         x1        unrelated
## 5  2.0000 0.0000000         x1         x2        identical
## 6  2.0000 0.0000000         x2         x2        identical
## 7  1.6625 0.3530063         x3         x2 parent offspring
## 8  1.4250 0.3234177         x4         x2        unrelated
## 9  1.6625 0.3530063         x1         x3 parent offspring
## 10 1.6625 0.3530063         x2         x3 parent offspring
## 11 2.0000 0.0000000         x3         x3        identical
## 12 1.4125 0.3466772         x4         x3        unrelated
## 13 1.4250 0.3234177         x1         x4        unrelated
## 14 1.4250 0.3234177         x2         x4        unrelated
## 15 1.4125 0.3466772         x3         x4        unrelated
## 16 2.0000 0.0000000         x4         x4        identical
mismatches <- inferRelations(data)
## Warning in lda.default(x, grouping, ...): variables are collinear
Scatter-plot of IBS mean and variance with classification boundaries for pairwise comparison between the samples with specifying sample relationships using artificial data.

Scatter-plot of IBS mean and variance with classification boundaries for pairwise comparison between the samples with specifying sample relationships using artificial data.

mismatches
## [1] mean       var        colnames.x colnames.y relation   predicted 
## <0 rows> (or 0-length row.names)

Providing the known, true relationships thus yields no missclassified sample relationships.

An example using real world methylation data from a SummarizedExperiment

Here we will show how you could varify sample relationships on publicly available DNA methylation data. The dataset used here contains pairs of monozygotic twins. We will extract the beta-value matrix from GEO GSE100940, paper in press.

First we extract the data from GEO using the GEOquery-package.

library(GEOquery)
library(SummarizedExperiment)
file <- tempfile(fileext = ".txt.gz")
download.file("ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE100nnn/GSE100940/matrix/GSE100940_series_matrix.txt.gz", file)
gset <- getGEO(filename=file, getGPL=FALSE)

Next we convert the returned object into a SummarizedExperiment:

se <- makeSummarizedExperimentFromExpressionSet(gset)
se
## class: RangedSummarizedExperiment 
## dim: 485577 24 
## metadata(3): experimentData annotation protocolData
## assays(1): exprs
## rownames(485577): cg00000029 cg00000108 ... rs966367 rs9839873
## rowData names(0):
## colnames(24): GSM2696882 GSM2696883 ... GSM2696904 GSM2696905
## colData names(33): title geo_accession ... data_row_count
##   gender.ch1

Sample data can be extracted from the SummarizedExperiment-object using the colData-function and we can see which pair of twins each sample belongs to through the source_name_ch1 field. Using this knowledge we can construct a table of expected relationships:

r <- expand.grid(idx=colnames(se), idy=colnames(se))
r$Xpair <- sapply(strsplit(as.character(colData(se)[r$idx, "source_name_ch1"]),
                           split = "_"), head, 1)
r$Ypair <- sapply(strsplit(as.character(colData(se)[r$idy, "source_name_ch1"]),
                           split = "_"), head, 1)
r$relation_type <- "unrelated"
r$relation_type[r$Xpair == r$Ypair] <- "twin"
r$relation_type[r$idx == r$idy] <- "identical"
head(r)
##          idx        idy Xpair Ypair relation_type
## 1 GSM2696882 GSM2696882   M01   M01     identical
## 2 GSM2696883 GSM2696882   M01   M01          twin
## 3 GSM2696884 GSM2696882   M02   M01     unrelated
## 4 GSM2696885 GSM2696882   M02   M01     unrelated
## 5 GSM2696886 GSM2696882   M03   M01     unrelated
## 6 GSM2696887 GSM2696882   M03   M01     unrelated

Several probes on the array contain SNPs occurring frequently in different populations(Chen et al. 2013; Zhou, Laird, and Shen 2016). We can use these to verify the expected relationships. We have made these data available from inside of this package.

Now we make a selection of CpGs probably affected by polymorphic SNPS in populations from East Asian, as these samples are from South Korea:

data(hm450.manifest.pop.GoNL)
cpgs <- names(hm450.manifest.pop.GoNL[
    mcols(hm450.manifest.pop.GoNL)$MASK.snp5.EAS])
se <- se[cpgs,]

Next the beta-values are converted to genotypes using our enhanced K-means algorithm:

dnamCalls <- beta2genotype(se, assayName = "exprs")
dim(dnamCalls)
## [1] 821  24
dnamCalls[1:5, 1:5]
##            GSM2696882 GSM2696883 GSM2696884 GSM2696885 GSM2696886
## cg09762182          3          3          1          1          3
## cg25282454          3          3          2          2          2
## cg24345856          3          3          2          2          2
## cg13167158          3          3          3          3          1
## cg12213037          2          2          3          3          3

The DNA methylation based genotype calls can be directly supplied to the allelesharing algorithm to perform the intra-omic sample matching:

data <- alleleSharing(dnamCalls, relations = r, verbose = TRUE)
## Hash relations
## Pruning 821 SNPs ...
## 0 SNPs removed because of low call rate!
## 0 samples removed because too few SNPs called!
## Using 821 polymorphic SNPs to determine allele sharing.
## Running `square` IBS algorithm!
## 25 of 300 (8.33%) ...
mismatches <- inferRelations(data)
Scatter-plot of IBS mean and variance with classification boundaries for pairwise comparison between samples consisting of pairs of monozygotic twins.

Scatter-plot of IBS mean and variance with classification boundaries for pairwise comparison between samples consisting of pairs of monozygotic twins.

mismatches
##         mean         var colnames.x colnames.y relation predicted
## 2   1.995128 0.004854282 GSM2696883 GSM2696882     twin identical
## 49  1.997564 0.002433083 GSM2696885 GSM2696884     twin identical
## 92  1.991474 0.008463801 GSM2696887 GSM2696886     twin identical
## 131 1.995128 0.004854282 GSM2696889 GSM2696888     twin identical
## 166 1.995128 0.004854282 GSM2696891 GSM2696890     twin identical
## 197 1.995128 0.004854282 GSM2696893 GSM2696892     twin identical
## 224 1.996346 0.003645168 GSM2696895 GSM2696894     twin identical
## 247 2.000000 0.000000000 GSM2696897 GSM2696896     twin identical
## 266 1.995128 0.004854282 GSM2696899 GSM2696898     twin identical
## 281 1.992692 0.007263599 GSM2696901 GSM2696900     twin identical
## 292 1.993910 0.006060426 GSM2696903 GSM2696902     twin identical
## 299 1.993910 0.006060426 GSM2696905 GSM2696904     twin identical

The twins are predicted as being identical to each other. This is not unexpected as they are monozygotic.

SessionInfo

sessionInfo()
## R version 3.6.1 (2019-07-05)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 18.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.10-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.10-bioc/R/lib/libRlapack.so
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=C              
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
## [1] stats4    parallel  stats     graphics  grDevices utils     datasets 
## [8] methods   base     
## 
## other attached packages:
##  [1] SummarizedExperiment_1.16.0 DelayedArray_0.12.0        
##  [3] BiocParallel_1.20.0         matrixStats_0.55.0         
##  [5] GenomicRanges_1.38.0        GenomeInfoDb_1.22.0        
##  [7] IRanges_2.20.0              S4Vectors_0.24.0           
##  [9] GEOquery_2.54.0             Biobase_2.46.0             
## [11] BiocGenerics_0.32.0         BiocStyle_2.14.0           
## [13] omicsPrint_1.6.0            MASS_7.3-51.4              
## 
## loaded via a namespace (and not attached):
##  [1] tidyselect_0.2.5            xfun_0.10                  
##  [3] purrr_0.3.3                 lattice_0.20-38            
##  [5] vctrs_0.2.0                 htmltools_0.4.0            
##  [7] yaml_2.2.0                  rlang_0.4.1                
##  [9] pillar_1.4.2                glue_1.3.1                 
## [11] GenomeInfoDbData_1.2.2      lifecycle_0.1.0            
## [13] stringr_1.4.0               zlibbioc_1.32.0            
## [15] evaluate_0.14               knitr_1.25                 
## [17] MultiAssayExperiment_1.12.0 highr_0.8                  
## [19] Rcpp_1.0.2                  readr_1.3.1                
## [21] backports_1.1.5             BiocManager_1.30.9         
## [23] RaggedExperiment_1.10.0     limma_3.42.0               
## [25] XVector_0.26.0              hms_0.5.1                  
## [27] digest_0.6.22               stringi_1.4.3              
## [29] dplyr_0.8.3                 grid_3.6.1                 
## [31] tools_3.6.1                 bitops_1.0-6               
## [33] magrittr_1.5                RCurl_1.95-4.12            
## [35] tibble_2.1.3                crayon_1.3.4               
## [37] tidyr_1.0.0                 pkgconfig_2.0.3            
## [39] zeallot_0.1.0               ellipsis_0.3.0             
## [41] Matrix_1.2-17               xml2_1.2.2                 
## [43] assertthat_0.2.1            rmarkdown_1.16             
## [45] R6_2.4.0                    compiler_3.6.1

Reference

Abecasis, G. R., S. S. Cherny, W. O. Cookson, and L. R. Cardon. 2001. “GRR: graphical representation of relationship errors.” Bioinformatics 17 (8):742–43.

Chen, Y. A., M. Lemire, S. Choufani, D. T. Butcher, D. Grafodatskaya, B. W. Zanke, S. Gallinger, T. J. Hudson, and R. Weksberg. 2013. “Discovery of cross-reactive probes and polymorphic CpGs in the Illumina Infinium HumanMethylation450 microarray.” Epigenetics 8 (2):203–9.

Zhou, W., P. W. Laird, and H. Shen. 2016. “Comprehensive characterization, annotation and innovative use of Infinium DNA methylation BeadChip probes.” Nucleic Acids Res., October.