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.

30 satır
600B

  1. task NGScheckMates {
  2. File fastq_dir
  3. File input_file
  4. File out_dir
  5. String docker
  6. String out_dir = "./"
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. nt=$(nproc)
  13. python ncm_fastq.py -l ${input_file} -pt SNP/SNP.pt –O ${out_dir} -p $nt -s 0.3 -f
  14. >>>
  15. runtime {
  16. docker:docker
  17. cluster:cluster_config
  18. systemDisk:"cloud_ssd 40"
  19. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File all_txt="output_all.txt"
  23. File cor_txt="output_corr_matrix.txt"
  24. File matched_txt="output_matched.txt"
  25. File r_script="r_script.r"
  26. }
  27. }