It's been a really long time since I thought about this, so I could be wrong, but I don't think there's an easy way to get what you're after. Although, I'm also not entirely certain that I'm thinking of the right thing as the HMM parameters "on" the UCA.
In general, you can't get a bunch of things out of our HMM that you might expect to because of the HMM "factorization" (see paper), where there's separate V, D, and J HMMs, which is necessary for speed, but means you can't get probabilities of full sequence paths, only of sequence paths through each region.
Anyway, this is what you can get. The parameter dir will always have HMM model files, for
instance here, that have all the emission and transition probabilities, but I don't think this is what you're after since it won't tell you anything about the UCA specifically. You can also crank up to debug 2, and it will show you most of the numbers coming out of the HMM, for instance running:
./bin/partis annotate --infname test/ref-results/test/simu.yaml --parameter-dir test/ref-results/test/parameters/simu --n-max-queries 1 --debug 2 | less -RS
will give something like:
where each block (296 21, 296 20, etc) is for a particular k_v, k_d pair (see paper), and then it shows all the probs for the seqs in each V/D/J region.
Finally, the alternative annotations described in the
annotation uncertainty section of the manual may be useful.