Java生物信息- 判断碱基有没有连续的重复序列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java生物信息- 判断碱基有没有连续的重复序列相关的知识,希望对你有一定的参考价值。

连续的四个碱基的重复


不能判断是否有多个碱基的重复

public class TestConsecutiveBases{

  public static void main (String[] args) {
    java.util.Scanner input = new java.util.Scanner(System.in);
    
    System.out.print("Enter the number of values: ");
    String DNASeq = input.nextLine();
    
    if (isConsecutiveFour(DNASeq))
      System.out.println("The series has consecutive four bases");
    else
    	System.out.println("The series has no consecutive four bases");
  }

  public static boolean isConsecutiveFour(String T) { 
	char[] DT = T.toCharArray();   
    for (int i = 0; i < DT.length - 3; i++) {
      boolean isEqual = true;        
      for (int j = i; j < i + 3; j++) {
        if (DT[j] != (DT[j + 1])) {
          isEqual = false;
          break;
        }
      }
     
      if (isEqual) return true;
    }
    
    return false;
  }
}


以上是关于Java生物信息- 判断碱基有没有连续的重复序列的主要内容,如果未能解决你的问题,请参考以下文章

[BZOJ4892][TJOI2017]DNA(后缀数组)

生物信息学常见数据格式

BZOJ_4892_[Tjoi2017]dna_哈希

基因数据格式

序列比对-动态规划算法

bzoj2764[JLOI2011]基因补全 dp+高精度