From fastq to lncRNA profile.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

featureCounts.wdl 705B

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