All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadinstitute.hellbender.tools.walkers.CountVariants Maven / Gradle / Ivy

There is a newer version: 4.6.0.0
Show newest version
package org.broadinstitute.hellbender.tools.walkers;

import htsjdk.variant.variantcontext.VariantContext;
import org.broadinstitute.barclay.argparser.CommandLineProgramProperties;
import org.broadinstitute.barclay.help.DocumentedFeature;
import picard.cmdline.programgroups.VariantEvaluationProgramGroup;
import org.broadinstitute.hellbender.engine.FeatureContext;
import org.broadinstitute.hellbender.engine.ReadsContext;
import org.broadinstitute.hellbender.engine.ReferenceContext;
import org.broadinstitute.hellbender.engine.VariantWalker;

/**
 *
 * Count variant records in a VCF file, regardless of filter status. The tool gives the count at end of the standard out.
 *
 * 

Input

*
    *
  • A single VCF file.
  • *
* *

Usage example:

*
 *  gatk CountVariants \
 *      -V input_variants.vcf
 * 
*/ @DocumentedFeature @CommandLineProgramProperties( summary = CountVariants.USAGE_SUMMARY, oneLineSummary = CountVariants.USAGE_ONE_LINE_SUMMARY, programGroup = VariantEvaluationProgramGroup.class ) public final class CountVariants extends VariantWalker { private long count = 0; static final String USAGE_ONE_LINE_SUMMARY = "Counts variant records in a VCF file, regardless of filter status."; static final String USAGE_SUMMARY = "This tool counts the variant records in a VCF file, regardless of filter status. " + "Because it counts the number of rows in the VCF, it does not necessarily reflect the number of variant " + "alleles. The count is returned at the end of the standard out."; @Override public void apply( final VariantContext variant, final ReadsContext readsContext, final ReferenceContext referenceContext, final FeatureContext featureContext ) { count++; } @Override public Object onTraversalSuccess() { return count; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy