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.

25 lines
419B

  1. import "./tasks/vcfstat.wdl" as vcfstat
  2. import "./tasks/mergeNum.wdl" as mergeNum
  3. workflow {{ project_name }} {
  4. File inputSamplesFile
  5. Array[Array[File]] inputSamples = read_tsv(inputSamplesFile)
  6. scatter (sample in inputSamples) {
  7. call vcfstat.vcfstat as vcfstat {
  8. input:
  9. vcf=sample[1],
  10. sampleName=sample[0]
  11. }
  12. }
  13. call mergeNum.mergeNum as mergeNum {
  14. input:
  15. vcfnumber=vcfstat.vcfnumber
  16. }
  17. }