Skip to content

Commit

Permalink
remove HERE
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 committed Jan 16, 2025
1 parent 8ab053a commit 0960012
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/scala/com/fulcrumgenomics/alignment/Aligner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ object Aligner {
}.toArray

override protected def buildMatrices(query: Array[Byte], target: Array[Byte]): Array[AlignmentMatrix] = {
println("HERE")
if (query.length > this.matrices(0).scoring.x || target.length > this.matrices(0).scoring.y) {
val xLength = math.max(query.length, this.matrices(0).scoring.x)
val yLength = math.max(target.length, this.matrices(0).scoring.y)
Expand Down

0 comments on commit 0960012

Please sign in to comment.