prepare junction bed and gtf with novel transcripts for PGA input
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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