Skip to content

Commit d2485fc

Browse files
committed
Add placeholder for multiqc install
1 parent e4b3625 commit d2485fc

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

SequenceAnalysis/pipeline_code/extra_tools_install.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,3 +218,14 @@ then
218218
else
219219
echo "Already installed"
220220
fi
221+
222+
if [[ ! -e ${LKTOOLS_DIR}/multiqc || ! -z $FORCE_REINSTALL ]];
223+
then
224+
echo "Cleaning up previous installs"
225+
rm -Rf multiqc*
226+
rm -Rf $LKTOOLS_DIR/multiqc*
227+
228+
python3 -m pip install --user multiqc
229+
else
230+
echo "Already installed"
231+
fi

0 commit comments

Comments
 (0)