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

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314151617181920212223242526272829
  1. import "./tasks/hisat2.wdl" as hisat2
  2. import "./tasks/samtools.wdl" as samtools
  3. import "./tasks/arcashla.wdl" as arcashla
  4. workflow {{ project_name }} {
  5. File read1
  6. File read2
  7. File idx
  8. String idx_prefix
  9. File gtf
  10. call hisat2.hisat2 as hisat2 {
  11. input: idx=idx, idx_prefix=idx_prefix, read_1P=read1, read_2P=read2
  12. }
  13. call samtools.samtools as samtools {
  14. input: sam = hisat2.sam
  15. }
  16. call arcashla.arcashla as arcashla {
  17. input: bam = samtools.out_bam
  18. }
  19. }