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.

3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
123456789101112131415161718192021222324252627282930313233
  1. import "./tasks/GVCFtyper.wdl" as GVCFtyper
  2. workflow {{ project_name }} {
  3. File gvcf_files
  4. Array[File] gvcfs = read_lines(gvcf_files)
  5. File gvcf_idx_files
  6. Array[File] gvcf_idxs = read_lines(gvcf_idx_files)
  7. String SENTIEON_INSTALL_DIR
  8. String docker
  9. String project
  10. String fasta
  11. String chromo
  12. File ref_dir
  13. String disk_size
  14. String cluster_config
  15. call GVCFtyper.GVCFtyper as GVCFtyper {
  16. input:
  17. ref_dir=ref_dir,
  18. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  19. fasta=fasta,
  20. gvcfs=gvcfs,
  21. gvcf_idxs=gvcf_idxs,
  22. chromo=chromo,
  23. project=project,
  24. docker=docker,
  25. cluster_config=cluster_config,
  26. disk_size=disk_size
  27. }
  28. }