Nothing
## takes the name of a .locs file and returns a two column matrix of coordinates
obtainLocs <- function(fileName, filePath) {
if(grepl(".bab", fileName)) {
allLocs <- BeadDataPackR::extractLocsFile(inputFile = fileName, path = filePath);
## do we want the locs from the red or green image
if(grepl("Red", fileName))
locs <- allLocs[,3:4]
else
locs <- allLocs[,1:2]
}
else {
locs <- readLocsFile(file.path(filePath, fileName));
}
return(locs)
}
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.