⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 minimalistmatrix.java

📁 Sequence alignement using different algorithms
💻 JAVA
字号:
package norman.baba.grids;

/**
 * <p>Title: BABA</p>
 * <p>Description: Bioinformatique Research Project</p>
 * <p>Copyright: Copyright Norman Casagrande (c) 2003</p>
 * <p>Company: </p>
 * @author Norman Casagrande
 * @version 1.0
 */

public class MinimalistMatrix {

   public MinimalistCellElement[][] mat;
   public int index = 0;

   public MinimalistMatrix(int t, int index) {
      this.mat = new MinimalistCellElement[t][t];
      this.index = index;
   }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -