Skip to content
Snippets Groups Projects
Commit 2e4f73df authored by ffinfo's avatar ffinfo
Browse files

Switch to structs

parent 7ca8e052
No related branches found
No related tags found
1 merge request!61Switch to structs
......@@ -6,8 +6,7 @@ task Generate {
input {
String? preCommand
File? toolJar
File fastqR1
File? fastqR2
FastqPair fastq
String outputFile
String sample
String library
......@@ -26,8 +25,8 @@ task Generate {
~{preCommand}
mkdir -p $(dirname ~{outputFile})
~{toolCommand} Generate \
--fastqR1 ~{fastqR1} \
~{"--fastqR2 " + fastqR2} \
--fastqR1 ~{fastq.R1} \
~{"--fastqR2 " + fastq.R2} \
--output ~{outputFile} \
~{"--sample " + sample} \
~{"--library " + library } \
......
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