diff --git a/hmftools.wdl b/hmftools.wdl
index c852b520c5300e1374880963760cbdcc71dc4e15..c1a824c65e7abe6cea52794fc3595f7e555f2902 100644
--- a/hmftools.wdl
+++ b/hmftools.wdl
@@ -632,7 +632,7 @@ task LinxVisualisations {
 
         String memory = "9G"
         String javaXmx = "8G"
-        Int timeMinutes = 10
+        Int timeMinutes = 60
         String dockerImage = "quay.io/biocontainers/hmftools-linx:1.18--hdfd78af_0"
     }
 
@@ -647,12 +647,13 @@ task LinxVisualisations {
         -circos /usr/local/bin/circos \
         -vis_file_dir ~{sub(linxOutput[0], basename(linxOutput[0]), "")} \
         -data_out ~{outputDir}/circos \
-        -plot_out ~{outputDir}/plot \
+        -plot_out ~{outputDir}/plots \
         ~{if plotReportable then "-plot_reportable" else ""}
     }
 
     output {
-
+        Array[File] circos = glob("~{outputDir}/circos/*")
+        Array[File] plots = glob("~{outputDir}/plots/*"
     }
 
     runtime {