comparison MassFiledbConn.R @ 6:b8f70d8216b3 draft

planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit b3a4e34cf9356447ae3507cc6fe2ff6a1f24afbc-dirty
author prog
date Mon, 27 Mar 2017 06:27:29 -0400
parents 45e985cd8e9e
children
comparison
equal deleted inserted replaced
5:18254e8d1b72 6:b8f70d8216b3
59 MassFiledbConn$methods( .init.db = function() { 59 MassFiledbConn$methods( .init.db = function() {
60 60
61 if (is.null(.self$.db)) { 61 if (is.null(.self$.db)) {
62 62
63 # Load database 63 # Load database
64 .db <<- read.table(.self$.file, sep = .self$.file.sep, .self$.file.quote, header = TRUE, stringsAsFactors = FALSE, row.names = NULL) 64 .db <<- read.table(.self$.file, sep = .self$.file.sep, .self$.file.quote, header = TRUE, stringsAsFactors = FALSE, row.names = NULL, comment.char = '')
65 65
66 # Save column names 66 # Save column names
67 .db.orig.colnames <<- colnames(.self$.db) 67 .db.orig.colnames <<- colnames(.self$.db)
68 } 68 }
69 }) 69 })