From fastq 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.

27 lines
586B

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