Skip to content
Snippets Groups Projects

Add multiqc

Merged Ruben Vorderman requested to merge BIOWDL-135 into develop

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Ruben Vorderman
  • Ruben Vorderman
  • 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} \
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • 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} \
  • Ruben Vorderman
  • 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} \
  • Ruben Vorderman
  • 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} \
    • Multiqc parses this in a complex way. If it ends in html, html is cut off. If it doesn't nothing is cut off. This makes output file name unstable and compensation for that is needed.

  • Ruben Vorderman
  • Ruben Vorderman
  • 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} \
  • Ruben Vorderman
  • Please register or sign in to reply
    Loading