从RNAseq数据中call突变
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

indexBam.wdl 417B

il y a 6 ans
il y a 6 ans
il y a 6 ans
il y a 6 ans
il y a 6 ans
1234567891011121314151617181920212223
  1. task indexBam {
  2. File sorted_bam
  3. String sample
  4. String SAMdocker
  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}
  11. >>>
  12. runtime {
  13. docker:SAMdocker
  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}.bam.bai"
  20. }
  21. }