Sydney-Informatics-Hub / RNASeq-DE

GNU General Public License v3.0
1 stars 2 forks source link

read_distribution.sh remove STDERR log redirect #9

Open calizilla opened 3 months ago

calizilla commented 3 months ago

Including 2>>${logfile} causes the actual output to be sent to ${logfile} rather than intended ${out}

Propose changing this:

$HOME/.local/bin/read_distribution.py -i ${bam} -r ${bed} > ${out} 2>>${logfile}

to this:

$HOME/.local/bin/read_distribution.py -i ${bam} -r ${bed} > ${out}