prepare junction bed and gtf with novel transcripts for PGA input
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

stringtie.wdl 448B

4 år sedan
1234567891011121314151617181920212223
  1. task stringtie {
  2. File bam
  3. File anno_gtf
  4. String docker
  5. String sample_id
  6. String cluster
  7. command <<<
  8. nt=$(nproc)
  9. /opt/conda/bin/stringtie -p $nt -G ${anno_gtf} -o ${sample_id}.gtf -l CUFF ${bam}
  10. >>>
  11. runtime {
  12. docker: docker
  13. cluster: cluster
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd 150 /cromwell_root/"
  16. }
  17. output {
  18. File gtf = "${sample_id}.gtf"
  19. }
  20. }