Initial commit

This commit is contained in:
2016-01-13 10:23:54 +01:00
commit 9e33d6a180
44 changed files with 4080 additions and 0 deletions

18
R/emptydb.R Normal file
View File

@@ -0,0 +1,18 @@
#'@include ROBIBarcodes.R
#'@import XML
#'
NULL
#' Creates a new empty metabarcode database.
#'
#' @export
metabarcodedb = function() {
emptyfile = paste(system.file("extdata",
package="ROBIBarcodes"),
'empty.xml',
sep='/')
empty = xmlParseDoc(emptyfile)
return(empty)
}