All Downloads are FREE. Search and download functionalities are using the official Maven repository.

axle.bio.SmithWatermanDefaults.scala Maven / Gradle / Ivy

There is a newer version: 0.6.6
Show newest version
package axle.bio

object SmithWatermanDefaults {

  def w(x: Char, y: Char, mismatchPenalty: Int): Int =
    if (x != y) {
      mismatchPenalty
    } else {
      2 // also see NeedlemanWunsch.Default.similarity
    }

  val mismatchPenalty = -1

  val gap = '-'

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy