Package cbcb.kmulus.util

Examples of cbcb.kmulus.util.AlphabetMap


    public void setup(Context context) throws IOException {
      Configuration conf = context.getConfiguration();
     
      long numSeq = conf.getLong(NUM_SEQ_ATTR, 0);
      int eugID = conf.getInt(EUG_ATTR, EugType.PRIME_ROT.ordinal());
      alphabetMap = new AlphabetMap(conf.getStrings(ALPHABET_ATTR, DEF_ALPHABET)[0]);
     
      if (numSeq < 0) {
        eug = null;
      } else {
       
View Full Code Here


    public void setup(Context context) throws IOException {
      Configuration conf = context.getConfiguration();
     
      long numSeq = conf.getLong(NUM_SEQ_ATTR, 0);
      int eugID = conf.getInt(EUG_ATTR, EugType.PRIME_ROT.ordinal());
      alphabetMap = new AlphabetMap(conf.getStrings(ALPHABET_ATTR, DEF_ALPHABET)[0]);
     
      // To allow for all 6 open reading frames, will generate 6 fold sequences.
      numSeq *= 6;
     
      if (numSeq < 0) {
View Full Code Here

TOP

Related Classes of cbcb.kmulus.util.AlphabetMap

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.