From bam to lncRNA profile.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 4 roky
před 4 roky
123456789101112131415161718192021
  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 gtf_dir
  7. String subread_docker
  8. String subread_cluster
  9. call featureCounts.featureCounts as featureCounts {
  10. input:
  11. sample_id = sample_id,
  12. bam_file = bam_file,
  13. gtf_dir = gtf_dir
  14. lnc_gtf_file = lnc_gtf_file
  15. docker = subread_docker,
  16. cluster = subread_cluster
  17. }
  18. }