Skip to content
Snippets Groups Projects
Commit da93300a authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

bugfixes'

parent 0a01070f
No related branches found
No related tags found
2 merge requests!9Changes for virus assembly pipeline,!10Extra tasks required for assembly.
......@@ -81,7 +81,7 @@ task mem {
${referenceFile} ${read1} ${read2}
}
output {
File samFile = if defined(outputFile) then outputFile else stdout()
File samFile = if defined(outputFile) then select_first([outputFile]) else stdout()
}
runtime {
cpu: select_first([threads])
......
......@@ -63,7 +63,7 @@ task spades {
${"--phred-offset " + phredOffset }
}
output {
Array[File] correctedReads = glob_wildcard(outputDir + "/corrected/*.fastq*")
Array[File] correctedReads = glob(outputDir + "/corrected/*.fastq*")
File scaffolds = outputDir + "/scaffolds.fasta"
File contigs = outputDir + "/contigs.fasta"
File assemblyGraphGfa = outputDir + "/assembly_graph.gfa"
......
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