Nothing
## A feature fingerprint will be a vector of feature objects
setClass("featvec",
representation(features="list",
provider="character",
name="character",
misc="list"),
validity=function(object) {
## features must be a list of feature objects
klasses <- unique(sapply(object@features, class))
if (length(klasses) != 1 || klasses != 'feature')
return("Must supply a list of 'feature' objects")
iss4s <- sapply(object@features, isS4)
if (!all(iss4s))
return("Must supply a list of 'feature' objects")
return(TRUE)
},
prototype(features=list(),
provider="",
name="",
misc=list()))
setMethod('show', 'featvec',
function(object) {
cat("Feature fingerprint\n")
cat(" name = ", object@name, "\n")
cat(" source = ", object@provider, "\n")
cat(" features = ", paste(sapply(object@features, as.character), collapse=' '), "\n")
})
setMethod('as.character', 'featvec', function(x) {
return(paste(sapply(x@features, as.character), collapse=' '))
})
setMethod("length", "featvec", function(x) {
length(x@features)
})
## featvec.to.binaryfp <- function(fps, bit.length = 256) {
## if (!all(sapply(fps, class) == 'featvec'))
## stop("Must supply a list of feature vector fingerprints")
## ## get all the features
## features <- sort(unique(unlist(lapply(fps, as.numeric))))
## nbit <- length(features)
## if (nbit %% 2 == 1) nbit <- nbit + 1
## ## based on the entire feature set, convert original fps to binary fps
## fps <- lapply(fps, function(x) {
## bitpos <- match(as.numeric(x), features)
## new("fingerprint", nbit=nbit, folded=FALSE, provider=x@provider,name=x@name, bits=bitpos)
## })
## return(fps)
## }
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.