Skip to content

Commit 2d3d620

Browse files
committed
Add hifiask to script
1 parent 89f4d54 commit 2d3d620

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

SequenceAnalysis/pipeline_code/extra_tools_install.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,3 +350,32 @@ then
350350
else
351351
echo "Already installed"
352352
fi
353+
354+
355+
echo ""
356+
echo ""
357+
echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
358+
echo "Install hifiasm"
359+
echo ""
360+
cd $LKSRC_DIR
361+
if [[ ! -e ${LKTOOLS_DIR}/primer3_core || ! -z $FORCE_REINSTALL ]];
362+
then
363+
echo "Cleaning up previous installs"
364+
rm -Rf $LKTOOLS_DIR/hifiasm*
365+
rm -Rf $LKTOOLS_DIR/yak*
366+
rm -Rf hifiasm*
367+
rm -Rf yak*
368+
369+
git clone https://github.com/chhylp123/hifiasm
370+
cd hifiasm
371+
make
372+
install hifiasm $LKTOOLS_DIR/
373+
cd ../
374+
375+
git clone https://github.com/lh3/yak
376+
cd yak
377+
make
378+
install yak $LKTOOLS_DIR/
379+
else
380+
echo "Already installed"
381+
fi

0 commit comments

Comments
 (0)