Nothing
get_SMASH_from_samples <- function(samples){
smash_by_sample <- lapply(samples, function(s){
data.frame(SampleName = rep(s$sample_name, nrow(s$mixture)),
Marker = s$mixture$Locus,
Allele = s$mixture$Allele,
Size = s$mixture$Size,
Height = s$mixture$Height)
})
smash <- do.call(rbind, smash_by_sample)
rownames(smash) <- NULL
smash
}
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.