Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complete web abstraction of GUI interfaces #45

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b720f23
Remove GLMakie as a hard dependency
mkitti Sep 27, 2024
926c40d
Working web app
mkitti Sep 27, 2024
f4595b2
Implement web_main for web_show_average_annotations.jl
mkitti Sep 28, 2024
4137cd1
Work on meshscatter_all
mkitti Sep 28, 2024
daf7562
Add utility scripts create_caches.jl, extract_colors.jl
mkitti Oct 3, 2024
7a01ff1
Finish breaking up demo_averaging.jl into file per function
mkitti Oct 3, 2024
6f9c716
Adapt launch_show_average_annotations.jl for web and desktop
mkitti Oct 3, 2024
c30896e
Add a glmakie environment
mkitti Oct 3, 2024
6d1bb17
Merge branch 'web' of github.com:JaneliaSciComp/ShroffCelegansModels.…
mkitti Oct 3, 2024
c8f5438
Refactor get_datasets_info and get_group_annotation_positions_over_ti…
mkitti Oct 3, 2024
7f0c7b8
Add meshscatter_average
mkitti Oct 3, 2024
4fb02f1
Add dedicated code to average annotations
mkitti Oct 3, 2024
f648f45
Add menu to meshscatter_average
mkitti Oct 9, 2024
860691f
Added legend, meshscatter_average_dev.jl
mkitti Oct 11, 2024
46fc4c1
Add video cropping code
mkitti Oct 12, 2024
fd4a5be
Fix typos and other corrections
mkitti Oct 12, 2024
d0a6697
Add video cropping
mkitti Oct 12, 2024
5655704
Sync for debug_annotation_ap_axis
mkitti Dec 5, 2024
1337037
Actually add new files including debug_annotation_ap_axis
mkitti Dec 5, 2024
bba582a
Updates for web deployment
mkitti Dec 5, 2024
3c5b587
Add timepoints to debug_annotation_ap_axis
mkitti Dec 13, 2024
7dec6e4
debug_annotation_ap_axis: Sort menu, show first
mkitti Jan 6, 2025
8889357
Add docs and comments for untwist_annotations
mkitti Jan 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
/Manifest.toml
/docs/Manifest.toml
/docs/build/
average_worms_2024_01_03.mp4
blah.h5
celegans_avg_models_2024_04_23.h5
kittisopikul_janelia_symposium_2024.png
mipav.png
OD1599_120619_Pos2.mp4
out_of_contour_lin-26_mSC_Pos4.csv
out_of_contour_RW10131_052918_Pos1.csv
RW10131_052918_Pos0_MIPAV.mp4
RW10131_052918_Pos0_NEW.mp4
RW10375_movie.mp4
RW10375_Pos0.mp4
RW10375_Pos1.mp4
RW10375_Pos2_volume.png
RW10375_Pos2_volumes.mp4
RW10375_Pos2.mp4
scicomp_soft_logo.png
test.h5
2024_01_18_1fps/RW10131_052918_Pos0_MIPAV.mp4
2024_01_18_1fps/RW10131_052918_Pos0_NEW.mp4
backup/Manifest.toml
backup/Project.toml
*.csv
3 changes: 1 addition & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
ImageContrastAdjustment = "f332f351-ec65-5f6a-b3d1-319c6670881a"
Expand Down Expand Up @@ -46,7 +46,6 @@ UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"

[compat]
CircStats = "1"
GLMakie = "0.10"
ImageContrastAdjustment = "0.3"
ImageCore = "0.10"
MakieCore = "0.8"
Expand Down
Loading