From fastq to lncRNA profile.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

featureCounts.wdl 725B

12345678910111213141516171819202122232425262728
  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 cpu_num = 4
  9. Int strand_information = 0
  10. command <<<
  11. 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
  12. >>>
  13. runtime {
  14. docker: docker
  15. cluster: cluster
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd 200 /cromwell_root/"
  18. }
  19. output {
  20. File out_profile = "${sample_id}.genefeaturecount.txt"
  21. File out_summary = "${sample_id}.summary"
  22. }
  23. }