mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
refactor: use a template to add retrying
This commit is contained in:
parent
ed09978222
commit
dd1c66783a
2 changed files with 65 additions and 21 deletions
|
@ -12,31 +12,16 @@ process SRATOOLS_PREFETCH {
|
||||||
tuple val(meta), val(id)
|
tuple val(meta), val(id)
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("$id"), emit: sra
|
tuple val(meta), path(id), emit: sra
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
task.ext.when == null || task.ext.when
|
task.ext.when == null || task.ext.when
|
||||||
|
|
||||||
script:
|
shell:
|
||||||
def args = task.ext.args ?: ''
|
args = task.ext.args ?: ''
|
||||||
def config = "/LIBS/GUID = \"${UUID.randomUUID().toString()}\"\\n/libs/cloud/report_instance_identity = \"true\"\\n"
|
args2 = task.ext.args2 ?: '5 1 100' // <num retries> <base delay in seconds> <max delay in seconds>
|
||||||
"""
|
config = "/LIBS/GUID = \"${UUID.randomUUID().toString()}\"\\n/libs/cloud/report_instance_identity = \"true\"\\n"
|
||||||
eval "\$(vdb-config -o n NCBI_SETTINGS | sed 's/[" ]//g')"
|
|
||||||
if [[ ! -f "\${NCBI_SETTINGS}" ]]; then
|
|
||||||
mkdir -p "\$(dirname "\${NCBI_SETTINGS}")"
|
|
||||||
printf '${config}' > "\${NCBI_SETTINGS}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
prefetch \\
|
template 'retry_with_backoff.sh'
|
||||||
$args \\
|
|
||||||
$id
|
|
||||||
|
|
||||||
vdb-validate $id
|
|
||||||
|
|
||||||
cat <<-END_VERSIONS > versions.yml
|
|
||||||
"${task.process}":
|
|
||||||
sratools: \$(prefetch --version 2>&1 | grep -Eo '[0-9.]+')
|
|
||||||
END_VERSIONS
|
|
||||||
"""
|
|
||||||
}
|
}
|
||||||
|
|
59
modules/sratools/prefetch/templates/retry_with_backoff.sh
Executable file
59
modules/sratools/prefetch/templates/retry_with_backoff.sh
Executable file
|
@ -0,0 +1,59 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -u
|
||||||
|
|
||||||
|
retry_with_backoff() {
|
||||||
|
local max_attempts=${1}
|
||||||
|
local delay=${2}
|
||||||
|
local max_time=${3}
|
||||||
|
local attempt=1
|
||||||
|
local output=
|
||||||
|
local status=
|
||||||
|
|
||||||
|
# Remove the first three arguments to this function in order to access
|
||||||
|
# the 'real' command with `${@}`.
|
||||||
|
shift 3
|
||||||
|
|
||||||
|
while [ ${attempt} -le ${max_attempts} ]; do
|
||||||
|
output=$("${@}")
|
||||||
|
status=${?}
|
||||||
|
|
||||||
|
if [ ${status} -eq 0 ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ${attempt} -lt ${max_attempts} ]; then
|
||||||
|
echo "Failed attempt ${attempt} of ${max_attempts}. Retrying in ${delay} s." >&2
|
||||||
|
sleep ${delay}
|
||||||
|
elif [ ${attempt} -eq ${max_attempts} ]; then
|
||||||
|
echo "Failed after ${attempt} attempts." >&2
|
||||||
|
return ${status}
|
||||||
|
fi
|
||||||
|
|
||||||
|
attempt=$(( ${attempt} + 1 ))
|
||||||
|
delay=$(( ${delay} * 2 ))
|
||||||
|
if [ ${delay} -ge ${max_time} ]; then
|
||||||
|
delay=${max_time}
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "${output}"
|
||||||
|
}
|
||||||
|
|
||||||
|
eval "$(vdb-config -o n NCBI_SETTINGS | sed 's/[" ]//g')"
|
||||||
|
if [[ ! -f "${NCBI_SETTINGS}" ]]; then
|
||||||
|
mkdir -p "$(dirname "${NCBI_SETTINGS}")"
|
||||||
|
printf '!{config}' > "${NCBI_SETTINGS}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
retry_with_backoff !{args2} \
|
||||||
|
prefetch \
|
||||||
|
!{args} \
|
||||||
|
!{id}
|
||||||
|
|
||||||
|
vdb-validate !{id}
|
||||||
|
|
||||||
|
cat <<-END_VERSIONS > versions.yml
|
||||||
|
"!{task.process}":
|
||||||
|
sratools: $(prefetch --version 2>&1 | grep -Eo '[0-9.]+')
|
||||||
|
END_VERSIONS
|
Loading…
Reference in a new issue