// left and right part should be long enough to embed PWM (30 characters is enough for this implementation,
// but may be in latter implementations we'll use more information so it's better to keep, say 50 nucleotides from each side where possible).
// Another way is to construct object from string in this way:
List<SequenceWithSNP> snpCollection = new ArrayList<SequenceWithSNP>();
snpCollection.add(SequenceWithSNP.fromString("AAGGTCAATACTCAACATCATAAAAACAGACAAAAGTATAAAACTTACAG[C/G]GTCTTACAAAAAGGATGATCCAGTAATATGCTGCTTACAAGAAACCCACC"));
snpCollection.add(new SequenceWithSNP("AGGGAAACAAAAATTGTTCGGAAAGGAGAACTAAGATGTATGAATGTTTC",
new char[]{'G','T'},
"TTTTTAAGTGAAAAGTGTATAGTTCAGAGTGTAATATTTATTACCAGTAT"));
//////////////////////////////////////////////////////////////////////////////////////////////////