From bam to lncRNA profile.
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.

19 lines
402B

  1. import "./tasks/featureCounts.wdl" as featureCounts
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File bam_file
  5. File lnc_gtf_file
  6. String subread_docker
  7. String subread_cluster
  8. call featureCounts.featureCounts as featureCounts {
  9. input:
  10. sample_id = sample_id,
  11. bam_file = bam_file,
  12. lnc_gtf_file = lnc_gtf_file,
  13. docker = subread_docker,
  14. cluster = subread_cluster
  15. }
  16. }