bamdst is a lightweight tool to stat the depth coverage of target regions of bam file(s).
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
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. }