Skip to content

Commit

Permalink
avoid reading output
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 committed Dec 22, 2023
1 parent f19312f commit 959bce6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MEDYANSimRunner"
uuid = "b58a3b99-22e3-44d1-b5ea-258f082a6fe8"
authors = ["nhz2 <[email protected]>"]
version = "0.5.3"
version = "0.5.4"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down Expand Up @@ -29,5 +29,5 @@ LoggingExtras = "1"
OrderedCollections = "1"
Random = "1"
SHA = "0.7, 1"
SmallZarrGroups = "0.7.1, 0.8"
SmallZarrGroups = "0.8.3"
julia = "1.9"
5 changes: 4 additions & 1 deletion src/run-sim.jl
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,11 @@ function zip_group(g::ZGroup)::Vector{UInt8}
take!(io)
end

# ignores the top level "out" group
function unzip_group(data::Vector{UInt8})::ZGroup
SmallZarrGroups.load_zip(data)
SmallZarrGroups.load_zip(data;
predicate=!startswith("out/"),
)
end


0 comments on commit 959bce6

Please sign in to comment.