From 52b782b7f3cea760af6ebe75ae2c182ed9d46331 Mon Sep 17 00:00:00 2001 From: Daniel Kool Date: Fri, 12 Jul 2024 21:28:56 -0500 Subject: [PATCH] fix msa tests --- test/runtests.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 42ef3a4d..72eac5f9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -253,11 +253,11 @@ end # MIToS downloadpfam("pf00062") msa1 = MIToS.MSA.read_file("pf00062.stockholm.gz",Stockholm) - @test size(msa1) == (3023, 123) - @test length(msa1.annotations.sequences) == 3023 + @test size(msa1) == (3241, 123) + @test length(msa1.annotations.sequences) == 3259 plotdata = plottingdata(msa1) msamatrix = plotdata[:matrix] - @test size(msamatrix[]) == (3023, 123) + @test size(msamatrix[]) == (3241, 123) matrixvals = msavalues(msamatrix[]) @test firstkey(kideradict) == "A" @test firstvalue(kideradict) == [-1.56, -1.67, -0.97, -0.27, -0.93, -0.78, -0.2, -0.08, 0.21, -0.48]