Looks like the @WalkerName annotation doesn't work with the GATK docs, so I'm renaming the walkers.
This commit is contained in:
parent
95a1337285
commit
e5df91aa23
|
|
@ -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.
|
||||
|
|
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue