For RNA-seq data, from bams to AS Information files.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

24 lines
439B

  1. import "./tasks/spladder.wdl" as spladder
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File bam_file
  5. File reference_gtf_file
  6. String docker
  7. String cluster
  8. String disk_size
  9. call rmats.rmats as rmats {
  10. input:
  11. bam_file = bam_file,
  12. reference_gtf_file = reference_gtf_file,
  13. sample_id = sample_id,
  14. bam_file = bam_file,
  15. docker = rmats_docker,
  16. cluster = rmats_cluster,
  17. disk_size = disk_size
  18. }
  19. }