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.

29 satır
501B

  1. task reference_dict {
  2. File ref_dir
  3. String fasta
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. set -o pipefail
  9. set -e
  10. java -jar /usr/picard/picard.jar CreateSequenceDictionary \
  11. R=${ref_dir}/${fasta} \
  12. O=GRCh38.d1.vd1.dict
  13. >>>
  14. runtime {
  15. docker:docker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File reference_bed_dict= "GRCh38.d1.vd1.dict"
  22. }
  23. }