The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

22 lines
423B

  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File reference
  4. File bamfile
  5. String sample_id
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. Int number
  10. call BAMReadCount.BAMReadCount as BAMReadCount {
  11. input:
  12. reference = reference,
  13. bamfile = bamfile,
  14. docker = docker,
  15. disk_size = disk_size,
  16. cluster_config=cluster_config,
  17. sample_id=sample_id,
  18. number=number
  19. }
  20. }