Infer and visualize copy number from high-throughput DNA sequencing data.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

57 lines
1.3KB

  1. import "./tasks/access.wdl" as access
  2. import "./tasks/batch.wdl" as batch
  3. import "./tasks/export.wdl" as export
  4. workflow {{ project_name }} {
  5. String sample_id
  6. Array[File] tumor_bam
  7. Array[File] normal_bam
  8. File bed
  9. File faidx
  10. File fasta
  11. File? ref_flat
  12. File? reference
  13. String min_gap_size
  14. String method
  15. String segment_method
  16. String docker
  17. String cluster_config
  18. String disk_size
  19. call access.access as access {
  20. input:
  21. fasta = fasta,
  22. faidx = faidx,
  23. method = method,
  24. min_gap_size = min_gap_size,
  25. docker = docker,
  26. cluster_config = cluster_config,
  27. disk_size = disk_size
  28. }
  29. call batch.batch as batch {
  30. input:
  31. sample_id = sample_id,
  32. fasta = fasta,
  33. faidx = faidx,
  34. ref_flat = ref_flat,
  35. method = method,
  36. segment_method = segment_method,
  37. reference = reference,
  38. tumor_bam = tumor_bam,
  39. normal_bam = normal_bam,
  40. access_bed = access.access_bed,
  41. docker = docker,
  42. cluster_config = cluster_config,
  43. disk_size = disk_size
  44. }
  45. call export.export as export {
  46. input:
  47. sample_id = sample_id,
  48. results = batch.results,
  49. docker = docker,
  50. cluster_config = cluster_config,
  51. disk_size = disk_size
  52. }
  53. }