Skip to content

Commit

Permalink
temp fix patch1
Browse files Browse the repository at this point in the history
  • Loading branch information
kool7d committed Jul 24, 2024
1 parent b809bd1 commit 1fa09e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ FASTX = "1.2, 2"
FastaIO = "1"
FileIO = "1"
GLFW = "3"
GLMakie = "0.10"
GLMakie = "0.9"
GeometryBasics = "0.4"
HTTP = "1"
Hyperscript = "0.0.4, 0.0.5"
Expand All @@ -58,8 +58,8 @@ ImageShow = "0.3"
JSON3 = "1"
Lazy = "0.15"
MIToS = "3"
Makie = "0.19, 0.20, 0.21"
Meshes = "0.46"
Makie = "0.19, 0.20"
Meshes = "0.43"
MolecularGraph = "0.13, 0.14, 0.15, 0.16"
OrderedCollections = "1.4"
PairwiseListMatrices = "0.11"
Expand Down
8 changes: 4 additions & 4 deletions src/msa.jl
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function plotmsa!( fig::Figure, msa::Observable{T};
ax.yzoomlock[] = true
ax.yticklabelspace[] = 10.0

points1 = [Point2f0(x,y) for x in widthrange for y in heightrange] |> collect
points1 = [Point2f(x,y) for x in widthrange for y in heightrange] |> collect
charvec = @lift SplitApplyCombine.flatten($charshow)

hm = heatmap!(ax, colorvals, show_grid = true,
Expand Down Expand Up @@ -325,7 +325,7 @@ function plotmsa!( figposition::GridPosition, msa::Observable{T};
ax.yzoomlock[] = true
ax.yticklabelspace[] = 10.0

points1 = [Point2f0(x,y) for x in widthrange for y in heightrange] |> collect
points1 = [Point2f(x,y) for x in widthrange for y in heightrange] |> collect
charvec = @lift SplitApplyCombine.flatten($charshow)

hm = heatmap!(ax, colorvals, show_grid = true,
Expand Down Expand Up @@ -453,7 +453,7 @@ function plotmsa!( fig::Figure, plotdata::AbstractDict{Symbol,T};
ax.yzoomlock[] = true
ax.yticklabelspace[] = 10.0

points1 = [Point2f0(x,y) for x in widthrange for y in heightrange] |> collect
points1 = [Point2f(x,y) for x in widthrange for y in heightrange] |> collect
charvec = @lift SplitApplyCombine.flatten($charshow)

hm = heatmap!(ax, colorvals, show_grid = true,
Expand Down Expand Up @@ -581,7 +581,7 @@ function plotmsa!( figposition::GridPosition, plotdata::AbstractDict{Symbol,T};
ax.yzoomlock[] = true
ax.yticklabelspace[] = 10.0

points1 = [Point2f0(x,y) for x in widthrange for y in heightrange] |> collect
points1 = [Point2f(x,y) for x in widthrange for y in heightrange] |> collect
charvec = @lift SplitApplyCombine.flatten($charshow)

hm = heatmap!(ax, colorvals, show_grid = true,
Expand Down

0 comments on commit 1fa09e5

Please sign in to comment.