Nothing
# Call alleles from peak sets
genotype.N1.fsa <- function(
x,
threshold = 0.1
)
{
# Checks
if(!is(x, "fsa")) stop("'x' must be a 'fsa' object")
# Peak table, with values
peaks <- attr(x, "peaks")
if(!is.data.frame(peaks)) stop("'x' must have been processed with peaks.fsa()")
if(!"N0" %in% colnames(peaks)) stop("'x' peak table must have a N0 optional columns")
if(!"N1" %in% colnames(peaks)) stop("'x' peak table must have a N1 optional columns")
# Loci
peaks$locus <- sub("^(.+) - (.+)$", "\\2", rownames(peaks))
peaks$locus <- factor(peaks$locus, levels=unique(peaks$locus))
peaks$allele <- sub("^(.+) - (.+)$", "\\1", rownames(peaks))
# Allele is present
attr(x, "peaks")$present <- peaks$present <- peaks$normalized - peaks$N0 >= (peaks$N1 - peaks$N0) * threshold
# Sort alleles
peaks <- peaks[ order(peaks$locus, peaks$allele) ,]
# Gather present alleles per locus
peaks[ !peaks$present , "allele" ] <- ""
# Call per locus
loci <- as.data.frame(tapply(X=peaks$allele, INDEX=peaks$locus, FUN=paste, collapse=""))
colnames(loci)[1] <- "call"
# Duplicate single-allele calls
loci[ nchar(loci$call) == 1L , "call" ] <- paste(loci[ nchar(loci$call) == 1L , "call" ], loci[ nchar(loci$call) == 1L , "call" ], sep="")
# Store in object
attr(x, "genotypes") <- loci
attr(x, "calls") <- loci$call
names(attr(x, "calls")) <- rownames(loci)
return(x)
}
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.