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

Added stderr for obc gen scripts #133

Merged
merged 1 commit into from
Jan 17, 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
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#SBATCH --mail-type={{ _EMAIL_NOTIFACTION }}
#SBATCH --mail-user={{ _USER_EMAIL }}
#SBATCH --output={{ _LOG_PATH }}
#SBATCH --error={{ _LOG_PATH }}

# Usage: sbatch fill_glorys.sh <YEAR> <MONTH> <DAY>
# This script is used to fill the GLORYS reanalysis data on GFDL PPAN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#SBATCH --ntasks={{ _NPROC }}
#SBATCH --mail-type={{ _EMAIL_NOTIFACTION }}
#SBATCH --mail-user={{ _USER_EMAIL }}
#SBATCH --output=./log/%x.o%j
#SBATCH --output={{ _LOG_PATH }}
#SBATCH --error={{ _LOG_PATH }}

# Usage: sbatch ncrcat_obc.sh <ncrcat_arg>
# This script is used to submit sbatch jobs for concatenating daily obc file on GFDL PPAN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#SBATCH --mail-type={{ _EMAIL_NOTIFACTION }}
#SBATCH --mail-user={{ _USER_EMAIL }}
#SBATCH --output={{ _LOG_PATH }}
#SBATCH --error={{ _LOG_PATH }}

# Usage: sbatch submit_python_make_obc_day.sh <YEAR> <MONTH> <DAY>
# This script is used to submit sbatch jobs for daily GLORYS OBC file generation on GFDL PPAN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#SBATCH --mail-type={{ _EMAIL_NOTIFACTION }}
#SBATCH --mail-user={{ _USER_EMAIL }}
#SBATCH --output={{ _LOG_PATH }}
#SBATCH --error={{ _LOG_PATH }}

# Usage: sbatch subset_glorys.sh <YEAR> <MONTH> <DAY>

Expand Down
Loading