Browse Source

update in 210223

tags/v0.1.2^0
Zhihui 4 years ago
parent
commit
a015182cc4
3 changed files with 6 additions and 6 deletions
  1. BIN
      .DS_Store
  2. +3
    -3
      tasks/qualimapBAMqc.wdl
  3. +3
    -3
      tasks/qualimapRNAseq.wdl

BIN
.DS_Store View File


+ 3
- 3
tasks/qualimapBAMqc.wdl View File

set -o pipefail set -o pipefail
set -e set -e
nt=$(nproc) nt=$(nproc)
/opt/qualimap/qualimap bamqc -bam ${bam} -outformat PDF:HTML -nt $nt -outdir ${bamname}_bamqc --java-mem-size=32G
tar -zcvf ${bamname}.zip ${bamname}_bamqc
/opt/qualimap/qualimap bamqc -bam ${bam} -outformat PDF:HTML -nt $nt -outdir ${bamname} --java-mem-size=32G
tar -zcvf ${bamname}_bamqc_qualimap.zip ${bamname}
>>> >>>


} }


output { output {
File bamqc_zip = "${bamname}.zip"
File bamqc_zip = "${bamname}_bamqc_qualimap.zip"
} }
} }

+ 3
- 3
tasks/qualimapRNAseq.wdl View File

set -o pipefail set -o pipefail
set -e set -e
nt=$(nproc) nt=$(nproc)
/opt/qualimap/qualimap rnaseq -bam ${bam} -outformat HTML -outdir ${bamname}_RNAseq -gtf ${gtf} -pe --java-mem-size=10G
tar -zcvf ${bamname}.zip ${bamname}_RNAseq
/opt/qualimap/qualimap rnaseq -bam ${bam} -outformat HTML -outdir ${bamname} -gtf ${gtf} -pe --java-mem-size=10G
tar -zcvf ${bamname}_RNAseq_qualimap.zip ${bamname}
>>> >>>


} }


output { output {
File rnaseq_zip = "${bamname}.zip"
File rnaseq_zip = "${bamname}_RNAseq_qualimap.zip"
} }
} }

Loading…
Cancel
Save