You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow.wdl 478B

4 years ago
1234567891011121314151617181920212223
  1. import "./tasks/mixcr.wdl" as mixcr
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File fastq1
  5. File fastq2
  6. String mixcr_docker
  7. String mixcr_cluster
  8. String disk_size
  9. call mixcr.mixcr as mixcr {
  10. input:
  11. sample_id=sample_id,
  12. fastq1=fastq1,
  13. fastq2=fastq2,
  14. docker=mixcr_docker,
  15. cluster=mixcr_cluster,
  16. disk_size=disk_size
  17. }
  18. }