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.

преди 5 години
преди 5 години
преди 5 години
преди 5 години
преди 5 години
преди 5 години
преди 5 години
12345678910111213141516171819202122232425262728
  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. call hisat2.hisat2 as hisat2 {
  10. input: idx=idx, idx_prefix=idx_prefix, read_1P=read1, read_2P=read2
  11. }
  12. call samtools.samtools as samtools {
  13. input: sam = hisat2.sam
  14. }
  15. call arcashla.arcashla as arcashla {
  16. input: bam = samtools.out_bam
  17. }
  18. }