return pid;
}
+ /**
+ * Returns the full symbol counts for this profile
+ *
+ * @return
+ */
public ResidueCount getCounts()
{
return counts;
}
+ /**
+ * Returns the number of sequences in the profile
+ *
+ * @return
+ */
public int getHeight()
{
return height;
}
+ /**
+ * Returns the number of sequences in the profile which had a gap character
+ * (or were too short to be included in this column's profile)
+ *
+ * @return
+ */
public int getGapped()
{
return gapped;
}
+ /**
+ * Returns the highest count for any symbol(s) in the profile
+ *
+ * @return
+ */
public int getMaxCount()
{
return maxCount;
}
+ /**
+ * Returns the symbol (or concatenated symbols) which have the highest count
+ * in the profile, or an empty string if there were no symbols counted
+ *
+ * @return
+ */
public String getModalResidue()
{
return modalResidue;