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.

workflow.wdl 452B

il y a 4 ans
il y a 4 ans
il y a 4 ans
123456789101112131415161718192021222324252627
  1. task BAMReadCount {
  2. String sample_id
  3. File fa
  4. File fai
  5. File bed
  6. File bam
  7. File bai
  8. String docker
  9. String cluster_config
  10. String disk_size
  11. command <<<
  12. bam-readcount -f ${reference} -l ${bedfile} ${bamfile} > ${sample_id}.readcount
  13. >>>
  14. runtime {
  15. docker: docker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File BAMReadCount = "${sample_id}.readcount"
  22. }
  23. }