Help for the qc package.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2327 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
hanna 2009-12-11 17:32:47 +00:00
parent 450ea233a5
commit 956c36a2c8
3 changed files with 8 additions and 16 deletions

View File

@ -11,11 +11,8 @@ import java.util.Arrays;
import net.sf.samtools.SAMRecord;
/**
* Created by IntelliJ IDEA.
* User: hanna
* Date: 13 Apr, 2009
* Time: 11:23:14 AM
* To change this template use File | Settings | File Templates.
* Diagnostics analysis. At each locus in the input data set, prints the reference base, genomic location, and
* all aligning reads in a compact but human-readable form.
*/
public class PrintLocusContextWalker extends LocusWalker<AlignmentContext, Integer> implements TreeReducible<Integer> {
public AlignmentContext map(RefMetaDataTracker tracker, ReferenceContext ref, AlignmentContext context) {

View File

@ -37,12 +37,9 @@ import java.util.ArrayList;
*/
/**
*
* @author aaron
*
* Class ReadValidationWalker
*
* A descriptions should go here. Blame aaron if it's missing.
* Diagnostics analysis. Checks all reads passed through the system to ensure that
* the same read is not passed to the walker multiple consecutive times.
* @author aaron
*/
public class ReadValidationWalker extends ReadWalker<SAMRecord, SAMRecord> {

View File

@ -14,11 +14,9 @@ import org.broadinstitute.sting.utils.StingException;
import java.util.Arrays;
/**
* Created by IntelliJ IDEA.
* User: mdepristo
* Date: Feb 22, 2009
* Time: 3:22:14 PM
* To change this template use File | Settings | File Templates.
* Diagnostics analysis. At every locus in the input set, compares the pileup data (reference base, aligned base from
* each overlapping read, and quality score) to the reference pileup data generated by samtools. Samtools' pileup data
* should be specified using the command-line argument '-B pileup,SAMPileup,<your sam pileup file>'.
*/
@Requires(value={DataSource.READS,DataSource.REFERENCE},referenceMetaData=@RMD(name="pileup",type=rodSAMPileup.class))
public class ValidatingPileupWalker extends LocusWalker<Integer, ValidationStats> implements TreeReducible<ValidationStats> {