Package net.sf.cram.encoding.read_features

Examples of net.sf.cram.encoding.read_features.BaseChange


          byte op = ops[random.nextInt(ops.length)];
          switch (op) {
          case Substitution.operator:
            Substitution sv = new Substitution();
            sv.setPosition(newPos);
            sv.setBaseChange(new BaseChange(random.nextInt(4)));
            record.getReadFeatures().add(sv);
            break;
          case Deletion.operator:
            Deletion dv = new Deletion();
            dv.setPosition(newPos);
View Full Code Here

TOP

Related Classes of net.sf.cram.encoding.read_features.BaseChange

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.