RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- task cufflinks {
- File gtf
- File accepted_hits
- File genome_directory
- String idx_prefix
- String baseout
- String docker
-
- command {
- cufflinks ${gtf} -p 24 -o ${baseout} ${baseout}/accepted_hits.bam
-
- runtime {
- dockerTag: docker
- }
-
- 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"
- }
- }
|