Nothing
library("affxparser");
# Create a CDF structure for a chip type with 2-by-3 cells
hdr <- list(
chiptype="Empty2x3",
nrows=2, ncols=3,
nunits=0, nqcunits=0,
refseq=""
);
units <- qcUnits <- list();
# Write CDF file
pathname <- file.path(tempdir(), "Empty2x3.cdf");
str(pathname);
writeCdf(pathname, cdfheader=hdr, cdf=units, cdfqc=qcUnits, overwrite=TRUE);
# Read CDF header
hdr2 <- readCdfHeader(pathname);
str(hdr2);
# Read CDF units
units2 <- readCdfUnits(pathname);
str(units2);
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.