bamdst is a lightweight tool to stat the depth coverage of target regions of bam file(s).
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.

21 lignes
388B

  1. import "./tasks/bamdst.wdl" as bamdst
  2. workflow {{ project_name }} {
  3. File bam
  4. File bed
  5. String sample
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. call bamdst.bamdst as bamdst {
  10. input:
  11. bam=bam,
  12. bed=bed,
  13. sample=sample,
  14. docker=docker,
  15. disk_size=disk_size,
  16. cluster_config=cluster_config
  17. }
  18. }