Package org.broad.igv.bbfile
Class ZoomDataRecord
- java.lang.Object
-
- org.broad.igv.bbfile.ZoomDataRecord
-
public class ZoomDataRecord extends java.lang.Object
Created by IntelliJ IDEA. User: martind Date: Jan 18, 2010 Time: 2:24:44 PM To change this template use File | Settings | File Templates.
-
-
Field Summary
Fields Modifier and Type Field Description static int
RECORD_SIZE
-
Constructor Summary
Constructors Constructor Description ZoomDataRecord(int zoomLevel, int recordNumber, java.lang.String chromName, int chromId, int chromStart, int chromEnd, int validCount, float minVal, float maxVal, float sumData, float sumSquares)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBasesCovered()
int
getChromEnd()
int
getChromId()
java.lang.String
getChromName()
int
getChromStart()
float
getMaxVal()
float
getMeanVal()
float
getMinVal()
int
getRecordNumber()
float
getSumData()
float
getSumSquares()
int
getZoomLevel()
void
print()
-
-
-
Field Detail
-
RECORD_SIZE
public static final int RECORD_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getZoomLevel
public int getZoomLevel()
-
getRecordNumber
public int getRecordNumber()
-
getChromName
public java.lang.String getChromName()
-
getChromId
public int getChromId()
-
getChromStart
public int getChromStart()
-
getChromEnd
public int getChromEnd()
-
getBasesCovered
public int getBasesCovered()
-
getMinVal
public float getMinVal()
-
getMaxVal
public float getMaxVal()
-
getSumData
public float getSumData()
-
getMeanVal
public float getMeanVal()
-
getSumSquares
public float getSumSquares()
-
print
public void print()
-
-