从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.

SamToBam.wdl 607B

il y a 6 ans
1234567891011121314151617181920212223242526272829
  1. task SamToBam {
  2. File aligned_sam
  3. String sample
  4. String PIdocker
  5. String cluster_config
  6. String disk_size
  7. String id
  8. String library
  9. String platform
  10. String machine
  11. command <<<
  12. set -o pipefail
  13. set -e
  14. java -jar /usr/bin/picard/picard.jar AddOrReplaceReadGroups I=${aligned_sam} O=${sample}.bam SO=coordinate RGID=${id} RGLB=${library} RGPL=${platform} RGPU=${machine} RGSM=${sample}
  15. >>>
  16. runtime {
  17. docker:PIdocker
  18. cluster: cluster_config
  19. systemDisk: "cloud_ssd 40"
  20. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File sorted_bam = "${sample}.bam"
  24. }
  25. }