Nothing
context("list.files")
test_that("list.files-functions", {
path <- normalizePath(system.file("exampledata", package="MALDIquantForeign"))
expect_identical(MALDIquantForeign:::.list.files(path, pattern="tiny1-c"),
normalizePath(file.path(path,
c("tiny1-centroided.mzML1.1.mzML",
"tiny1-centroided.mzXML3.0.mzXML",
"tiny1-compressed.mzML1.1.mzML",
"tiny1-compressed.mzXML3.0.mzXML"))))
expect_identical(MALDIquantForeign:::.list.files(path, pattern="tiny1-c",
excludePattern="\\.mzXML$"),
normalizePath(file.path(path,
c("tiny1-centroided.mzML1.1.mzML",
"tiny1-compressed.mzML1.1.mzML"))))
})
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.