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.

30 lignes
800B

  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. mkdir -p $sample_id
  12. featureCounts -T $cpu_num -t exon -g gene_id -a $gtf_dir/$lnc_gtf_file -s $strand_information -p -o $sample_id/$sample_id.genefeaturecount.txt $bam_file
  13. >>>
  14. runtime {
  15. docker: docker
  16. cluster: cluster
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd 200 /cromwell_root/"
  19. }
  20. output {
  21. File out_profile = "${sample_id}.genefeaturecount.txt"
  22. File out_summary = "${sample_id}.summary"
  23. }
  24. }