Right now, strelka will output the basecall counts from both tumor and normal samples in the VCF output, although this is currently a fair bit of work to parse out. These basecall counts are contained in the AU,CU,GU, and TU fields (full description of output format is here: https://sites.google.com/site/strelkasomaticvariantcaller/home/somatic-variant-output). I recommend just using the tier1 counts (first in the comma separated list) for the purpose of frequency estimation.
These raw basecall counts are not ideal for estimating variant frequencies because with strelka’s default settings because they will potentially include some low-quality basecalls. There’s a custom option you can provide in the strelka config file to have it only output basecalls for each sample above a certain threshold, described here:
…this will provide AU,CU,GU,TU counts which are more appropriate for estimating allele frequency.
-Chris