* The alignment column on which the first profile is based.
* @param end
* The alignment column on which the last profile is based.
- * @param saveFullProfile
- * if true, all residue counts are saved (enables profile logo)
* @param removeBelowBackground
* if true, symbols with a match emission probability less than
* background frequency are ignored
* @return
*/
public static ProfilesI calculateHMMProfiles(final HiddenMarkovModel hmm,
- int width, int start, int end, boolean saveFullProfile,
- boolean removeBelowBackground, boolean infoLetterHeight)
+ int width, int start, int end, boolean removeBelowBackground,
+ boolean infoLetterHeight)
{
ProfileI[] result = new ProfileI[width];
char[] symbols = hmm.getSymbols().toCharArray();
int gapCount = counts.getGapCount();
ProfileI profile = new Profile(symbolCount, gapCount, maxCount,
maxResidue);
-
- if (saveFullProfile)
- {
- profile.setCounts(counts);
- }
+ profile.setCounts(counts);
result[column] = profile;
}
// hmm consensus sequence is shorter than the alignment
break;
}
- ProfileI profile = profiles.get(column);
- if (profile == null)
- {
- /*
- * happens if sequences calculated over were
- * shorter than alignment width
- */
- information.annotations[column] = null;
- return 0f;
- }
float value = hmm.getInformationContent(column);
boolean isNaN = Float.isNaN(value);
ProfilesI info = AAFrequency.calculateHMMProfiles(hmm,
(endRes + 1) - startRes, startRes, endRes + 1,
- showHMMSequenceLogo, hmmIgnoreBelowBackground,
- hmmUseInfoLetterHeight);
+ hmmIgnoreBelowBackground, hmmUseInfoLetterHeight);
_updateInformationRow(info);
upd = true;
}
{
HiddenMarkovModel hmm = seq.getHMM();
ProfilesI hmmProfiles = AAFrequency.calculateHMMProfiles(hmm, width,
- 0, width, true, alignViewport.isIgnoreBelowBackground(),
+ 0, width, alignViewport.isIgnoreBelowBackground(),
alignViewport.isInfoLetterHeight());
alignViewport.setHmmProfiles(hmmProfiles);
}
{
HiddenMarkovModel hmm = seq.getHMM();
ProfilesI hmmProfiles = AAFrequency.calculateHMMProfiles(hmm, width,
- 0, width, true, group.isIgnoreBelowBackground(),
+ 0, width, group.isIgnoreBelowBackground(),
group.isUseInfoLetterHeight());
group.setHmmProfiles(hmmProfiles);
}