Skip to content

Commit

Permalink
Bug, crash if deqms is not run because then there will not be png files
Browse files Browse the repository at this point in the history
  • Loading branch information
glormph committed Oct 25, 2024
1 parent 227d289 commit 44dc69f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflows/reporting.nf
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ process featQC {
${parse_normfactors ? '--normtable allnormfacs' : ''}
mkdir ${htmldir}
mv *.html *.png ${htmldir}/
mv *.html ${htmldir}/
if [ -e *.png ] ; then mv *.png ${htmldir}/; fi
${parse_normfactors ? "mv allnormfacs ${htmldir}" : ''}
"""
}
Expand Down

0 comments on commit 44dc69f

Please sign in to comment.