Generating a VAF file from one FASTQ file parallelly. And then parallelized read the set of VAF files by vaf_ncm.py.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

33 líneas
704B

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