Looks like the @WalkerName annotation doesn't work with the GATK docs, so I'm renaming the walkers.

This commit is contained in:
Eric Banks 2012-08-22 20:17:39 -04:00
parent 95a1337285
commit e5df91aa23
2 changed files with 3 additions and 5 deletions

View File

@ -76,10 +76,9 @@ import java.util.List;
*
*/
@DocumentedGATKFeature( groupName = "Companion Utilities", extraDocs = {CommandLineGATK.class} )
@WalkerName("FastaAlternateReferenceMaker")
@Reference(window=@Window(start=-1,stop=50))
@Requires(value={DataSource.REFERENCE})
public class FastaAlternateReference extends FastaReference {
public class FastaAlternateReferenceMaker extends FastaReferenceMaker {
/**
* Variants from these input files are used by this tool to construct an alternate reference.

View File

@ -62,15 +62,14 @@ import java.io.PrintStream;
* <pre>
* java -Xmx2g -jar GenomeAnalysisTK.jar \
* -R ref.fasta \
* -T FastaReference \
* -T FastaReferenceMaker \
* -o output.fasta \
* -L input.intervals
* </pre>
*
*/
@DocumentedGATKFeature( groupName = "Companion Utilities", extraDocs = {CommandLineGATK.class} )
@WalkerName("FastaReferenceMaker")
public class FastaReference extends RefWalker<Pair<GenomeLoc, String>, GenomeLoc> {
public class FastaReferenceMaker extends RefWalker<Pair<GenomeLoc, String>, GenomeLoc> {
@Output PrintStream out;