The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
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.

BAMReadCount.wdl 648B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
1234567891011121314151617181920212223242526272829
  1. task BAMReadCount {
  2. String sample_id
  3. File ref_dir
  4. String fa
  5. File bed
  6. File bam
  7. File bai
  8. String min_mapping_quality
  9. String min_base_quality
  10. String docker
  11. String cluster_config
  12. String disk_size
  13. command <<<
  14. bam-readcount -w 0 -q ${min_mapping_quality} -b ${min_base_quality} -f ${ref_dir}/${fa} -l ${bed} ${bam} > ${sample_id}.readcount
  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 BAMReadCount = "${sample_id}.readcount"
  24. }
  25. }