選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

workflow.wdl 364B

1234567891011121314151617181920
  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. String sample_id
  9. call count.count as count {
  10. input:
  11. sample_id = sample_id,
  12. docker = count_docker,
  13. cluster = count_cluster,
  14. gtf = gtf,
  15. disk_size = disk_size,
  16. count_length = count_length
  17. }
  18. }