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.

pirms 4 gadiem
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. }