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.

workflow.wdl 418B

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