Generating a VAF file from one FASTQ file parallelly. And then parallelized read the set of VAF files by vaf_ncm.py.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
424B

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