#' Spatial allelic expression counts for fly cross embryo
#'
#' Allelic expression counts of spatial slices of a fly embryo from
#' Combs & Fraser (2018), a D melanogaster x D simulans reciprocal cross
#'
#' @references
#'
#' Combs PA, Fraser HB (2018) Spatially varying cis-regulatory divergence
#' in Drosophila embryos elucidates cis-regulatory logic.
#' PLOS Genetics 14(11): e1007631.
#'
#' @examples
#'
#' suppressPackageStartupMessages(library(SummarizedExperiment))
#' se <- spatialDmelxsim()
#' se
#'
#' @importFrom utils read.csv
#' @importFrom ExperimentHub createHubAccessors
#' @importFrom SummarizedExperiment SummarizedExperiment
#' @docType package
#' @name spatialDmelxsim
NULL
.onLoad <- function(libname, pkgname) {
fl <- system.file("extdata", "metadata.csv", package=pkgname)
titles <- read.csv(fl, stringsAsFactors=FALSE)$Title
ExperimentHub::createHubAccessors(pkgname, titles)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.