📄 affinegap5_1.java
字号:
/**
* SimMetrics - SimMetrics is a java library of Similarity or Distance
* Metrics, e.g. Levenshtein Distance, that provide float based similarity
* measures between String Data. All metrics return consistant measures
* rather than unbounded similarity scores.
*
* Copyright (C) 2005 Sam Chapman - Open Source Release v1.1
*
* Please Feel free to contact me about this library, I would appreciate
* knowing quickly what you wish to use it for and any criticisms/comments
* upon the SimMetric library.
*
* email: s.chapman@dcs.shef.ac.uk
* www: http://www.dcs.shef.ac.uk/~sam/
* www: http://www.dcs.shef.ac.uk/~sam/stringmetrics.html
*
* address: Sam Chapman,
* Department of Computer Science,
* University of Sheffield,
* Sheffield,
* S. Yorks,
* S1 4DP
* United Kingdom,
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package uk.ac.shef.wit.simmetrics.similaritymetrics.costfunctions;
import uk.ac.shef.wit.simmetrics.similaritymetrics.costfunctions.AbstractAffineGapCost;
import java.io.Serializable;
/**
* Package: costfunctions
* Description: AffineGap5_1 implements a affine gap cost function.
* Date: 30-Mar-2004
* Time: 10:00:20
* @author Sam Chapman <a href="http://www.dcs.shef.ac.uk/~sam/">Website</a>, <a href="mailto:sam@dcs.shef.ac.uk">Email</a>.
* @version 1.1
*/
public final class AffineGap5_1 extends AbstractAffineGapCost implements Serializable {
/**
* returns the name of the cost function.
*
* @return the name of the cost function
*/
public final String getShortDescriptionString() {
return "AffineGap5_1";
}
/**
* get cost between characters.
*
* @param stringToGap - the string to get the cost of a gap
* @param stringIndexStartGap - the index within the string to test a start gap from
* @param stringIndexEndGap - the index within the string to test a end gap to
* @return the cost of a Gap G
*/
public final float getCost(final String stringToGap, final int stringIndexStartGap, final int stringIndexEndGap) {
if (stringIndexStartGap >= stringIndexEndGap) {
return 0.0f;
} else {
return 5.0f + ((stringIndexEndGap - 1) - stringIndexStartGap);
}
}
/**
* returns the maximum possible cost.
*
* @return the maximum possible cost
*/
public final float getMaxCost() {
return 5.0f;
}
/**
* returns the minimum possible cost.
*
* @return the minimum possible cost
*/
public final float getMinCost() {
return 0.0f;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -