You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.wdl 308B

4 jaren geleden
4 jaren geleden
1234567891011121314151617181920
  1. task index {
  2. File bam
  3. String docker
  4. String cluster_config
  5. String disk_size
  6. command <<<
  7. samtools index ${bam}
  8. >>>
  9. runtime {
  10. docker:docker
  11. cluster: cluster_config
  12. systemDisk: "cloud_ssd 40"
  13. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  14. }
  15. output {
  16. File bai = "${bam}.bai"
  17. }
  18. }