RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
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 cufflinks {
- File gtf
- File bam
- String baseout
- String docker
- String cluster
-
- command {
- cufflinks -p 8 -o ${baseout} ${bam}
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd 200 /cromwell_root/"
- }
-
- output {
- File isoforms_fpkm = "${baseout}/isoforms.fpkm_tracking"
- File genes_fpkm = "${baseout}/genes.fpkm_tracking"
- File skipped_gtf = "${baseout}/skipped.gtf"
- File transcripts_gtf = "${baseout}/transcripts.gtf"
- }
- }
|