Skip to content

Commit 8a1dffe

Browse files
committed
Improve mGAP video dialogs
1 parent 687342f commit 8a1dffe

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

SequenceAnalysis/pipeline_code/sequence_tools_install.sh

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -510,17 +510,19 @@ then
510510
rm -Rf bcftools*
511511
rm -Rf $LKTOOLS_DIR/bcftools
512512

513-
wget $WGET_OPTS https://github.com/samtools/bcftools/releases/download/1.16/bcftools-1.16.tar.bz2
514-
bunzip2 bcftools-1.16.tar.bz2
515-
tar -xf bcftools-1.16.tar
516-
echo "Compressing TAR"
517-
bzip2 bcftools-1.16.tar
518-
chmod 755 bcftools-1.16
519-
cd bcftools-1.16
520-
./configure
513+
wget $WGET_OPTS https://github.com/samtools/bcftools/releases/download/1.18/bcftools-1.18.tar.bz2
514+
tar xjvf bcftools-1.18.tar.bz2
515+
bzip2 bcftools-1.18.tar
516+
chmod 755 bcftools-1.18
517+
cd bcftools-1.18
518+
rm -f plugins/liftover.c
519+
wget $WGET_OPTS -P plugins https://raw.githubusercontent.com/freeseek/score/master/liftover.c
520+
521+
./configure CFLAGS="-g -Wall -O2 -std=c99"
521522
make
522523

523524
install ./bcftools $LKTOOLS_DIR
525+
install ./plugins/liftover.so $LKTOOLS_DIR
524526
else
525527
echo "Already installed"
526528
fi

0 commit comments

Comments
 (0)