Add multiqc
Merge request reports
Activity
39 } 40 41 String outputDir = if defined(outDir) then select_first([outDir]) else "." 42 43 command { 44 set -e -o pipefail 45 ~{preCommand} 46 ~{if defined(outDir) then "mkdir -p " + outputDir else ""} 47 multiqc \ 48 ~{true="--force" false="" force} \ 49 ~{true="--dirs" false="" dirs} \ 50 ~{"--dirs-depth " + dirsDepth} \ 51 ~{true="--fullnames" false="" fullNames} \ 52 ~{"--title " + title} \ 53 ~{"--comment " + comment} \ 54 ~{"--filename " + fileName} \ 39 } 40 41 String outputDir = if defined(outDir) then select_first([outDir]) else "." 42 43 command { 44 set -e -o pipefail 45 ~{preCommand} 46 ~{if defined(outDir) then "mkdir -p " + outputDir else ""} 47 multiqc \ 48 ~{true="--force" false="" force} \ 49 ~{true="--dirs" false="" dirs} \ 50 ~{"--dirs-depth " + dirsDepth} \ 51 ~{true="--fullnames" false="" fullNames} \ 52 ~{"--title " + title} \ 53 ~{"--comment " + comment} \ 54 ~{"--filename " + fileName} \ 39 } 40 41 String outputDir = if defined(outDir) then select_first([outDir]) else "." 42 43 command { 44 set -e -o pipefail 45 ~{preCommand} 46 ~{if defined(outDir) then "mkdir -p " + outputDir else ""} 47 multiqc \ 48 ~{true="--force" false="" force} \ 49 ~{true="--dirs" false="" dirs} \ 50 ~{"--dirs-depth " + dirsDepth} \ 51 ~{true="--fullnames" false="" fullNames} \ 52 ~{"--title " + title} \ 53 ~{"--comment " + comment} \ 54 ~{"--filename " + fileName} \ 39 } 40 41 String outputDir = if defined(outDir) then select_first([outDir]) else "." 42 43 command { 44 set -e -o pipefail 45 ~{preCommand} 46 ~{if defined(outDir) then "mkdir -p " + outputDir else ""} 47 multiqc \ 48 ~{true="--force" false="" force} \ 49 ~{true="--dirs" false="" dirs} \ 50 ~{"--dirs-depth " + dirsDepth} \ 51 ~{true="--fullnames" false="" fullNames} \ 52 ~{"--title " + title} \ 53 ~{"--comment " + comment} \ 54 ~{"--filename " + fileName} \ 39 } 40 41 String outputDir = if defined(outDir) then select_first([outDir]) else "." 42 43 command { 44 set -e -o pipefail 45 ~{preCommand} 46 ~{if defined(outDir) then "mkdir -p " + outputDir else ""} 47 multiqc \ 48 ~{true="--force" false="" force} \ 49 ~{true="--dirs" false="" dirs} \ 50 ~{"--dirs-depth " + dirsDepth} \ 51 ~{true="--fullnames" false="" fullNames} \ 52 ~{"--title " + title} \ 53 ~{"--comment " + comment} \ 54 ~{"--filename " + fileName} \
Please register or sign in to reply