From 0d18bd10111317015fd76c4531d38b12ab689f11 Mon Sep 17 00:00:00 2001 From: chartl Date: Fri, 17 Dec 2010 05:36:31 +0000 Subject: [PATCH] Now that addAll() is in the superclass, no longer need this definition (which, without override, prevents the script from compiling anyway) git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4862 348d0f76-0448-11de-a6fe-93d51630548a --- scala/qscript/chartl/batchMergePipeline.q | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scala/qscript/chartl/batchMergePipeline.q b/scala/qscript/chartl/batchMergePipeline.q index 92042c873..7eb693a34 100755 --- a/scala/qscript/chartl/batchMergePipeline.q +++ b/scala/qscript/chartl/batchMergePipeline.q @@ -16,8 +16,6 @@ class batchMergePipeline extends QScript { @Argument(doc="reference file",shortName="ref") var ref: File = _ @Argument(doc="batched output",shortName="batch") var batchOut: File = _ - def addAll( cmds : List[CommandLineFunction]) : Unit = { cmds.foreach( c => add(c)) } - def script = { var vcfs : List[File] = extractFileEntries(vcfList) @@ -29,4 +27,4 @@ class batchMergePipeline extends QScript { def extractFileEntries(in: File): List[File] = { return (new XReadLines(in)).readLines.toList.map( new File(_) ) } -} \ No newline at end of file +}