Skip to content

Commit

Permalink
fixed some bugs in vep and ngs-bits installation
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Jun 3, 2024
1 parent a449d3f commit 3c5c19c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
11 changes: 6 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,14 @@ redis_update: redis_clean redis

## VEP
VEPPATH := $(TOOLS)
NGSBITSNAME := ensembl-vep
VEP := $(VEPPATH)/$(NGSBITSNAME)
VEPNAME := ensembl-vep
VEP := $(VEPPATH)/$(VEPNAME)
VEPVERSION := 110
VEPMINORVERSION := 0
vep:
if [ ! -d "${VEP}" ]; then \
printf ${_TEXTCOL_RED} "Installing vep ${VEPVERSION}" ; \
${TOOLS}/script/install_vep.sh -p ${VEPPATH} -n ${VEPNAME} -v ${VEPVERSION} -m ${VEPMINORVERSION} ; \
printf ${_TEXTCOL_RED} "Installing vep ${VEPVERSION}.${VEPMINORVERSION}" ; \
${TOOLS}/script/install_vep.sh -p ${VEPPATH} -v ${VEPVERSION} -m ${VEPMINORVERSION} -n ${VEPNAME} ; \
fi

vep_clean:
Expand All @@ -157,7 +158,7 @@ ngs_bits:
fi

ngs_bits_clean:
rm -rf ${VEP}
rm -rf ${NGSBITS}

ngs_bits_update: ngs_bits_clean ngs_bits

Expand Down
7 changes: 2 additions & 5 deletions tools/script/install_ngs_bits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,8 @@ fi
echo "Setting up python $version in $basedir/$foldername..."




cd $basedir
git clone --recursive https://github.com/imgag/ngs-bits.git
git clone --recursive https://github.com/imgag/ngs-bits.git $foldername
#git checkout $version && git submodule update --recursive --init ## select stable version once project is finished!
mv ngs-bits $foldername
cd $foldername
make build_3rdparty build_libs_release build_tools_release
make build_3rdparty build_libs_release build_tools_release

0 comments on commit 3c5c19c

Please sign in to comment.