Skip to content
Snippets Groups Projects
Commit b8b1779f authored by Wai Yi Leung's avatar Wai Yi Leung
Browse files

Set required argument to Input

parent f5ffdbb4
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ package nl.lumc.sasc.biopet.extensions.picard
import java.io.File
import nl.lumc.sasc.biopet.utils.config.Configurable
import org.broadinstitute.gatk.utils.commandline.{ Argument, Input, Output }
import org.broadinstitute.gatk.utils.commandline.{Input, Output}
/** Extension for picard SortVcf */
class SortVcf(val root: Configurable) extends Picard {
......@@ -30,7 +30,7 @@ class SortVcf(val root: Configurable) extends Picard {
@Output(doc = "Output VCF to be written.", required = true)
var output: File = _
@Argument(doc = "Sequence dictionary to use", required = false)
@Input(doc = "Sequence dictionary to use", required = true)
var sequenceDictionary: File = _
/** Returns command to execute */
......
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