bcftools-merge is used to merge VCF files into a singe VCF.
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.

17 line
301B

  1. import "./tasks/bcftools.wdl" as bcftools
  2. workflow {{ project_name }} {
  3. String bcftools_docker
  4. String disk_size
  5. String cluster_config
  6. Array[File] vcf
  7. call bcftools.bcftools as bcftools {
  8. input:
  9. vcf=vcf,
  10. docker=bcftools_docker,
  11. disk_size=disk_size,
  12. cluster_config=cluster_config
  13. }
  14. }