Thanks for your response. I have compressed and indexed the vcf file. A few first lines of the source.vcf.gz appear as below:
gzip -cd source.vcf.gz | head -60 | tail -4
#CHROM POS ID REF ALT QUAL FILTER INFO
1 10019 rs775809821 TA T . . RS=775809821;RSPOS=10020;dbSNPBuildID=144;SSR=0;SAO=0;VP=0x050000020005000002000200;GENEINFO=DDX11L1:100287102;WGT=1;VC=DIV;R5;ASP
I try to retrieval above SNP from the source.cvf.gz:
tabix source.vcf.gz "chr1:10019-10019"
But it doesn't return anything. Did I make any mistake?