The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

workflow.wdl 431B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
1234567891011121314151617181920212223
  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. }