diff MsDbOutputStream.R @ 6:f86fec07f392 draft default tip

planemo upload commit c397cd8a93953798d733fd62653f7098caac30ce
author prog
date Fri, 22 Feb 2019 16:04:22 -0500
parents fb9c0409d85c
children
line wrap: on
line diff
--- a/MsDbOutputStream.R	Wed Apr 19 10:00:05 2017 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-if ( ! exists('MsDbOutputStream')) { # Do not load again if already loaded
-
-	library('methods')
-	source('msdb-common.R')
-
-	#####################
-	# CLASS DECLARATION #
-	#####################
-	
-	MsDbOutputStream <- setRefClass("MsDbOutputStream", fields = list(.keep.unused = "logical", .one.line = "logical", .match.sep = "character", .multval.field.sep = "character", .first.val = "logical", .ascii = "logical", .noapostrophe = "logical", .noplusminus = "logical", .nogreek = "logical", .rtunit = 'character'))
-	
-	###############
-	# CONSTRUCTOR #
-	###############
-	
-	#' Constructor.
-	#'
-	#' @param keep.unused   Set to \code{TRUE} if you want to keep in the output, unused columns of the input.
-	#' @param one.line      Set to \code{TRUE} if you want to output only one line for each input line.
-	#' @return
-	#' @examples
-	#' stream <- MsDbOutputDataFrameStream$new(one.line = TRUE)
-	MsDbOutputStream$methods( initialize = function(keep.unused = FALSE, one.line = FALSE, match.sep = MSDB.DFT.MATCH.SEP, multval.field.sep = MSDB.DFT.OUTPUT.MULTIVAL.FIELD.SEP, first.val = FALSE, ascii = FALSE, noapostrophe = FALSE, noplusminus = FALSE, nogreek = FALSE, rtunit = MSDB.RTUNIT.SEC, ...) {
-
-		callSuper(...)
-		
-		.keep.unused <<- keep.unused
-		.one.line <<- one.line
-		.match.sep <<- match.sep
-		.multval.field.sep <<- multval.field.sep
-		.first.val <<- first.val
-		.ascii <<- ascii
-		.noapostrophe <<- noapostrophe
-		.noplusminus <<- noplusminus
-		.nogreek <<- nogreek
-		.rtunit <<- rtunit
-	})
-	
-	#################
-	# MATCHED PEAKS #
-	#################
-	
-	MsDbOutputStream$methods( matchedPeaks = function(mz, rt = NULL, unused = NULL, peaks = NULL) {
-		stop("Method matchedPeaks() not implemented in concrete class.")
-	})
-
-} # end of load safe guard