Explorar el Código

更新 'tasks/featureCounts.wdl'

master
chenqingwang hace 4 años
padre
commit
6a1666291a
Se han modificado 1 ficheros con 2 adiciones y 3 borrados
  1. +2
    -3
      tasks/featureCounts.wdl

+ 2
- 3
tasks/featureCounts.wdl Ver fichero

@@ -1,7 +1,6 @@
task featureCounts {
File bam_file
File lnc_gtf_file
String gtf_dir
String sample_id
String docker
String cluster
@@ -9,7 +8,7 @@ task featureCounts {

command <<<
featureCounts -T 4 -t exon -g gene_id -a ${gtf_dir}/${lnc_gtf_file} -s 0 -p -o ${sample_id}.genefeaturecount.txt ${bam_file}
featureCounts -T 4 -t exon -g gene_id -a ${lnc_gtf_file} -s 0 -p -o ${sample_id}.genefeaturecount.txt ${bam_file}
>>>

runtime {
@@ -21,7 +20,7 @@ task featureCounts {

output {
File out_profile = "${sample_id}.genefeaturecount.txt"
File out_summary = "${sample_id}.summary"
File out_summary = "${sample_id}.genefeaturecount.txt.summary"
}
}


Cargando…
Cancelar
Guardar