From 9c3cdc14f2eae4d1165809c3e0eacf9420531d24 Mon Sep 17 00:00:00 2001 From: Chris Blanton Date: Tue, 17 Sep 2024 15:24:32 -0400 Subject: [PATCH] Update the metadata URL to github, remove unnecessary Jinja set, and remove some extra lines --- flow.cylc | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/flow.cylc b/flow.cylc index 38a7797..113ac4c 100644 --- a/flow.cylc +++ b/flow.cylc @@ -8,7 +8,6 @@ {# branch, the ppan site file should be specified. The ppan site comprises of gfdl specific tools. Other available #} {# sites include ppan, gfdl-ws, and generic. The generic.cylc site file is used for a portable flow.cylc. #} {# (Probably, we should use similar mechanisms where sensible, e.g. for shared items among workflows) #} -{% set SITE = SITE %} {# Calculate the number of history segments per a-chunk #} {% set HIST_SEGMENTS_PER_CHUNK_A = (PP_CHUNK_A | duration_as('s') / HISTORY_SEGMENT | duration_as('s')) | int %} @@ -20,7 +19,6 @@ {# months_per_chunk_a #} {% set MOS_PER_CHUNK_A = (PP_CHUNK_A | duration_as('s') / SECS_PER_365CAL_MONTH) | int %} - {# Calculate the number of a-chunks per b-chunk (if desired) #} {% set DO_SECONDARY_PP = False %} {% if PP_CHUNK_B is defined and PP_CHUNK_B != PP_CHUNK_A %} @@ -41,11 +39,11 @@ {% endif %} [meta] - title = "Postprocessing Example 1" + title = "Postprocessing" description = """ - Postprocessing example that includes Bronx-like functionality, + Postprocess FMS history files """ - URL = https://gitlab.gfdl.noaa.gov/fre2/workflows/postprocessing + URL = https://github.com/NOAA-GFDL/fre-workflows.git [scheduler] {# Implicit tasks are tasks without explicit runtime definitions in [runtime], often typos. #} @@ -89,8 +87,6 @@ {# Standard Jinja2 triggers are also available (e.g. "replace") #} component = {{ PP_COMPONENTS | replace(' ', ', ') }} - - [scheduling] initial cycle point = {{ PP_START }} final cycle point = {{ PP_STOP }} @@ -196,7 +192,6 @@ rename-split-to-pp-native => clean-split-native {% endif %} """ - # # Recurrence interval R1: run only once. useful for statics. # @@ -249,7 +244,6 @@ combine-statics => clean-pp-statics {% endif %} """ - # # Recurrence interval: every CHUNK-A # @@ -327,7 +321,6 @@ REMAP-PP-COMPONENTS-TS-{{ PP_CHUNK_A }}:succeed-all => mdtf REMAP-PP-COMPONENTS-TS-{{ PP_CHUNK_A }}:succeed-all => data-catalog? """ - # # Recurrence interval: every CHUNK-B # @@ -1188,8 +1181,6 @@ REMAP-PP-COMPONENTS-AV-{{ PP_CHUNK_B }}:succeed-all => clean-shards-{{ PP_CHUNK_ """ {% endif %} - - # Site-specific settings {% include 'site/' ~ SITE ~ '.cylc' %}