Nothing
#' @name gl.filter.parent.offspring
#' @title Filters putative parent offspring within a population
#' @description
#' This script removes individuals suspected of being related as
#' parent-offspring,using the output of the function
#' \code{\link{gl.report.parent.offspring}}, which examines the frequency of
#' pedigree inconsistent loci, that is, those loci that are homozygotes in the
#' parent for the reference allele, and homozygous in the offspring for the
#' alternate allele. This condition is not consistent with any pedigree,
#' regardless of the (unknown) genotype of the other parent.
#' The pedigree inconsistent loci are counted as an indication of whether or not
#' it is reasonable to propose the two individuals are in a parent-offspring
#' relationship.
#' @param x Name of the genlight object containing the SNP genotypes [required].
#' @param min.rdepth Minimum read depth to include in analysis [default 12].
#' @param min.reproducibility Minimum reproducibility to include in analysis
#' [default 1].
#' @param range Specifies the range to extend beyond the interquartile range for
#' delimiting outliers [default 1.5 interquartile ranges].
#' @param method Method of selecting the individual to retain from each pair of
#' parent offspring relationship, 'best' (based on CallRate) or 'random'
#' [default 'best'].
#' @param rm.monomorphs If TRUE, remove monomorphic loci after filtering
#' individuals [default FALSE].
#' @param plot_theme Theme for the plot. See Details for options
#' [default theme_dartR()].
#' @param plot_colors List of two color names for the borders and fill of the
#' plots [default gl.colors(2)].
#' @param plot.dir Directory to save the plot RDS files [default as specified
#' by the global working directory or tempdir()]
#' @param plot.file Name for the RDS binary file to save (base name only, exclude extension) [default NULL]
#' @param verbose Verbosity: 0, silent or fatal errors; 1, begin and end; 2,
#' progress log ; 3, progress and results summary; 5, full report
#' [default 2, unless specified using gl.set.verbosity].
#' @details
#' If two individuals are in a parent offspring relationship, the true number of
#' pedigree inconsistent loci should be zero, but SNP calling is not infallible.
#' Some loci will be miss-called. The problem thus becomes one of determining if
#' the two focal individuals have a count of pedigree inconsistent loci less
#' than would be expected of typical unrelated individuals. There are some quite
#' sophisticated software packages available to formally apply likelihoods to
#' the decision, but we use a simple outlier comparison.
#' To reduce the frequency of miss-calls, and so emphasize the difference
#' between true parent-offspring pairs and unrelated pairs, the data can be
#' filtered on read depth. Typically minimum read depth is set to 5x, but you
#' can examine the distribution of read depths with the function
#' \code{\link[dartR.base]{gl.report.rdepth}} and push this up with an acceptable loss of
#' loci. 12x might be a good minimum for this particular analysis. It is
#' sensible also to push the minimum reproducibility up to 1, if that does not
#' result in an unacceptable loss of loci. Reproducibility is stored in the slot
#' \code{@other$loc.metrics$RepAvg} and is defined as the proportion of
#' technical replicate assay pairs for which the marker score is consistent.
#' You can examine the distribution of reproducibility with the function
#' \code{\link[dartR.base]{gl.report.reproducibility}}.
#' Note that the null expectation is not well defined, and the power reduced, if
#' the population from which the putative parent-offspring pairs are drawn
#' contains many sibs. Note also that if an individual has been genotyped twice
#' in the dataset, the replicate pair will be assessed by this script as being
#' in a parent-offspring relationship.
#' You should run \code{\link{gl.report.parent.offspring}} before filtering. Use
#' this report to decide min.rdepth and min.reproducibility and assess impact on
#' your dataset.
#' Note that if your dataset does not contain RepAvg or rdepth among the locus
#' metrics, the filters for reproducibility and read depth are no used.
#' Examples of other themes that can be used can be consulted in \itemize{
#' \item \url{https://ggplot2.tidyverse.org/reference/ggtheme.html} and \item
#' \url{https://yutannihilation.github.io/allYourFigureAreBelongToUs/ggthemes/}
#' }
#' @return the filtered genlight object without A set of individuals in
#' parent-offspring relationship. NULL if no parent-offspring relationships were
#' found.
#' @author Custodian: Arthur Georges -- Post to
#' \url{https://groups.google.com/d/forum/dartr}
#' @examples
#' out <- gl.filter.parent.offspring(testset.gl[1:10, 1:50])
#' @seealso \code{\link[dartR.base]{gl.report.rdepth}} , \code{\link[dartR.base]{gl.report.reproducibility}},
#' \code{\link{gl.report.parent.offspring}}
#' @family filter functions
#' @importFrom stats median IQR setNames
#' @importFrom utils combn
#' @import patchwork
#' @export
gl.filter.parent.offspring <- function(x,
min.rdepth = 12,
min.reproducibility = 1,
range = 1.5,
method = "best",
rm.monomorphs = FALSE,
plot_theme = theme_dartR(),
plot_colors = gl.colors(2),
plot.file = NULL,
plot.dir = NULL,
verbose = NULL) {
# SET VERBOSITY
verbose <- gl.check.verbosity(verbose)
# SET WORKING DIRECTORY
plot.dir <- gl.check.wd(plot.dir, verbose = 0)
# FLAG SCRIPT START
funname <- match.call()[[1]]
utils.flag.start(
func = funname,
build = "Jody",
verbose = verbose
)
# CHECK DATATYPE
datatype <- utils.check.datatype(x, verbose = verbose)
# DO THE JOB
hold <- x
# Generate null expectation for pedigree inconsistency, and outliers
if (verbose >= 2) {
cat(
report(
" Generating null expectation for distribution of counts of
pedigree incompatibility\n"
)
)
}
# Assign individuals as populations
pop(x) <- x$ind.names
# Filter stringently on reproducibility to minimize miscalls
if (is.null(x@other$loc.metrics$RepAvg)) {
if(verbose>0) cat(
warn(
" Dataset does not include RepAvg among the locus metrics,
therefore the reproducibility filter was not used\n"
)
)
} else {
x <-
gl.filter.reproducibility(x,
threshold = min.reproducibility,
plot.display = F,
verbose = 0
)
}
# Filter stringently on read depth, to further minimize miscalls
if (is.null(x@other$loc.metrics$rdepth)) {
if(verbose>0) cat(
warn(
" Dataset does not include rdepth among the locus metrics,
therefore the read depth filter was not used\n"
)
)
} else {
x <- gl.filter.rdepth(x,
lower = min.rdepth,
plot.display = FALSE,
verbose = 0)
}
pairwise_table <- function(x,
pw_fun,
dec = 4) {
ind_names <- indNames(x)
x <- as.matrix(x)
ix <- setNames(seq_along(ind_names), ind_names)
pp <- outer(ix[-1L], ix[-length(ix)],
function(ivec, jvec) {
vapply(seq_along(ivec),
function(k) {
i <- ivec[k]
j <- jvec[k]
if (i > j) {
pw_fun(x = x[i, ], y = x[j, ])
} else{
NA_real_
}
}, numeric(1))
})
return(pp)
}
fun <- function(x, y) {
vect <- (x * 10) + y
homalts <- sum(vect == 2 | vect == 20, na.rm = T)
}
count <- pairwise_table(x = x, pw_fun = fun)
# Prepare for plotting
if (verbose >= 2) {
cat(
report(
" Identifying outliers with lower than expected counts of
pedigree inconsistencies\n"
)
)
}
title <-
paste0("SNP data (DArTSeq)\nCounts of pedigree incompatible loci per
pair")
counts_plot <- as.vector(unlist(unname(count)))
counts_plot <- counts_plot[!is.na(counts_plot)]
counts_plot <- data.frame(count = counts_plot)
# Boxplot
p1 <-
ggplot(counts_plot, aes(y = count)) +
geom_boxplot(color = plot_colors[1], fill = plot_colors[2]) +
coord_flip() +
plot_theme +
xlim(range = c(-1, 1)) +
ylim(min(count), max(count)) +
ylab(" ") +
theme(axis.text.y = element_blank(), axis.ticks.y = element_blank()) +
ggtitle(title)
outliers_temp <- ggplot_build(p1)$data[[1]]$outliers[[1]]
lower.extremes <-
outliers_temp[outliers_temp < stats::median(count,
na.rm = T)]
if (length(lower.extremes) == 0) {
outliers <- NULL
} else {
outliers <- data.frame(Outlier = lower.extremes)
}
outliers <- unique(outliers)
# Ascertain the identity of the pairs
if (verbose >= 2) {
cat(report(" Identifying outlying pairs\n"))
}
if (length(lower.extremes) > 0) {
tmp <- count
# tmp[lower.tri(tmp)] <- t(tmp)[lower.tri(tmp)]
outliers_df <- NULL
for (i in 1:length(outliers$Outlier)) {
# Identify
tmp2 <- which(tmp == outliers$Outlier[i],
arr.ind = T)
ind1 <- rownames(count)[tmp2[, "row"]]
ind2 <- colnames(count)[tmp2[, "col"]]
# Z-scores
zscore <-
(mean(count, na.rm = TRUE) - outliers$Outlier[i]) /
sd(count, na.rm = TRUE)
zscore <- zscore * -1
outliers_p <-
round(pnorm(
mean = mean(count, na.rm = TRUE),
sd = sd(count, na.rm = TRUE),
q = zscore
), 8)
outliers_df_tmp <- data.frame(
Outlier = rep(outliers$Outlier[i], length(ind1)),
ind1 = ind1,
ind2 = ind2,
zscore = zscore,
p = outliers_p
)
outliers_df <- rbind(outliers_df, outliers_df_tmp)
}
# ordering by number of outliers
outliers_df <- outliers_df[order(outliers_df$Outlier,
decreasing = T),]
}
# Extract the quantile threshold
iqr <- stats::IQR(count, na.rm = TRUE)
qth <- quantile(count, 0.25, na.rm = TRUE)
cutoff <- qth - iqr * range
# Histogram
p2 <-
ggplot(counts_plot, aes(x = count)) +
geom_histogram(bins = 50,
color = plot_colors[1],
fill = plot_colors[2]) +
geom_vline(xintercept = cutoff,
color = "red",
size = 1) +
coord_cartesian(xlim = c(min(count), max(count))) +
xlab("No. Pedigree incompatible") +
ylab("Count") +
plot_theme
# if individuals in parent offspring relationship are found remove
if (length(lower.extremes) > 0) {
if (method == "best") {
if (verbose > 1) {
cat(report(" Selecting one individual based on Call rate\n"))
}
outliers_df <- outliers_df[which(outliers_df$Outlier<=cutoff),]
ind_to_remove_temp <-
outliers_df[
!duplicated(outliers_df[, c("ind1", "ind2")]),
c("ind1", "ind2")
]
ind_to_remove <- vector()
for (i in 1:nrow(ind_to_remove_temp)) {
ind_to_remove_temp_2 <- unname(unlist(ind_to_remove_temp[i, ]))
ind_1 <-
sum(glNA(
hold[which(indNames(hold) ==
ind_to_remove_temp_2[1])],
alleleAsUnit = FALSE
))
ind_2 <-
sum(glNA(
hold[which(indNames(hold) ==
ind_to_remove_temp_2[2])],
alleleAsUnit = FALSE
))
ind_to_remove_temp_3 <-
as.data.frame(cbind(ind_to_remove_temp_2, c(ind_1, ind_2)))
colnames(ind_to_remove_temp_3) <-
c("ind", "NAs")
ind_to_remove_temp_3 <-
ind_to_remove_temp_3[order(ind_to_remove_temp_3$NAs), ]
ind_to_remove <-
c(ind_to_remove, ind_to_remove_temp_3[1, "ind"])
}
hold <-
gl.drop.ind(hold, ind.list = ind_to_remove, verbose = verbose)
} else {
if (verbose > 1) {
cat(report(" Selecting one individual at random\n"))
}
ind_to_remove_temp <-
outliers_df[
!duplicated(outliers_df[, c("ind1", "ind2")]),
c("ind1", "ind2")
]
ind_to_remove <-
apply(ind_to_remove_temp, 1, function(x) {
x[sample(1:2, 1)]
})
hold <-
gl.drop.ind(hold, ind.list = ind_to_remove, verbose = verbose)
}
# removing monomorphic loci
if (rm.monomorphs == TRUE) {
hold <- gl.filter.monomorphs(hold, verbose = verbose)
}
# REPORT THE RESULTS
if (verbose >= 2) {
cat(" \nInitial number of individuals:", nInd(x), "\n")
cat(" Pairs of individuals in a parent offspring relationship:\n\n")
print(outliers_df)
cat(" \nIndividuals removed: ")
cat(ind_to_remove, sep = "\n")
cat("\n")
}
}
# if NO individuals in parent offspring relationship are found
if (length(lower.extremes) == 0) {
if (verbose > 0) {
cat(
important(
"No individuals were found to be in parent offspring
relationship, therefore the genlight object is returned
unchanged.\n"
)
)
}
}
df <- outliers
# PRINTING OUTPUTS
# using package patchwork
p3 <- (p1 / p2) + plot_layout(heights = c(1, 4))
print(p3)
if (!is.null(plot.file)) {
# Optionally save the plot ---------------------
tmp <- utils.plot.save(p3,
dir = plot.dir,
file = plot.file,
verbose = verbose
)
}
# ADD ACTION TO HISTORY
nh <- length(hold@other$history)
hold@other$history[[nh + 1]] <- match.call()
# FLAG SCRIPT END
if (verbose >= 1) {
cat(report("Completed:", funname, "\n"))
}
# RETURN
invisible(hold)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.