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

Moved doc to scala docs

parent 31344c21
No related branches found
No related tags found
No related merge requests found
......@@ -34,22 +34,28 @@ class FastqSync(val root: Configurable) extends ToolCommandFuntion with Summariz
def toolObject = nl.lumc.sasc.biopet.tools.FastqSync
@Input(doc = "Original FASTQ file (read 1 or 2)", shortName = "r", required = true)
/** Original FASTQ file (read 1 or 2) */
@Input(required = true)
var refFastq: File = null
/** "Input read 1 FASTQ file" */
@Input(required = true)
var inputFastq1: File = null
/** Input read 2 FASTQ file */
@Input(required = true)
var inputFastq2: File = null
@Output(doc = "Output read 1 FASTQ file", shortName = "o", required = true)
/** Output read 1 FASTQ file */
@Output(required = true)
var outputFastq1: File = null
@Output(doc = "Output read 2 FASTQ file", shortName = "p", required = true)
/** Output read 2 FASTQ file */
@Output(required = true)
var outputFastq2: File = null
@Output(doc = "Sync statistics", required = true)
/** Sync statistics */
@Output(required = true)
var outputStats: File = null
override def defaultCoreMemory = 4.0
......
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