prepare junction bed and gtf with novel transcripts for PGA input
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.
|
- task stringtie {
- File bam
- File anno_gtf
- String docker
- String sample_id
- String cluster
-
- command <<<
- nt=$(nproc)
- /opt/conda/bin/stringtie -p $nt -G ${anno_gtf} -o ${sample_id}.gtf -l CUFF ${bam}
- >>>
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd 150 /cromwell_root/"
- }
-
- output {
- File gtf = "${sample_id}.gtf"
- }
- }
|