I have much VCF files of sequencing data. (one sample one VCF) And I want to merge it together.I find that vcftools can do this,
perl vcf-merge /home/chung/seqdataQC/NGS2015011B_S1.genome.vcf.gz \
/home/chung/seqdataQC/NGS2015011D_S1.genome.vcf.gz \
/home/chung/seqdataQC/NGS2015011E_S1.genome.vcf.gz \
| gzip -c > /home/chung/seqdataQC/out.vcf.gz
------------------------------------------------------------------------
but I got error as following:
Can't locate Vcf.pm in @INC (@INC contains: /usr/local/lib64/perl5/site_perl /usr/local/lib64/perl5 /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at vcf-merge line 9.
BEGIN failed--compilation aborted at vcf-merge line 9.
then I find bcftools can also do this, but I have problem installation it,
git clone [--branch=name] git://github.com/samtools/htslib.git htslib
git clone git://github.com/samtools/bcftools.git bcftools
========================================================================
Cloning into 'bcftools'...
fatal: unable to access 'https://github.com/samtools/bcftools.git/': Could not resolve proxy: proxyServer; Unknown error
Please help me solve these problem thank you
Works fine for me. Do you use a proxy server to connect to the Internet?
i have try using this git config --global http.proxy "" but did not work