Nothing
# STARRseqData: class definition for the STARRseqData class
setClass("STARRseqData",
representation=list(
sample="GRanges",
control="GRanges"),
prototype=prototype(
sample=GRanges(),
control=GRanges()),
validity=function(object){
if (length(seqinfo(sample(object))) == 0 ||
length(seqinfo(control(object))) == 0){
return("Sample and/or control does not contain any seqinfo.")
}
if (sum(seqnames(seqinfo(sample(object))) !=
seqnames(seqinfo(control(object)))) != 0){
return("Sample and control does not have the same seqinfo.")
}
return(TRUE)
}
)
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.