Browse Source

fix bug

raw_bam_qc_wes
YaqingLiu 5 years ago
parent
commit
1cdf5cbcdb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      tasks/qualimap.wdl

+ 2
- 1
tasks/qualimap.wdl View File

set -o pipefail set -o pipefail
set -e set -e
nt=$(nproc) nt=$(nproc)
/opt/qualimap/qualimap bamqc -bam ${bam} -gff ${regions} -outformat PDF:HTML -nt $nt -outdir ${bamname} --java-mem-size=32G
awk 'BEGIN{OFS="\t"}{sub("\r","",$3);print $1,$2,$3,"",0,"."}' ${regions} > new.bed
/opt/qualimap/qualimap bamqc -bam ${bam} -gff new.bed -outformat PDF:HTML -nt $nt -outdir ${bamname} --java-mem-size=32G
tar -zcvf ${bamname}_qualimap.zip ${bamname} tar -zcvf ${bamname}_qualimap.zip ${bamname}
>>> >>>



Loading…
Cancel
Save