The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

23 rindas
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. }