Generate a VAF file from the FASTQ file. The purpose of this app is that sometimes we have to process hundreds of files. In this case, using YaqingLiu/NGSCheckMate_parallel is not an optimal choice.
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.

hace 3 años
hace 3 años
hace 3 años
12345678910111213141516171819202122232425262728
  1. task fastq_ncm {
  2. String out_id
  3. File fq1
  4. File fq2
  5. String subsampling_rate
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. nt=$(nproc)
  13. export NCM_HOME=/opt/NGSCheckMate
  14. /opt/NGSCheckMate/ngscheckmate_fastq -1 ${fq1} -2 ${fq2} /opt/NGSCheckMate/SNP/SNP.pt -p $nt -s ${subsampling_rate} > ${out_id}.vaf
  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 vaf="${out_id}.vaf"
  24. }
  25. }