diff MsDbInputStream.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/MsDbInputStream.R	Wed Apr 19 10:00:05 2017 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,63 +0,0 @@
-if ( ! exists('MsDbInputStream')) { # Do not load again if already loaded
-
-	library('methods')
-	source('msdb-common.R')
-
-	#####################
-	# CLASS DECLARATION #
-	#####################
-	
-	MsDbInputStream <- setRefClass("MsDbInputStream", fields = list(.input.fields = "ANY"))
-	
-	###############
-	# CONSTRUCTOR #
-	###############
-
-	MsDbInputStream$methods( initialize = function(input.fields = msdb.get.dft.input.fields(), ...) {
-		
-		.input.fields <<- input.fields
-
-		callSuper(...)
-	})
-
-	##########
-	# GET MZ #
-	##########
-
-	MsDbInputStream$methods( getMz = function() {
-		stop("Method getMz() not implemented in concrete class.")
-	})
-
-	##########
-	# GET RT #
-	##########
-
-	MsDbInputStream$methods( getRt = function() {
-		stop("Method getRt() not implemented in concrete class.")
-	})
-
-	###########
-	# GET ALL #
-	###########
-
-	MsDbInputStream$methods( getAll = function(but = NULL) {
-		stop("Method getUnused() not implemented in concrete class.")
-	})
-
-	###############
-	# NEXT VALUES #
-	###############
-
-	MsDbInputStream$methods( nextValues = function() {
-		stop("Method nextValues() not implemented in concrete class.")
-	})
-
-	###################
-	# HAS NEXT VALUES #
-	###################
-
-	MsDbInputStream$methods( hasNextValues = function() {
-		stop("Method hasNextValues() not implemented in concrete class.")
-	})
-
-} # end of load safe guard