This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How To Run Vcftools (Simple Question)???

Hello,

After download vfctools, I did the next step:

 /my_path/vcftools_0.1.6 $ make

make[1]: Entering directory `/my_path/vcftools_0.1.6/cpp'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/my_path/vcftools_0.1.6/cpp'
make[1]: Entering directory `/my_path/vcftools_0.1.6/perl'
make[1]: Leaving directory `/my_path/vcftools_0.1.6/perl'

 my_path/vcftools_0.1.6 $ which vcftools
vcftools: Command not found.

How can I run it? What am I missing?

I will really appreciate any help

vcftools vcf

Run 'sudo make install' after your 'make' command?

I've just checked the sources: there is no "make install" in the Makefile. It just compiles the sources. ( Isn't it Aaron ? )

1 answer

Invoke bed tools with the fullpath to bedtools:

$ /your/my_path/vcftools_0.1.6/bin/vcftool

or add the path to your $PATH variable:

$ export PATH=${PATH}:/your/my_path/vcftools_0.1.6/bin
$ vcftool

I don't have the sources in front of me. I suppose the path is ".../bin/vcftools"

thanks a lot, I did run it!!!

Log in to answer this question.