2009-02-28 01:07:57 +08:00
|
|
|
package edu.mit.broad.sting.utils;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Created by IntelliJ IDEA.
|
|
|
|
|
* User: mdepristo
|
|
|
|
|
* Date: Feb 27, 2009
|
|
|
|
|
* Time: 10:49:47 AM
|
|
|
|
|
* To change this template use File | Settings | File Templates.
|
|
|
|
|
*/
|
2009-03-01 04:47:48 +08:00
|
|
|
public abstract class ReferenceOrderedDatum {
|
|
|
|
|
public ReferenceOrderedDatum() { }
|
2009-02-28 01:07:57 +08:00
|
|
|
|
2009-03-01 04:47:48 +08:00
|
|
|
public abstract void parseLine(final String[] parts);
|
2009-02-28 01:07:57 +08:00
|
|
|
|
2009-03-01 04:47:48 +08:00
|
|
|
public abstract String toString();
|
|
|
|
|
public abstract String toSimpleString();
|
2009-02-28 01:07:57 +08:00
|
|
|
|
2009-03-01 04:47:48 +08:00
|
|
|
public abstract String getContig();
|
|
|
|
|
public abstract long getStart();
|
|
|
|
|
public abstract long getStop();
|
2009-02-28 01:07:57 +08:00
|
|
|
}
|