Skip to content
Snippets Groups Projects

add SomaticSeq

Merged Ruben Vorderman requested to merge BIOWDL-78 into develop

Created by: DavyCats

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
  • 65 }
    66
    67 output {
    68 File indels = outputDir + if defined(classifierIndel)
    69 then "/SSeq.Classified.sINDEL.vcf"
    70 else "/Consensus.sINDEL.vcf"
    71 File snvs = outputDir + if defined(classifierSNV)
    72 then "/SSeq.Classified.sSNV.vcf"
    73 else "/Consensus.sSNV.vcf"
    74 File ensembleIndels = outputDir + "/Ensemble.sINDEL.tsv"
    75 File ensembleSNV = outputDir + "/Ensemble.sSNV.tsv"
    76 }
    77
    78 runtime {
    79 cpu: threads
    80 docker: "lethalfang/somaticseq:3.1.0"
    • We want to hardcode the version here? For now this is ok. But we need to discuss this at some point in the biopet meeting.

      lethalfang? Is this the canonical owner of the somaticseq package?!

  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • Ruben Vorderman
  • 85 86 }
    86 87
    87 88 command {
    89 set -e -o pipefail
    90 ~{preCommand}
  • Ruben Vorderman
  • 65 }
    66
    67 output {
    68 File indels = outputDir + if defined(classifierIndel)
    69 then "/SSeq.Classified.sINDEL.vcf"
    70 else "/Consensus.sINDEL.vcf"
    71 File snvs = outputDir + if defined(classifierSNV)
    72 then "/SSeq.Classified.sSNV.vcf"
    73 else "/Consensus.sSNV.vcf"
    74 File ensembleIndels = outputDir + "/Ensemble.sINDEL.tsv"
    75 File ensembleSNV = outputDir + "/Ensemble.sSNV.tsv"
    76 }
    77
    78 runtime {
    79 cpu: threads
    80 docker: "lethalfang/somaticseq:3.1.0"
    Please register or sign in to reply
    Loading