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

bed_to_interval_list.wdl 750B

12345678910111213141516171819202122232425262728293031323334
  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. mkdir -p /cromwell_root/tmp
  12. cp ${ref_dir}/${fasta} /cromwell_root/tmp/
  13. cp ${reference_bed_dict} /cromwell_root/tmp/
  14. java -jar /usr/picard/picard.jar BedToIntervalList \
  15. I=${bed} \
  16. O=${interval_list_name}.txt \
  17. SD=/cromwell_root/tmp/GRCh38.d1.vd1.dict
  18. >>>
  19. runtime {
  20. docker:docker
  21. cluster: cluster_config
  22. systemDisk: "cloud_ssd 40"
  23. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  24. }
  25. output {
  26. File interval_list = "${interval_list_name}.txt"
  27. }
  28. }