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

27 行
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. }