The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

23 linhas
431B

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