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.

28 lines
592B

  1. task featureCounts {
  2. File bam_file
  3. File lnc_gtf_file
  4. String gtf_dir
  5. String sample_id
  6. String docker
  7. String cluster
  8. command <<<
  9. featureCounts -T 4 -t exon -g gene_id -a ${gtf_dir}/${lnc_gtf_file} -s 0 -p -o ${sample_id}.genefeaturecount.txt ${bam_file}
  10. >>>
  11. runtime {
  12. docker: docker
  13. cluster: cluster
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd 200 /cromwell_root/"
  16. }
  17. output {
  18. File out_profile = "${sample_id}.genefeaturecount.txt"
  19. File out_summary = "${sample_id}.summary"
  20. }
  21. }