Explorar el Código

revised-cufflinks

master
stead99 hace 5 años
padre
commit
2b5ed0fb26
Se han modificado 3 ficheros con 23 adiciones y 26 borrados
  1. +1
    -2
      defaults
  2. +0
    -24
      tasks/cuffdiff2.wdl
  3. +22
    -0
      tasks/cufflinks.wdl

+ 1
- 2
defaults Ver fichero

@@ -6,6 +6,5 @@
"fastqc_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/fastqc:v0.11.5",
"trimmomatic_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/trimmomatic:v0.3.8",
"tophat2_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/tophat2:2.0.14",
"cuffdiff2_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/cufflinks:v2.2.1"

"cufflinks_docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/cufflinks:v2.2.1"
}

+ 0
- 24
tasks/cuffdiff2.wdl Ver fichero

@@ -1,24 +0,0 @@
task cuffdiff2 {
File gtf
File genome_directory
String idx_prefix
String baseout
String docker

command {
cuffdiff ${gtf} -p 24 -o ${baseout} --no-diff -u -L ${base},${base}_rep -b ${genome_directory}/${idx_prefix}.fa ${bam} ${bam}
}

runtime {
dockerTag: docker
}
output {
File isoforms_count = "${baseout}/isoforms.count_tracking"
File genes_count = "${baseout}/genes.count_tracking"
File cds_count = "${baseout}/cds.count_tracking"
File isoforms_fpkm = "${baseout}/isoforms.fpkm_tracking"
File genes_fpkm = "${baseout}/genes.fpkm_tracking"
File cds_fpkm = "${baseout}/cds.fpkm_tracking"
}
}

+ 22
- 0
tasks/cufflinks.wdl Ver fichero

@@ -0,0 +1,22 @@
task cufflinks {
File gtf
File accepted_hits
File genome_directory
String idx_prefix
String baseout
String docker

command {
cufflinks ${gtf} -p 24 -o ${baseout} ${accepted_hits}

runtime {
dockerTag: docker
}
output {
File isoforms_count = "${baseout}/isoforms.fpkm_tracking"
File genes_count = "${baseout}/genes.fpkm_tracking"
File skipped_gtf = "${baseout}/skipped.gtf"
File transcripts_gtf = "${baseout}/transcripts.gtf"
}
}

Cargando…
Cancelar
Guardar