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

Make input and output required

parent 3260f742
No related branches found
No related tags found
No related merge requests found
......@@ -14,10 +14,10 @@ class WigToBigWig(val root: Configurable) extends BiopetCommandLineFunction {
@Input(doc = "Input wig file")
var inputWigFile: File = _
@Input(doc = "Input chrom sizes file")
@Input(doc = "Input chrom sizes file", required = true)
var inputChromSizesFile: File = _
@Output(doc = "Output BigWig file")
@Output(doc = "Output BigWig file", required = true)
var outputBigWig: File = _
executable = config("exe", default = "wigToBigWig")
......
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