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.

28 line
593B

  1. task fastq_ncm {
  2. File fastq_smp
  3. String out_id
  4. String subsampling_rate
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. set -o pipefail
  10. set -e
  11. nt=$(nproc)
  12. python /NGSCheckMate/ncm_fastq.py -l ${fastq_smp} -O ${out_id} -N ChIP_batch -p $nt -pt /NGSCheckMate/SNP/SNP.pt
  13. #-s ${subsampling_rate}
  14. tar cvf ${out_id}.tar ${out_id}
  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 result="${out_id}.tar"
  24. }
  25. }