本文整理了Java中htsjdk.samtools.util.Histogram.getModeBin()
方法的一些代码示例,展示了Histogram.getModeBin()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Histogram.getModeBin()
方法的具体详情如下:
包路径:htsjdk.samtools.util.Histogram
类名称:Histogram
方法名:getModeBin
[英]Returns the Bin that's the mode of the distribution (i.e. the largest bin).
[中]返回作为分发模式的存储箱(即最大的存储箱)。
代码示例来源:origin: samtools/htsjdk
/** Returns id of the Bin that's the mode of the distribution (i.e. the largest bin).
* @throws UnsupportedOperationException if this histogram does not store instances of Number
*/
public double getMode() {
return getModeBin().getIdValue();
}
代码示例来源:origin: com.github.samtools/htsjdk
/** Returns id of the Bin that's the mode of the distribution (i.e. the largest bin).
* @throws UnsupportedOperationException if this histogram does not store instances of Number
*/
public double getMode() {
return getModeBin().getIdValue();
}
代码示例来源:origin: org.seqdoop/htsjdk
/** Returns id of the Bin that's the mode of the distribution (i.e. the largest bin). */
public double getMode() {
return getModeBin().getIdValue();
}
代码示例来源:origin: samtools/htsjdk
final Bin<K> modeBin = getModeBin();
final double mode = modeBin.getIdValue();
final double sizeOfModeBin = modeBin.getValue();
代码示例来源:origin: com.github.samtools/htsjdk
final Bin<K> modeBin = getModeBin();
final double mode = modeBin.getIdValue();
final double sizeOfModeBin = modeBin.getValue();
代码示例来源:origin: org.seqdoop/htsjdk
final Bin modeBin = getModeBin();
final double mode = modeBin.getIdValue();
final double sizeOfModeBin = modeBin.getValue();
内容来源于网络,如有侵权,请联系作者删除!