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.

workflow.wdl 423B

4 anos atrás
12345678910111213141516171819202122
  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. }