about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/examples/dynamic/HHMM/Motif/sample_motif_hhmm.m
blob: b5822e108f68d6c349ec7f801c6fce9196359abc (plain)
1
2
3
4
5
6
7
8
9
10
%bnet = mk_motif_hhmm('motif_pattern', 'acca', 'background', 't');
bnet = mk_motif_hhmm('motif_pattern', 'accaggggga', 'background', []);

chars = ['a', 'c', 'g', 't'];
Tmax = 100;

for seqi=1:5
  evidence = cell2num(sample_dbn(bnet, 'length', Tmax));
  chars(evidence(end,:))
end