bamdst is a lightweight tool to stat the depth coverage of target regions of bam file(s).
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 5 roky
123456789101112131415161718192021
  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. }