Hi Amjad,
Yes, the baseline file is usually the truth file. Exactly what you should be using for the baseline will depend on what you are trying to do. If this is a well-studied sample like NA12878, then (germline) truth files are available from GIAB:
If you are wanting to compare the difference in variants between your normal and tumor samples. In that case, it will depend on whether your calledvariants.vcf.gz has columns for both normal and tumor samples. In this case, both samples will be in the same VCF. So you might want something like:
... -b calledvariants.vcf.gz -c calledvariants.vcf.gz --sample NORMAL,TUMOR
(where NORMAL and TUMOR are whatever the corresponding samples are named in your VCF file).
If your caller has produced triploid (or higher calls), then you will likely also want --squash-ploidy.
Finally, if you are wanting to compare with a population database of variants (e.g. COSMIC), then you should use that as your baseline file and specify --sample ALT,TUMOR to allow matching against any of the alleles in the reference.
Sean.