22 lines
554 B
Java
Executable File
22 lines
554 B
Java
Executable File
package org.broadinstitute.sting.gatk.walkers;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: hanna
|
|
* Date: Mar 26, 2009
|
|
* Time: 3:00:16 PM
|
|
* To change this template use File | Settings | File Templates.
|
|
*/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.TYPE)
|
|
public @interface WalkerName {
|
|
public String value() default "";
|
|
}
|