From c360caf9bdc9edc27d024c78cf444092433bc369 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 10 Jan 2023 11:19:58 -0600 Subject: [PATCH] Add tests for Variation sorting --- test/runtests.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 68d97d8..6734a63 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -56,6 +56,10 @@ end @test reconstruct(var) == seq1 end +@testset "VariationSorting" begin + @test Variation(seq2, "A3T") < Variation(seq2, "T4A") +end + @testset "VariationPosition" begin refseq = dna"ACAACTTTATCT" mutseq = dna"ACATCTTTATCT"