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

Remove some old code

parent 6455b8d4
No related branches found
No related tags found
No related merge requests found
......@@ -48,20 +48,3 @@ class PrefixFastq(val root: Configurable) extends ToolCommandFunction {
required("-o", outputFastq) +
optional("-s", prefixSeq)
}
object PrefixFastq {
/**
* Create a PrefixFastq class object with a sufix ".prefix.fastq" in the output folder
*
* @param root parent object
* @param input input file
* @param outputDir outputFolder
* @return PrefixFastq class object
*/
def apply(root: Configurable, input: File, outputDir: String): PrefixFastq = {
val prefixFastq = new PrefixFastq(root)
prefixFastq.inputFastq = input
prefixFastq.outputFastq = new File(outputDir, input.getName + ".prefix.fastq")
prefixFastq
}
}
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