Package org.broadinstitute.gatk.tools.walkers.annotator.SnpEff

Examples of org.broadinstitute.gatk.tools.walkers.annotator.SnpEff.EffectType


    //A helper function that gets the parent set of the set of children
    private static Set<EffectType> getParentSet(final Set<EffectType> children){
        final Set<EffectType> parents=new HashSet<>();
        for(EffectType child:children){
            final EffectType parent = snpEffectGraph.get(child);
            if(parent!=null) parents.add(parent);
        }
        return parents;
    }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.tools.walkers.annotator.SnpEff.EffectType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.