Nothing
.sffValidity <- function(object) TRUE
setGeneric(".sffValidity")
## Classes
setClass("SffHeader", contains=c(),
representation=representation(
header="list"),
prototype=prototype(
header=list())
)
setClass("SffReads", contains="SffHeader",
representation = representation(
sread="DNAStringSet",
qualityIR="IRanges",
adapterIR="IRanges",
customIR="IRanges",
clipMode="character"),
prototype=prototype(
sread=DNAStringSet(character(0)),
qualityIR=IRanges(),
adapterIR=IRanges(),
customIR=IRanges(),
clipMode="Full"),
validity=.sffValidity
)
setClass("SffReadsQ", contains="SffReads",
representation=representation(
quality="QualityScore"),
prototype=prototype(
quality=NumericQuality()),
validity=.sffValidity
)
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.