Nothing
setMethod(f="cleave",
signature=signature(x="character"),
definition=function(x, enzym="trypsin", missedCleavages=0,
custom=NULL, unique=TRUE) {
.cleave(x=x,
enzym=enzym,
missedCleavages=missedCleavages,
custom=custom,
unique=unique)
})
setMethod(f="cleave",
signature=signature(x="AAString"),
definition=function(x, enzym="trypsin", missedCleavages=0,
custom=NULL, unique=TRUE) {
AAStringSet(.unlist(.cleave(x=as.character(x),
enzym=enzym,
missedCleavages=missedCleavages,
custom=custom,
unique=unique)))
})
setMethod(f="cleave",
signature=signature(x="AAStringSet"),
definition=function(x, enzym="trypsin", missedCleavages=0,
custom=NULL, unique=TRUE) {
AAStringSetList(.cleave(x=as.character(x),
enzym=enzym,
missedCleavages=missedCleavages,
custom=custom,
unique=unique))
})
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.