Generating a VAF file from one FASTQ file parallelly. And then parallelized read the set of VAF files by vaf_ncm.py.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

NGScheckMates.wdl 587B

vor 6 Jahren
vor 6 Jahren
vor 6 Jahren
123456789101112131415161718192021222324252627
  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. python /opt/NGSCheckMate/ncm_fastq.py -l ${input_file} -pt /opt/NGSCheckMate/SNP/SNP.pt -O '.' -p $nt -f -nz
  12. >>>
  13. runtime {
  14. docker:docker
  15. cluster:cluster_config
  16. systemDisk:"cloud_ssd 40"
  17. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File all_txt="output_all.txt"
  21. File cor_txt="output_corr_matrix.txt"
  22. File matched_txt="output_matched.txt"
  23. File r_script="r_script.r"
  24. }
  25. }