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.

26 lignes
588B

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