Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

32 lines
485B

  1. task Dedup {
  2. File bam
  3. String sample
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. set -o pipefail
  9. set -e
  10. /src/Bismark-0.20.1/deduplicate_bismark -p --bam ${bam}
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 500"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File Dedup_bam = "${sample}.deduplicated.bam"
  20. File Dedup_repoet = "${sample}.deduplication_report.txt"
  21. }
  22. }