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} )
|
@DocumentedGATKFeature( groupName = "Companion Utilities", extraDocs = {CommandLineGATK.class} )
|
||||||
@WalkerName("FastaAlternateReferenceMaker")
|
|
||||||
@Reference(window=@Window(start=-1,stop=50))
|
@Reference(window=@Window(start=-1,stop=50))
|
||||||
@Requires(value={DataSource.REFERENCE})
|
@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.
|
* Variants from these input files are used by this tool to construct an alternate reference.
|
||||||
|
|
@ -62,15 +62,14 @@ import java.io.PrintStream;
|
||||||
* <pre>
|
* <pre>
|
||||||
* java -Xmx2g -jar GenomeAnalysisTK.jar \
|
* java -Xmx2g -jar GenomeAnalysisTK.jar \
|
||||||
* -R ref.fasta \
|
* -R ref.fasta \
|
||||||
* -T FastaReference \
|
* -T FastaReferenceMaker \
|
||||||
* -o output.fasta \
|
* -o output.fasta \
|
||||||
* -L input.intervals
|
* -L input.intervals
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@DocumentedGATKFeature( groupName = "Companion Utilities", extraDocs = {CommandLineGATK.class} )
|
@DocumentedGATKFeature( groupName = "Companion Utilities", extraDocs = {CommandLineGATK.class} )
|
||||||
@WalkerName("FastaReferenceMaker")
|
public class FastaReferenceMaker extends RefWalker<Pair<GenomeLoc, String>, GenomeLoc> {
|
||||||
public class FastaReference extends RefWalker<Pair<GenomeLoc, String>, GenomeLoc> {
|
|
||||||
|
|
||||||
@Output PrintStream out;
|
@Output PrintStream out;
|
||||||
|
|
||||||
Loading…
Reference in New Issue