Hello! I am having problems with SAMtools and BCFtools. When I installed samtools, bcftools is automatically uninstalled and vice versa.
I tried these instructions:
git clone --branch=develop git://github.com/samtools/htslib.git
git clone --branch=develop git://github.com/samtools/bcftools.git
git clone --branch=develop git://github.com/samtools/samtools.git
cd bcftools; make
cd ../samtools; make
published in https://github.com/samtools/bcftools/wiki/HOWTOs#install , but the problem persist.
Would you help me?
What is the error message?
When I run the command sudo apt install bcftools the answer is (this is not an error message):
Why would you
sudo apt install bcftools
? You've just compiled the most recent version,make install prefix=something
instead.Thanks Devon it works perfectly