2009-04-03 21:23:18 +08:00
|
|
|
package org.broadinstitute.sting.gatk.walkers;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Created by IntelliJ IDEA.
|
|
|
|
|
* User: mdepristo
|
|
|
|
|
* Date: Feb 22, 2009
|
|
|
|
|
* Time: 2:52:28 PM
|
|
|
|
|
* To change this template use File | Settings | File Templates.
|
|
|
|
|
*/
|
2009-05-20 07:26:17 +08:00
|
|
|
@By(DataSource.REFERENCE)
|
|
|
|
|
@Requires(DataSource.REFERENCE)
|
|
|
|
|
@Allows(DataSource.REFERENCE)
|
2009-04-03 21:23:18 +08:00
|
|
|
public abstract class RefWalker<MapType, ReduceType> extends LocusWalker<MapType, ReduceType> {
|
|
|
|
|
}
|