Nothing
setMethod("xLinked", signature(param="VariantFilteringParam"),
function(param, svparam=ScanVcfParam(),
use=c("everything", "complete.obs", "all.obs"),
BPPARAM=bpparam("SerialParam")) {
## store call for reproducing it later
callobj <- match.call()
callstr <- gsub(".local", "xLinked", deparse(callobj))
## fetch necessary parameters
vcfFiles <- param$vcfFiles
ped <- param$pedFilename
seqInfos <- param$seqInfos
txdb <- get(param$txdb)
bsgenome <- get(param$bsgenome)
sampleNames <- param$sampleNames
if (!exists(as.character(substitute(BPPARAM))))
stop(sprintf("Parallel back-end function %s given in argument 'BPPARAM' does not exist in the current workspace. Either you did not write correctly the function name or you did not load the package 'BiocParallel'.", as.character(substitute(BPPARAM))))
if (length(vcfFiles) > 1)
stop("More than one input VCF file is currently not supported. Please either merge the VCF files into a single one with software such as vcftools or GATK, or do the variant calling simultaneously on all samples, or proceed analyzing each file separately.")
else if (length(vcfFiles) < 1)
stop("A minimum of 1 vcf file has to be provided")
if (is.na(ped))
stop("Please specify a PED file name when building the parameter object.")
pedDf <- .readPEDfile(ped)
unaff_males <- pedDf[pedDf$Phenotype == 1 & pedDf$Sex == 1, ]
carrier_females <- pedDf[pedDf$Phenotype == 1 & pedDf$Sex == 2, ]
aff_males <- pedDf[pedDf$Phenotype == 2 & pedDf$Sex == 1, ]
if (nrow(aff_males) < 1)
stop("The 'X-linked' analysis requires at least one affected male.")
annotationCache <- new.env() ## cache annotations when using VariantAnnotation::locateVariants()
annotated_variants <- VRanges()
metadata(mcols(annotated_variants)) <- list(cutoffs=CutoffsList(), sortings=CutoffsList())
open(vcfFiles[[1]])
n.var <- 0
flag <- TRUE
while (flag && nrow(vcf <- readVcf(vcfFiles[[1]], genome=seqInfos[[1]], param=svparam))) {
## insert an index for each variant in the VCF file
info(header(vcf)) <- rbind(info(header(vcf)),
DataFrame(Number=1, Type="Integer",
Description="Variant index in the VCF file.",
row.names="VCFIDX"))
info(vcf)$VCFIDX <- (n.var+1):(n.var+nrow(vcf))
varIDs <- rownames(vcf)
n.var <- n.var + nrow(vcf)
mask <- .xLinkedMask(vcf, pedDf, bsgenome, use)
if (any(mask)) {
## filter out variants that do not segregate as an 'X-linked' trait
vcf <- vcf[mask, ]
## coerce the VCF object to a VRanges object
variants <- as(vcf, "VRanges")
## since the conversion of VCF to VRanges strips the VCF ID field, let's put it back
variants$VARID <- varIDs[variants$VCFIDX]
## harmonize Seqinfo data between variants, annotations and reference genome
variants <- .matchSeqinfo(variants, txdb, bsgenome)
## annotate variants
annotated_variants <- c(annotated_variants,
annotationEngine(variants, param, annotationCache,
BPPARAM=BPPARAM))
}
if (length(vcfWhich(svparam)) > 0) ## temporary fix to keep this looping
flag <- FALSE ## structure with access through genomic ranges
message(sprintf("%d variants processed", n.var))
}
close(vcfFiles[[1]])
gSO <- annotateSO(annotated_variants, sog(param))
annotated_variants <- addSOmetadata(annotated_variants)
if (length(annotated_variants) == 0)
warning("No variants segregate following an X-linked inheritance model.")
annoGroups <- list()
if (!is.null(mcols(mcols(annotated_variants))$TAB)) {
mask <- !is.na(mcols(mcols(annotated_variants))$TAB)
annoGroups <- split(colnames(mcols(annotated_variants))[mask],
mcols(mcols(annotated_variants))$TAB[mask])
}
## add functional annotation filters generated by the annotation engine
funFilters <- FilterRules(lapply(metadata(mcols(annotated_variants))$filters,
function(f) { environment(f) <- baseenv() ; f}))
active(funFilters) <- FALSE ## by default, functional annotation filters are inactive
flt <- c(filters(param), funFilters)
fltMd <- rbind(filtersMetadata(param),
DataFrame(Description=sapply(metadata(mcols(annotated_variants))$filters,
attr, "description"),
AnnoGroup=sapply(metadata(mcols(annotated_variants))$filters,
attr, "TAB")))
cutoffs <- metadata(mcols(annotated_variants))$cutoffs
sortings <- metadata(mcols(annotated_variants))$sortings
bsgenome <- get(param$bsgenome)
new("VariantFilteringResults", callObj=callobj, callStr=callstr,
genomeDescription=as(bsgenome, "GenomeDescription"), inputParameters=param,
activeSamples=sampleNames, inheritanceModel="X-linked",
variants=annotated_variants, bamViews=BamViews(), gSO=gSO, filters=flt,
filtersMetadata=fltMd, cutoffs=cutoffs, sortings=sortings, annoGroups=annoGroups,
minScore5ss=NA_real_, minScore3ss=NA_real_)
})
## build a logical mask whose truth values correspond to variants that segregate
## according to an X-linked inheritance model: variants in carrier females should
## be heterozygous, in unaffected males should be homozygous reference and in
## affected males homozygous alternative
.xLinkedMask <- function(vObj, pedDf, bsgenome,
use=c("everything", "complete.obs", "all.obs"),
penetrance=1) {
use <- match.arg(use)
if (class(vObj) != "VRanges" && class(vObj) != "CollapsedVCF")
stop("Argument 'vObj' should be either a 'VRanges' or a 'CollapsedVCF' object.")
stopifnot(all(colnames(pedDf) %in% c("FamilyID", "IndividualID", "FatherID", "MotherID", "Sex", "Phenotype"))) ## QC
nsamples <- nvariants <- 0
if (class(vObj) == "VRanges") {
nsamples <- nlevels(sampleNames(vObj))
nvariants <- length(vObj)
} else if (class(vObj) == "CollapsedVCF") {
nsamples <- as.integer(ncol(vObj))
nvariants <- nrow(vObj)
}
unaff_males <- pedDf[pedDf$Phenotype == 1 & pedDf$Sex == 1, , drop=FALSE]
carrier_females <- pedDf[pedDf$Phenotype == 1 & pedDf$Sex == 2, , drop=FALSE]
aff_males <- pedDf[pedDf$Phenotype == 2 & pedDf$Sex == 1, , drop=FALSE]
if (nrow(aff_males) < 1)
stop("The 'X-linked' analysis requires at least one affected male.")
## restrict upfront variants to those in autosomal chromosomes
## we subset to the first element of the value returned by seqlevelsStyle()
## to deal with cases in which only a subset of chromosomes is contained in
## the input VCF (typically for teaching/example/illustration purposes) which
## matches more than one chromosome style. we also assume that the X chromosome
## is the first sex chromosome returned by extractSeqlevelsByGroup(group="sex")
snames <- as.character(seqnames(vObj))
XchromosomeMask <- snames %in% extractSeqlevelsByGroup(organism(bsgenome),
seqlevelsStyle(vObj)[1],
group="sex")[1]
## build logical mask for variants that segregate as an X-linked trait
xlinkedMask <- vector(mode="logical", length=nvariants) ## assume defaults values are FALSE
if (!any(XchromosomeMask))
return(xlinkedMask)
## fetch genotypes
gt <- NULL
if (class(vObj) == "VRanges")
gt <- do.call("cbind", split(vObj$GT[XchromosomeMask], sampleNames(vObj)))
else if (class(vObj) == "CollapsedVCF")
gt <- geno(vObj)$GT[XchromosomeMask, , drop=FALSE]
## further restrict affected and unaffected individuals to
## those who have been genotyped
gtind <- colnames(gt)
unaff_males <- unaff_males[unaff_males$IndividualID %in% gtind, , drop=FALSE]
carrier_females <- carrier_females[carrier_females$IndividualID %in% gtind, , drop=FALSE]
aff_males <- aff_males[aff_males$IndividualID %in% gtind, , drop=FALSE]
if (nrow(aff_males) == 0)
stop("No affected male individuals have genotypes.")
missingMask <- apply(gt, 1, function(x) any(x == "." | x == "./." | x == ".|."))
if (any(missingMask) && use == "all.obs")
stop("There are missing genotypes and current policy to deal with them is 'all.obs', which does not allow them.")
## build logical masks of carrier females, unaffected males and affected males
carrierFemalesMask <- unaffectedMalesMask <- rep(TRUE, nrow(gt))
if (nrow(carrier_females) > 0) {
unafffemalesgt <- gt[, carrier_females$IndividualID, drop=FALSE]
if (any(missingMask) && use == "everything")
unafffemalesgt[unafffemalesgt == "." | unafffemalesgt == "./." | unafffemalesgt == ".|."] <- NA_character_
carrierFemalesMask <- unafffemalesgt == "0/1" | unafffemalesgt == "0|1" | unafffemalesgt == "1|0"
carrierFemalesMask <- apply(carrierFemalesMask, 1, all)
rm(unafffemalesgt)
}
if (nrow(unaff_males) > 0) {
unaffmalesgt <- gt[, unaff_males$IndividualID, drop=FALSE]
if (any(missingMask) && use == "everything")
unaffmalesgt[unaffmalesgt == "." | unaffmalesgt == "./." | unaffmalesgt == ".|."] <- NA_character_
unaffectedMalesMask <- unaffmalesgt == "0/0" | unaffmalesgt == "0|0"
unaffectedMalesMask <- apply(unaffectedMalesMask, 1, all)
rm(unaffmalesgt)
}
affmalesgt <- gt[, aff_males$IndividualID, drop=FALSE]
if (any(missingMask) && use == "everything")
affmalesgt[affmalesgt == "." | affmalesgt == "./." | affmalesgt == ".|."] <- NA_character_
affectedMalesMask <- affmalesgt == "1/1" | affmalesgt == "1|1"
affectedMalesMask <- apply(affectedMalesMask, 1, all)
rm(affmalesgt)
cuaMask <- carrierFemalesMask & unaffectedMalesMask & affectedMalesMask
if (any(missingMask) && use == "complete.obs")
cuaMask <- cuaMask & !missingMask
## variants ultimately set to NA are discarded (should this be tuned by an argument?)
cuaMask[is.na(cuaMask)] <- FALSE
if (class(vObj) == "VRanges") {
nxchrom <- sum(XchromosomeMask)
idx <- split(1:nxchrom, sampleNames(vObj[XchromosomeMask]))
mask <- vector(mode="logical", length(nxchrom))
mask[unlist(idx, use.names=FALSE)] <- rep(cuaMask, times=nsamples)
xlinkedMask[XchromosomeMask] <- mask
} else if (class(vObj) == "CollapsedVCF")
xlinkedMask[XchromosomeMask] <- cuaMask
else
warning(paste(sprintf("object 'vObj' has class %s, unknown to this function.",
class(vObj)),
"As a consequence, no variants are selected as X-linked."))
xlinkedMask
}
.xLinkedFilter <- function(x) {
if (is.null(param(x)$pedFilename))
stop("Please specify a PED file name in the 'VariantFiltering' parameter object.")
pedDf <- .readPEDfile(param(x)$pedFilename)
.xLinkedMask(vObj=allVariants(x, groupBy="nothing"),
pedDf=pedDf, bsgenome=param(x)$bsgenome, use="everything")
}
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.