从RNAseq数据中call突变
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

24 行
473B

  1. task indexBam {
  2. File sorted_bam
  3. String sample
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. set -o pipefail
  9. set -e
  10. /opt/conda/bin/samtools index ${sorted_bam} ${sample}_Aligned.sortedByCoord.out.bai
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File sorted_bam_index = "${sample}_Aligned.sortedByCoord.out.bai"
  20. }
  21. }