vcftools installation: vcftools/bin folder not created
1
0
Entering edit mode
7.1 years ago

I am attempting to install vcftools on my macOS Sierra (version 10.12.3). I am using the installation instructions from github as follows (from https://github.com/vcftools/vcftools):

git clone https://github.com/vcftools/vcftools.git
cd vcftools
./autogen.sh
./configure
make
sudo make install (I added sudo because otherwise I got permission denied).

Before beginning vcftools installation, I used homebrew to install the following packages: autoconf, pkg-config, automake, libtool, and zlib. zlib is keg-only so I also used homebrew to link it ('brew link --force zlib'). That way, I would not get errors when running ./autogen.sh.

Now, no errors are listed when I run every line. However, a bin folder containing the vcftools executable is never created in my vcftools folder after finishing the installation instructions. What am I doing wrong?

After running 'sudo make install' the following lines are the last ones printed. Does this have anything to do with the fact that a bin folder is not created?
make[3]: Nothing to be done for install-exec-am'. make[3]: Nothing to be done forinstall-data-am'.
make[2]: Nothing to be done for install-exec-am'. make[2]: Nothing to be done forinstall-data-am'.

I would appreciate any feedback. Thank you!

vcftools vcf installation make configure • 3.5k views
ADD COMMENT
1
Entering edit mode

If you already have Homebrew, it might be easier to just use Homebrew Science.

brew tap homebrew/science
brew install vcftools

See: https://github.com/Homebrew/homebrew-science

ADD REPLY
2
Entering edit mode
7.1 years ago

However, a bin folder containing the vcftools executable is never created

sudo make install would install it in /usr/local/bin or /usr/bin

try

which vcftools

if you want to install it in a specific directory, you would use

./configure --prefix /path/to/your/dir
ADD COMMENT
0
Entering edit mode

Thank you, I understand now! I chose to install it in my vcftools directory and I also entered 'make install' instead of 'sudo make install' like I originally did. Now there is a bin folder containing executables within my vcftools directory. Thanks again!

ADD REPLY
0
Entering edit mode

if it answers , mark my answer as answered (green tick on the left)

ADD REPLY

Login before adding your answer.

Traffic: 2660 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6