From fastq to lncRNA profile.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

29 linhas
725B

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