For RNA-seq data, from bam/fastq to AS sites files.
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 478B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
123456789101112131415161718192021222324252627
  1. import "./tasks/rmats.wdl" as rmats
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File bam1
  5. File bam2
  6. File reference_gtf_file
  7. String CSTAT
  8. String rmats_docker
  9. String rmats_cluster
  10. String disk_size
  11. call rmats.rmats as rmats {
  12. input:
  13. bam1 = bam1,
  14. bam2 = bam2,
  15. reference_gtf_file = reference_gtf_file,
  16. sample_id = sample_id,
  17. CSTAT = CSTAT
  18. docker = rmats_docker,
  19. cluster = rmats_cluster,
  20. disk_size = disk_size
  21. }
  22. }