Skip to content

Commit

Permalink
Incorrect initialization fixed (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: Hakon G <hgudbjartsson@genedx.com>
  • Loading branch information
gmagnu and Hakon G authored Dec 17, 2024
1 parent 2b5fb11 commit 212876a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gortools/src/main/scala/gorsat/Analysis/GorQueen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ object GorQueen {
*/
val GTS1length = bui.outputBucketID.length
val outputSize2 = bui.outputBucketID2.length
val IDX1 = new Array[Int](outputSize2)
val IDX1 = new Array[Int](GTS1length)
val GTS2 = new Array[Char](outputSize2)
var IDX1size : Int = 0

Expand Down

0 comments on commit 212876a

Please sign in to comment.