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 358B

il y a 5 ans
il y a 5 ans
il y a 4 ans
il y a 5 ans
il y a 4 ans
il y a 4 ans
il y a 5 ans
il y a 4 ans
12345678910111213141516171819202122232425
  1. import "./tasks/getBam.wdl" as getBam
  2. workflow {{ project_name }} {
  3. File bam
  4. File bam_idx
  5. String pos
  6. String sample
  7. String docker
  8. String cluster_config
  9. String disk_size
  10. call getBam.getBam as getBam {
  11. input:
  12. bam=bam,
  13. bam_idx=bam_idx,
  14. sample=sample,
  15. pos=pos,
  16. docker=docker,
  17. cluster_config=cluster_config,
  18. disk_size=disk_size
  19. }
  20. }