您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
571B

  1. task bed_annotation {
  2. File merged_vcf_gz
  3. File merged_vcf_idx
  4. File repeat_bed
  5. String sample
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. rtg vcfannotate --bed-info=${repeat_bed} -i ${merged_vcf_gz} -o ${sample}.mendelian.merged.repeatAnno.vcf.gz
  11. gunzip ${sample}.mendelian.merged.repeatAnno.vcf.gz
  12. >>>
  13. runtime {
  14. docker:docker
  15. cluster: cluster_config
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File repeat_annotated_vcf = "${sample}.mendelian.merged.repeatAnno.vcf"
  21. }
  22. }