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

fix(workflow): H5 Export not run #215

Merged
merged 6 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion IFTPipeline.jl/src/cli.jl
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ function mkclimakeh5_single!(settings)
required = true
arg_type = String

"--output", "-o"
"--output"
help = "Output file"
required = true
end
Expand Down
4 changes: 2 additions & 2 deletions workflow/flow.cylc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""
P1D = """
get_all_overpass_times[^] => get_single_overpass_time<satellite>
INIT[^]:succeed-all => LOAD:succeed-all => PREPROCESS:succeed-all => exportH5 => done
INIT[^]:succeed-all => LOAD:succeed-all => PREPROCESS:succeed-all => exportH5<satellite> => done
hollandjg marked this conversation as resolved.
Show resolved Hide resolved
done[-P1D] => done

"""
Expand Down Expand Up @@ -290,7 +290,7 @@
# Package intermediate and final outputs into HDF5 files
script = """
${IFT} makeh5files_single \
--passtime `cat ${overpass_time_file}` \
--passtime "$(cat ${overpass_time_file} | tr -d 'Z\n\r')" \
--truecolor ${truecolor_file} \
--falsecolor ${falsecolor_file} \
--labeled ${labeled_file} \
Expand Down
Loading