001/* 002 * BioJava development code 003 * 004 * This code may be freely distributed and modified under the 005 * terms of the GNU Lesser General Public Licence. This should 006 * be distributed with the code. If you do not have a copy, 007 * see: 008 * 009 * http://www.gnu.org/copyleft/lesser.html 010 * 011 * Copyright for this code is held jointly by the individual 012 * authors. These should be listed in @author doc comments. 013 * 014 * For more information on the BioJava project and its aims, 015 * or to join the biojava-l mailing list, visit the home page 016 * at: 017 * 018 * http://www.biojava.org/ 019 * 020 */ 021 022package org.biojava.bio.symbol; 023 024import java.util.Set; 025 026import org.biojava.bio.dist.Distribution; 027 028/** 029 * an object to return statistics about 030 * the frequency of the wobble base 031 * in a set of synonymous codons. 032 * 033 * @author David Huen 034 * @since 1.3 035 */ 036public interface WobbleDistribution 037{ 038 /** 039 * returns the residue encoded by this WobbleDistribution 040 */ 041 public Symbol getResidue(); 042 043 /** 044 * returns Set containing the nonWobbleBases that 045 * occur in codons that encode this residue 046 */ 047 public Set getNonWobbleBases(); 048 049 /** 050 * returns the frequency with which 051 * synonymous codons start with a 052 * specified pair of bases. 053 */ 054 public Distribution getFrequencyOfNonWobbleBases(); 055 056 /** 057 * returns the frequency of a specific 058 * wobble base in a set of synonymous 059 * codons that start with the same two 060 * bases. (sums to one over this set). 061 */ 062 public Distribution getWobbleFrequency(Symbol nonWobbleBases); 063} 064