From bam to lncRNA profile.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow.wdl 423B

4 jaren geleden
4 jaren geleden
4 jaren geleden
4 jaren geleden
1234567891011121314151617181920
  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. gtf_dir = gtf_dir,
  13. lnc_gtf_file = lnc_gtf_file,
  14. docker = subread_docker,
  15. cluster = subread_cluster
  16. }
  17. }