56 lines
2.5 KiB
Markdown
56 lines
2.5 KiB
Markdown
|
|
## Writing GATKdocs for your walkers
|
||
|
|
|
||
|
|
http://gatkforums.broadinstitute.org/gatk/discussion/1324/writing-gatkdocs-for-your-walkers
|
||
|
|
|
||
|
|
<p>The GATKDocs are what we call <a href="http://www.broadinstitute.org/gatk/gatkdocs/">"Technical Documentation"</a> in the Guide section of this website. The HTML pages are generated automatically at build time from specific blocks of documentation in the source code. </p>
|
||
|
|
<p>The best place to look for example documentation for a GATK walker is GATKDocsExample walker in <code>org.broadinstitute.sting.gatk.examples</code>. This is available <a href="https://github.com/broadgsa/gatk/blob/master/public/java/src/org/broadinstitute/sting/gatk/examples/GATKDocsExample.java">here</a>. </p>
|
||
|
|
<p>Below is the reproduction of that file from August 11, 2011:</p>
|
||
|
|
<pre><code class="pre_md">/**
|
||
|
|
* [Short one sentence description of this walker]
|
||
|
|
*
|
||
|
|
* <p>
|
||
|
|
* [Functionality of this walker]
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* <h2>Input</h2>
|
||
|
|
* <p>
|
||
|
|
* [Input description]
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* <h2>Output</h2>
|
||
|
|
* <p>
|
||
|
|
* [Output description]
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* <h2>Examples</h2>
|
||
|
|
* PRE-TAG
|
||
|
|
* java
|
||
|
|
* -jar GenomeAnalysisTK.jar
|
||
|
|
* -T $WalkerName
|
||
|
|
* PRE-TAG
|
||
|
|
*
|
||
|
|
* @category Walker Category
|
||
|
|
* @author Your Name
|
||
|
|
* @since Date created
|
||
|
|
*/
|
||
|
|
public class GATKDocsExample extends RodWalker<Integer, Integer> {
|
||
|
|
/**
|
||
|
|
* Put detailed documentation about the argument here. No need to duplicate the summary information
|
||
|
|
* in doc annotation field, as that will be added before this text in the documentation page.
|
||
|
|
*
|
||
|
|
* Notes:
|
||
|
|
* <ul>
|
||
|
|
* <li>This field can contain HTML as a normal javadoc</li>
|
||
|
|
* <li>Don't include information about the default value, as gatkdocs adds this automatically</li>
|
||
|
|
* <li>Try your best to describe in detail the behavior of the argument, as ultimately confusing
|
||
|
|
* docs here will just result in user posts on the forum</li>
|
||
|
|
* </ul>
|
||
|
|
*/
|
||
|
|
@Argument(fullName="full", shortName="short", doc="Brief summary of argument [~ 80 characters of text]", required=false)
|
||
|
|
private boolean myWalkerArgument = false;
|
||
|
|
|
||
|
|
public Integer map(RefMetaDataTracker tracker, ReferenceContext ref, AlignmentContext context) { return 0; }
|
||
|
|
public Integer reduceInit() { return 0; }
|
||
|
|
public Integer reduce(Integer value, Integer sum) { return value + sum; }
|
||
|
|
public void onTraversalDone(Integer result) { }
|
||
|
|
}</code class="pre_md"></pre>
|