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.

37 lignes
779B

  1. task bed_to_interval_list {
  2. File reference_bed_dict
  3. File bed
  4. File ref_dir
  5. String fasta
  6. String interval_list_name
  7. String docker
  8. String cluster_config
  9. String disk_size
  10. command <<<
  11. set -o pipefail
  12. set -e
  13. mkdir -p /cromwell_root/tmp
  14. cp ${ref_dir}/${fasta} /cromwell_root/tmp/
  15. cp ${reference_bed_dict} /cromwell_root/tmp/
  16. java -jar /usr/picard/picard.jar BedToIntervalList \
  17. I=${bed} \
  18. O=${interval_list_name}.txt \
  19. SD=/cromwell_root/tmp/GRCh38.d1.vd1.dict
  20. >>>
  21. runtime {
  22. docker:docker
  23. cluster: cluster_config
  24. systemDisk: "cloud_ssd 40"
  25. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  26. }
  27. output {
  28. File interval_list = "${interval_list_name}.txt"
  29. }
  30. }