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
This commit is contained in:
chartl 2010-12-17 05:36:31 +00:00
parent fd1d817d45
commit 0d18bd1011
1 changed files with 1 additions and 3 deletions

View File

@ -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(_) )
}
}
}