Nothing
# Compute similarity between contig and linkage group
# @useDynLib contiBAIT
# @import Rcpp
# @import BH
# @keywords internal
computeSim <- function(contigStrand, linkageStrand, minimumLibraryOverlap)
{
numCommon <- sum(!is.na(contigStrand) & !is.na(linkageStrand))
numEqual <- sum((contigStrand == 2) == (linkageStrand == 2), na.rm=TRUE)
if(numCommon < minimumLibraryOverlap) NA else numEqual / numCommon
}
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.