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.

19 lignes
346B

  1. import "./tasks/count.wdl" as count
  2. workflow {{ project_name }} {
  3. File gtf
  4. Int count_length
  5. String disk_size
  6. String count_docker
  7. String count_cluster
  8. call count.count as count {
  9. input:
  10. sample_id = sample_id,
  11. docker = count_docker,
  12. cluster = count_cluster,
  13. gtf = gtf,
  14. disk_size = disk_size,
  15. count_length = count_length
  16. }
  17. }