从RNAseq数据中call突变
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 6 gadiem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. task BQSR {
  2. String sample
  3. String SENTIEON_INSTALL_DIR
  4. String fasta
  5. File dbsnp_dir
  6. String dbsnp
  7. File dbmills_dir
  8. String db_mills
  9. File Split_bam
  10. File Split_bam_index
  11. File STref_dir
  12. String STdocker
  13. String cluster_config
  14. String disk_size
  15. command <<<
  16. set -o pipefail
  17. set -e
  18. export SENTIEON_LICENSE=192.168.0.55:8990
  19. nt=$(nproc)
  20. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -r ${STref_dir}/${fasta} -t $nt -i ${Split_bam} --algo QualCal -k ${dbsnp_dir}/${dbsnp} -k ${dbmills_dir}/${db_mills} ${sample}_recal_data.table
  21. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -r ${STref_dir}/${fasta} -t $nt -i ${Split_bam} -q ${sample}_recal_data.table --algo QualCal -k ${dbsnp_dir}/${dbsnp} -k ${dbmills_dir}/${db_mills} ${sample}_recal_data.table.post --algo ReadWriter ${sample}.sorted.deduped.recaled.bam
  22. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -t $nt --algo QualCal --plot --before ${sample}_recal_data.table --after ${sample}_recal_data.table.post ${sample}_recal_data.csv
  23. ${SENTIEON_INSTALL_DIR}/bin/sentieon plot QualCal -o ${sample}_bqsrreport.pdf ${sample}_recal_data.csv
  24. >>>
  25. runtime {
  26. dockerTag:STdocker
  27. cluster: cluster_config
  28. systemDisk: "cloud_ssd 40"
  29. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  30. }
  31. output {
  32. File recal_table = "${sample}_recal_data.table"
  33. File recal_post = "${sample}_recal_data.table.post"
  34. File recaled_bam = "${sample}.sorted.deduped.recaled.bam"
  35. File recaled_bam_index = "${sample}.sorted.deduped.recaled.bam.bai"
  36. File recal_csv = "${sample}_recal_data.csv"
  37. File bqsrreport_pdf = "${sample}_bqsrreport.pdf"
  38. }
  39. }