Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

depth.wdl 420B

il y a 4 ans
1234567891011121314151617181920212223
  1. task depth {
  2. File bam
  3. File bam_idx
  4. String sample_id
  5. String regions
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. /opt/conda/bin/samtools depth -b ${regions} ${bam} > ${sample_id}.depth
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File bam_depth = "${sample_id}.depth"
  20. }
  21. }