htsjdk.samtools.util.Histogram.getModeBin()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(140)

本文整理了Java中htsjdk.samtools.util.Histogram.getModeBin()方法的一些代码示例,展示了Histogram.getModeBin()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Histogram.getModeBin()方法的具体详情如下:
包路径:htsjdk.samtools.util.Histogram
类名称:Histogram
方法名:getModeBin

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();

相关文章