* You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
*/
package jalview.analysis;
-
import java.util.*;
import java.awt.*;
}
/**
- * DOCUMENT ME!
- *
- * @param s1
- * DOCUMENT ME!
- * @param string1
- * - string to align for sequence1
- * @param s2
- * sequence 2
- * @param string2
- * - string to align for sequence2
+ * Construct score matrix for sequences with standard DNA or PEPTIDE matrix
+ * @param s1 - sequence 1
+ * @param string1 - string to use for s1
+ * @param s2 - sequence 2
+ * @param string2 - string to use for s2
* @param type
* DNA or PEPTIDE
*/
SeqInit(string1, string2);
}
+ /**
+ * Construct score matrix for sequences with custom substitution matrix
+ * @param s1 - sequence 1
+ * @param string1 - string to use for s1
+ * @param s2 - sequence 2
+ * @param string2 - string to use for s2
+ * @param scoreMatrix - substitution matrix to use for alignment
+ */
public void SeqInit(SequenceI s1, String string1, SequenceI s2,
String string2, ScoreMatrix scoreMatrix)
{
* construct score matrix for string1 and string2 (after removing any existing
* gaps
*
- * @param string1
+ * @param string1
* @param string2
*/
private void SeqInit(String string1, String string2)