Generating a VAF file from one FASTQ file parallelly. And then parallelized read the set of VAF files by vaf_ncm.py.
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.

21 line
422B

  1. import "./tasks/NGScheckMates.wdl" as NGScheckMates
  2. workflow {{ project_name }} {
  3. File fastq_dir
  4. File input_file
  5. String docker
  6. String out_dir = "./"
  7. String cluster_config
  8. String disk_size
  9. call NGScheckMates.NGScheckMates as NGScheckMates {
  10. input:
  11. fastq_dir=fastq_dir,
  12. input_file=input_file,
  13. out_dir=out_dir,
  14. docker=docker,
  15. disk_size=disk_size,
  16. cluster_config=cluster_config
  17. }
  18. }