Skip to content
Snippets Groups Projects
Commit eac6893d authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added constructor

parent 4cf5a85d
No related branches found
No related tags found
No related merge requests found
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package nl.lumc.sasc.biopet.pipelines.flexiprep package nl.lumc.sasc.biopet.pipelines.flexiprep
import java.io.File
import nl.lumc.sasc.biopet.core.config.Configurable import nl.lumc.sasc.biopet.core.config.Configurable
import nl.lumc.sasc.biopet.extensions.Ln import nl.lumc.sasc.biopet.extensions.Ln
...@@ -36,3 +31,13 @@ class SeqtkSeq(root: Configurable) extends nl.lumc.sasc.biopet.extensions.seqtk. ...@@ -36,3 +31,13 @@ class SeqtkSeq(root: Configurable) extends nl.lumc.sasc.biopet.extensions.seqtk.
} }
} }
} }
object SeqtkSeq {
def apply(root: Configurable, input:File, output:File, fastqc:Fastqc = null): SeqtkSeq = {
val seqtkSeq = new SeqtkSeq(root)
seqtkSeq.input = input
seqtkSeq.output = output
seqtkSeq.fastqc = fastqc
return seqtkSeq
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment