選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

37 行
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. }