25 lines
675 B
Java
Executable File
25 lines
675 B
Java
Executable File
package org.broadinstitute.sting.gatk.walkers;
|
|
|
|
import org.broadinstitute.sting.gatk.refdata.ReferenceOrderedDatum;
|
|
/**
|
|
* User: hanna
|
|
* Date: May 19, 2009
|
|
* Time: 1:34:15 PM
|
|
* BROAD INSTITUTE SOFTWARE COPYRIGHT NOTICE AND AGREEMENT
|
|
* Software and documentation are copyright 2005 by the Broad Institute.
|
|
* All rights are reserved.
|
|
*
|
|
* Users acknowledge that this software is supplied without any warranty or support.
|
|
* The Broad Institute is not responsible for its use, misuse, or
|
|
* functionality.
|
|
*/
|
|
|
|
/**
|
|
* A data type representing reference-ordered data.
|
|
*/
|
|
|
|
public @interface RMD {
|
|
String name();
|
|
Class<? extends ReferenceOrderedDatum> type();
|
|
}
|