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.

4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
123456789101112131415161718192021222324
  1. task index {
  2. File bam
  3. String docker
  4. String cluster_config
  5. String disk_size
  6. String clean_bam_name = basename(bam)
  7. command <<<
  8. samtools index --help
  9. print ${clean_bam_name}
  10. samtools index ${bam} ${clean_bam_name}.bai
  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 bai = "${clean_bam_name}.bai"
  20. }
  21. }