File Info

Filename
.command.run
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f/.command.run
Size
544.1 KB
Attempt
#!/bin/bash
### ---
### name: 'NFCORE_RNAFUSION:RNAFUSION:MULTIQC'
### container: '292967571998.dkr.ecr.us-west-2.amazonaws.com/biocontainers/multiqc:1.21--pyhdfd78af_0'
### outputs:
### - '*multiqc_report.html'
### - '*_data'
### - '*_plots'
### - 'versions.yml'
### ...
set -e
set -u
NXF_DEBUG=${NXF_DEBUG:=0}; [[ $NXF_DEBUG > 1 ]] && set -x
NXF_ENTRY=${1:-nxf_main}

nxf_tree() {
    local pid=$1

    declare -a ALL_CHILDREN
    while read P PP;do
        ALL_CHILDREN[$PP]+=" $P"
    done < <(ps -e -o pid= -o ppid=)

    pstat() {
        local x_pid=$1
        local STATUS=$(2> /dev/null < /proc/$1/status grep -E 'Vm|ctxt')

        if [ $? = 0 ]; then
        local  x_vsz=$(echo "$STATUS" | grep VmSize | awk '{print $2}' || echo -n '0')
        local  x_rss=$(echo "$STATUS" | grep VmRSS | awk '{print $2}' || echo -n '0')
        local x_peak=$(echo "$STATUS" | grep -E 'VmPeak|VmHWM' | sed 's/^.*:\s*//' | sed 's/[\sa-zA-Z]*$//' | tr '\n' ' ' || echo -n '0 0')
        local x_pmem=$(awk -v rss=$x_rss -v mem_tot=$mem_tot 'BEGIN {printf "%.0f", rss/mem_tot*100*10}' || echo -n '0')
        local vol_ctxt=$(echo "$STATUS" | grep '\bvoluntary_ctxt_switches' | awk '{print $2}' || echo -n '0')
        local inv_ctxt=$(echo "$STATUS" | grep '\bnonvoluntary_ctxt_switches' | awk '{print $2}' || echo -n '0')
        cpu_stat[x_pid]="$x_pid $x_pmem $x_vsz $x_rss $x_peak $vol_ctxt $inv_ctxt"
        fi
    }

    pwalk() {
        pstat $1
        for i in ${ALL_CHILDREN[$1]:=}; do pwalk $i; done
    }

    pwalk $1
}

nxf_stat() {
    cpu_stat=()
    nxf_tree $1

    declare -a sum=(0 0 0 0 0 0 0 0)
    local pid
    local i
    for pid in "${!cpu_stat[@]}"; do
        local row=(${cpu_stat[pid]})
        [ $NXF_DEBUG = 1 ] && echo "++ stat mem=${row[*]}"
        for i in "${!row[@]}"; do
        if [ $i != 0 ]; then
            sum[i]=$((sum[i]+row[i]))
        fi
        done
    done

    [ $NXF_DEBUG = 1 ] && echo -e "++ stat SUM=${sum[*]}"

    for i in {1..7}; do
        if [ ${sum[i]} -lt ${cpu_peak[i]} ]; then
            sum[i]=${cpu_peak[i]}
        else
            cpu_peak[i]=${sum[i]}
        fi
    done

    [ $NXF_DEBUG = 1 ] && echo -e "++ stat PEAK=${sum[*]}\n"
    nxf_stat_ret=(${sum[*]})
}

nxf_mem_watch() {
    set -o pipefail
    local pid=$1
    local trace_file=.command.trace
    local count=0;
    declare -a cpu_stat=(0 0 0 0 0 0 0 0)
    declare -a cpu_peak=(0 0 0 0 0 0 0 0)
    local mem_tot=$(< /proc/meminfo grep MemTotal | awk '{print $2}')
    local timeout
    local DONE
    local STOP=''

    [ $NXF_DEBUG = 1 ] && nxf_sleep 0.2 && ps fx

    while true; do
        nxf_stat $pid
        if [ $count -lt 10 ]; then timeout=1;
        elif [ $count -lt 120 ]; then timeout=5;
        else timeout=30;
        fi
        read -t $timeout -r DONE || true
        [[ $DONE ]] && break
        if [ ! -e /proc/$pid ]; then
            [ ! $STOP ] && STOP=$(nxf_date)
            [ $(($(nxf_date)-STOP)) -gt 10000 ] && break
        fi
        count=$((count+1))
    done

    printf "%s\n" \
        "%mem=${nxf_stat_ret[1]}" \
        "vmem=${nxf_stat_ret[2]}" \
        "rss=${nxf_stat_ret[3]}" \
        "peak_vmem=${nxf_stat_ret[4]}" \
        "peak_rss=${nxf_stat_ret[5]}" \
        "vol_ctxt=${nxf_stat_ret[6]}" \
        "inv_ctxt=${nxf_stat_ret[7]}" >> "$trace_file" || >&2 echo "Error: Failed to append to file: $trace_file"
}

nxf_write_trace() {
    printf "%s\n" \
        "nextflow.trace/v2" \
        "realtime=$wall_time" \
        "%cpu=$ucpu" \
        "cpu_model=$cpu_model" \
        "rchar=${io_stat1[0]}" \
        "wchar=${io_stat1[1]}" \
        "syscr=${io_stat1[2]}" \
        "syscw=${io_stat1[3]}" \
        "read_bytes=${io_stat1[4]}" \
        "write_bytes=${io_stat1[5]}" >| "$trace_file" || >&2 echo "Error: Failed to write to file: $trace_file"
}

nxf_trace_mac() {
    local start_millis=$(nxf_date)

    /bin/bash -euo pipefail .command.sh

    local end_millis=$(nxf_date)
    local wall_time=$((end_millis-start_millis))
    local ucpu=''
    local cpu_model=''
    local io_stat1=('' '' '' '' '' '')
    nxf_write_trace
}

nxf_fd() {
    local FD=11
    while [ -e /proc/$$/fd/$FD ]; do FD=$((FD+1)); done
    echo $FD
}

nxf_trace_linux() {
    local pid=$$
    command -v ps &>/dev/null || { >&2 echo "Command 'ps' required by nextflow to collect task metrics cannot be found"; exit 1; }
    local num_cpus=$(< /proc/cpuinfo grep '^processor' -c)
    local cpu_model=$(< /proc/cpuinfo grep '^model name' | head -n 1 | awk 'BEGIN{FS="\t: "} { print $2 }')
    local tot_time0=$(grep '^cpu ' /proc/stat | awk '{sum=$2+$3+$4+$5+$6+$7+$8+$9; printf "%.0f",sum}')
    local cpu_time0=$(2> /dev/null < /proc/$pid/stat awk '{printf "%.0f", ($16+$17)*10 }' || echo -n 'X')
    local io_stat0=($(2> /dev/null < /proc/$pid/io sed 's/^.*:\s*//' | head -n 6 | tr '\n' ' ' || echo -n '0 0 0 0 0 0'))
    local start_millis=$(nxf_date)
    trap 'kill $mem_proc' ERR
    
    /bin/bash -euo pipefail .command.sh &
    local task=$!

    mem_fd=$(nxf_fd)
    eval "exec $mem_fd> >(nxf_mem_watch $task)"
    local mem_proc=$!

    wait $task

    local end_millis=$(nxf_date)
    local tot_time1=$(grep '^cpu ' /proc/stat | awk '{sum=$2+$3+$4+$5+$6+$7+$8+$9; printf "%.0f",sum}')
    local cpu_time1=$(2> /dev/null < /proc/$pid/stat awk '{printf "%.0f", ($16+$17)*10 }' || echo -n 'X')
    local ucpu=$(awk -v p1=$cpu_time1 -v p0=$cpu_time0 -v t1=$tot_time1 -v t0=$tot_time0 -v n=$num_cpus 'BEGIN { pct=(p1-p0)/(t1-t0)*100*n; printf("%.0f", pct>0 ? pct : 0) }' )

    local io_stat1=($(2> /dev/null < /proc/$pid/io sed 's/^.*:\s*//' | head -n 6 | tr '\n' ' ' || echo -n '0 0 0 0 0 0'))
    local i
    for i in {0..5}; do
        io_stat1[i]=$((io_stat1[i]-io_stat0[i]))
    done

    local wall_time=$((end_millis-start_millis))
    [ $NXF_DEBUG = 1 ] && echo "+++ STATS %CPU=$ucpu TIME=$wall_time I/O=${io_stat1[*]}"

    printf "%s\n" \
        "nextflow.trace/v2" \
        "realtime=$wall_time" \
        "%cpu=$ucpu" \
        "cpu_model=$cpu_model" \
        "rchar=${io_stat1[0]}" \
        "wchar=${io_stat1[1]}" \
        "syscr=${io_stat1[2]}" \
        "syscw=${io_stat1[3]}" \
        "read_bytes=${io_stat1[4]}" \
        "write_bytes=${io_stat1[5]}" >| "$trace_file" || >&2 echo "Error: Failed to write to file: $trace_file"

    [ -e /proc/$mem_proc ] && eval "echo 'DONE' >&$mem_fd" || true
    wait $mem_proc 2>/dev/null || true
    while [ -e /proc/$mem_proc ]; do nxf_sleep 0.1; done
}

nxf_trace() {
    local trace_file=.command.trace
    touch $trace_file
    if [[ $(uname) = Darwin ]]; then
        nxf_trace_mac
    else
        nxf_trace_linux
    fi
}
# bash helper functions
nxf_cp_retry() {
    local max_attempts=1
    local timeout=10
    local attempt=0
    local exitCode=0
    while (( $attempt < $max_attempts ))
    do
      if "$@"
        then
          return 0
      else
        exitCode=$?
      fi
      if [[ $exitCode == 0 ]]
      then
        break
      fi
      nxf_sleep $timeout
      attempt=$(( attempt + 1 ))
      timeout=$(( timeout * 2 ))
    done
}

nxf_parallel() {
    IFS=$'\n'
    local cmd=("$@")
    local cpus=$(nproc 2>/dev/null || < /proc/cpuinfo grep '^process' -c)
    local max=$(if (( cpus>4 )); then echo 4; else echo $cpus; fi)
    local i=0
    local pid=()
    (
    set +u
    while ((i<${#cmd[@]})); do
        local copy=()
        for x in "${pid[@]}"; do
          # if the process exist, keep in the 'copy' array, otherwise wait on it to capture the exit code
          # see https://github.com/nextflow-io/nextflow/pull/4050
          [[ -e /proc/$x ]] && copy+=($x) || wait $x
        done
        pid=("${copy[@]}")

        if ((${#pid[@]}>=$max)); then
          nxf_sleep 0.2
        else
          eval "${cmd[$i]}" &
          pid+=($!)
          ((i+=1))
        fi
    done
    for p in "${pid[@]}"; do
        wait $p
    done
    )
    unset IFS
}

# aws helper for s5cmd
nxf_s3_upload() {
    local name=$1
    local s3path=$2
    if [[ "$name" == - ]]; then
      local tmp=$(nxf_mktemp)
      cp /dev/stdin $tmp/$name
      /opt/s5cmd/bin/s5cmd --log error cp --storage-class STANDARD $tmp/$name "$s3path"
    elif [[ -d "$name" ]]; then
      /opt/s5cmd/bin/s5cmd --log error cp --storage-class STANDARD "$name/" "$s3path/$name/"
    else
      /opt/s5cmd/bin/s5cmd --log error cp --storage-class STANDARD "$name" "$s3path/$name"
    fi
}

nxf_s3_download() {
    local source=$1
    local target=$2
    echo "  Downloading: $source"
    local file_name=$(basename $1)
    local is_dir=$(/opt/s5cmd/bin/s5cmd ls $source | grep -F "DIR  ${file_name}/" -c)
    if [[ $is_dir == 1 ]]; then
        /opt/s5cmd/bin/s5cmd --log error cp "$source/*" "$target"
    else
        /opt/s5cmd/bin/s5cmd --log error cp "$source" "$target"
    fi
}

nxf_sleep() {
  sleep $1 2>/dev/null || sleep 1;
}

nxf_date() {
    local ts=$(date +%s%3N);
    if [[ ${#ts} == 10 ]]; then echo ${ts}000
    elif [[ $ts == *%3N ]]; then echo ${ts/\%3N/000}
    elif [[ $ts == *3N ]]; then echo ${ts/3N/000}
    elif [[ ${#ts} == 13 ]]; then echo $ts
    else echo "Unexpected timestamp value: $ts"; exit 1
    fi
}

nxf_env() {
    echo '============= task environment ============='
    env | sort | sed "s/\(.*\)AWS\(.*\)=\(.\{6\}\).*/\1AWS\2=\3xxxxxxxxxxxxx/"
    echo '============= task output =================='
}

nxf_kill() {
    declare -a children
    while read P PP;do
        children[$PP]+=" $P"
    done < <(ps -e -o pid= -o ppid=)

    kill_all() {
        [[ $1 != $$ ]] && kill $1 2>/dev/null || true
        for i in ${children[$1]:=}; do kill_all $i; done
    }

    kill_all $1
}

nxf_mktemp() {
    local base=${1:-/tmp}
    mkdir -p "$base"
    if [[ $(uname) = Darwin ]]; then mktemp -d $base/nxf.XXXXXXXXXX
    else TMPDIR="$base" mktemp -d -t nxf.XXXXXXXXXX
    fi
}

nxf_fs_copy() {
  local source=$1
  local target=$2
  local basedir=$(dirname $1)
  mkdir -p $target/$basedir
  cp -fRL $source $target/$basedir
}

nxf_fs_move() {
  local source=$1
  local target=$2
  local basedir=$(dirname $1)
  mkdir -p $target/$basedir
  mv -f $source $target/$basedir
}

nxf_fs_rsync() {
  rsync -rRl $1 $2
}

nxf_fs_rclone() {
  rclone copyto $1 $2/$1
}

nxf_fs_fcp() {
  fcp $1 $2/$1
}

on_exit() {
    local last_err=$?
    local exit_status=${nxf_main_ret:=0}
    [[ ${exit_status} -eq 0 && ${nxf_unstage_ret:=0} -ne 0 ]] && exit_status=${nxf_unstage_ret:=0}
    [[ ${exit_status} -eq 0 && ${last_err} -ne 0 ]] && exit_status=${last_err}
    printf -- $exit_status | nxf_s3_upload - s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f/.exitcode || true
    set +u
    rm -rf $NXF_SCRATCH || true
    exit $exit_status
}

on_term() {
    set +e
    [[ "$pid" ]] && nxf_kill $pid
}

nxf_launch() {
    /bin/bash -euo pipefail .command.run nxf_trace
}

nxf_stage() {
    true
    # stage input files
    downloads=(true)
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/9623535899389d571b22b4bfa09dcd/tih_rna_sample_00163_23H5VFLT4_s43.junction_annotation.log 1440/tih_rna_sample_00163_23H5VFLT4_s43.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/750606bce4214b15931ad424aed2c1/V4_0001_RNA_0005_23H5VFLT4_s10.fastp.html 175/V4_0001_RNA_0005_23H5VFLT4_s10.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/5d6374090482ee1a61eeca654493d4/tih_rna_sample_00422_23H5VFLT4_s47.Log.final.out 580/tih_rna_sample_00422_23H5VFLT4_s47.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/cc2f3efe8f10951155359dc434ca70/tih_rna_sample_00220_23H5VFLT4_s16.Log.final.out 651/tih_rna_sample_00220_23H5VFLT4_s16.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/dc2420d2c3ed7537979ce005da17e1/V4_0001_RNA_0005_23H5VFLT4_s43.attempt2.command.log 2092/V4_0001_RNA_0005_23H5VFLT4_s43.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ed/ea04c1ffb3f90c982a4368173621cb/V4_0001_RNA_0005_23H5VFLT4_s33_preseq_mqc.tsv 2268/V4_0001_RNA_0005_23H5VFLT4_s33_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/cf99eeafeee9d28d8630f7b0537b4d/tih_rna_sample_00124_23H5VFLT4_s31_trimmed_1_fastqc.zip 267/tih_rna_sample_00124_23H5VFLT4_s31_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/416ebcf5e3fa97394fa5f535f5bcdb/V4_0001_RNA_0005_23H5VFLT4_s33.read_distribution.txt 1790/V4_0001_RNA_0005_23H5VFLT4_s33.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/04a14982cf2f0c85e43b645c58e70c/tih_rna_sample_00402_23H5VFLT4_s28.lc_extrap.txt 2197/tih_rna_sample_00402_23H5VFLT4_s28.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/769cd58c6a76a812cf4f39d386a1c2/tih_rna_sample_00410_23H5VFLT4_s34_2_fastqc.zip 1050/tih_rna_sample_00410_23H5VFLT4_s34_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/eac78d0729c415cb89a63e8f8d5339/V4_0001_RNA_0005_23H5VFLT4_s23.bam_stat.txt 1488/V4_0001_RNA_0005_23H5VFLT4_s23.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/e7b72356b531e8913c3eab963df86f/V4_0001_RNA_0005_23H5VFLT4_s02.lc_extrap.txt 2202/V4_0001_RNA_0005_23H5VFLT4_s02.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/56ae72b4009926f120d55ee40c4278/V4_0001_RNA_0005_23H5VFLT4_s26.fastp.html 179/V4_0001_RNA_0005_23H5VFLT4_s26.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/5c2c0771b565ac77a4ed8c60a380d7/tih_rna_sample_00097_23H5VFLT4_s12_trimmed_1_fastqc.zip 343/tih_rna_sample_00097_23H5VFLT4_s12_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/ed2b37f3f28cab067896c8a6349118/V4_0001_RNA_0005_23H5VFLT4_s20.junctionSaturation_plot.r 1188/V4_0001_RNA_0005_23H5VFLT4_s20.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/373bdfaf0fcb6087e2e696c6de469e/V4_0001_RNA_0005_23H5VFLT4_s18.infer_experiment.txt 908/V4_0001_RNA_0005_23H5VFLT4_s18.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/c70ada1bcd064ae385ffe85695f17b/tih_rna_sample_00251_23H5VFLT4_s03_rseqc_extra_mqc.tsv 1663/tih_rna_sample_00251_23H5VFLT4_s03_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/0d6c255546c71b1375e5593681dd90/V4_0001_RNA_0005_23H5VFLT4_s14.bam_stat.txt 1483/V4_0001_RNA_0005_23H5VFLT4_s14.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/54857141d4cbbe9e2053af2dc7aeac/V4_0001_RNA_0005_23H5VFLT4_s17_kallisto_mqc.tsv 525/V4_0001_RNA_0005_23H5VFLT4_s17_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/dc52c44f305f1b60fda9687acfbe90/V4_0001_RNA_0005_23H5VFLT4_s25.pos.DupRate.xls 1603/V4_0001_RNA_0005_23H5VFLT4_s25.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/b85037c32c25baead1b48f400c27ac/tih_rna_sample_00396_23H5VFLT4_s26.Log.final.out 666/tih_rna_sample_00396_23H5VFLT4_s26.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/f144d095e26537a0c780c855f56e89/tih_rna_sample_00105_23H5VFLT4_s21_combined_fusions_arriba_visualisation.pdf 2307/tih_rna_sample_00105_23H5VFLT4_s21_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/8f462efb1b44f158491d243e7993e2/tih_rna_sample_00422_23H5VFLT4_s47.fastp.json 5/tih_rna_sample_00422_23H5VFLT4_s47.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/d09aacd6ffd782ecaef5ce78d77bc4/tih_rna_sample_00280_23H5VFLT4_s18_combined_fusions_arriba_visualisation.pdf 2362/tih_rna_sample_00280_23H5VFLT4_s18_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/fad02744587a4aea4404faef0c8ccf/tih_rna_sample_00251_23H5VFLT4_s03_trimmed_1_fastqc.zip 283/tih_rna_sample_00251_23H5VFLT4_s03_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/86/8715d2625183144e69aef9e134b1f5/tih_rna_sample_00090_23H5VFLT4_s32.pos.DupRate.xls 1614/tih_rna_sample_00090_23H5VFLT4_s32.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/6c353ab996137f7bdd62aa834718fd/V4_0001_RNA_0005_23H5VFLT4_s06_kallisto_mqc.tsv 570/V4_0001_RNA_0005_23H5VFLT4_s06_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/d3f9cedc080a818e8ef641ccb7bf86/V4_0001_RNA_0005_23H5VFLT4_s01_2_fastqc.zip 1128/V4_0001_RNA_0005_23H5VFLT4_s01_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/9ab999bc945d4c23f00ca16d35cc0c/V4_0001_RNA_0005_23H5VFLT4_s30_1_fastqc.zip 1011/V4_0001_RNA_0005_23H5VFLT4_s30_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/e955b7d526d47f9d789cd272ef59e3/V4_0001_RNA_0005_23H5VFLT4_s12.junctionSaturation_plot.r 1202/V4_0001_RNA_0005_23H5VFLT4_s12.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/fdf341ea3a1c8583b1b03e048ac86f/V4_0001_RNA_0005_23H5VFLT4_s30.fastp.html 125/V4_0001_RNA_0005_23H5VFLT4_s30.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/90c9e7f9eb89b872a61ba4b170adcf/tih_rna_sample_00388_23H5VFLT4_s22.bam_stat.txt 1534/tih_rna_sample_00388_23H5VFLT4_s22.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/0166df6e119a740e82e4b0bee1b0fe/tih_rna_sample_00426_23H5VFLT4_s48_combined_fusions_arriba_visualisation.pdf 2376/tih_rna_sample_00426_23H5VFLT4_s48_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/3a33c243e1bba335ac7cf7f38d1cdb/tih_rna_sample_00402_23H5VFLT4_s28.read_distribution.txt 1771/tih_rna_sample_00402_23H5VFLT4_s28.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/5fbc51a805066aeb16dbc3810c27aa/GM24385_0001_RNA_0001_23H5VFLT4_s16.ReadsPerGene.out.tab 729/GM24385_0001_RNA_0001_23H5VFLT4_s16.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/a7a623caaec26fb81a2d1c26b2d7f4/V4_0001_RNA_0005_23H5VFLT4_s41.fastp.json 30/V4_0001_RNA_0005_23H5VFLT4_s41.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/438350ea9655e318412c098d495d49/HD789_0002_RNA_0008_23H5VFLT4_s19.Log.final.out 660/HD789_0002_RNA_0008_23H5VFLT4_s19.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/8e184176072be741ac457c540bcbb7/V4_0001_RNA_0005_23H5VFLT4_s12.lc_extrap.txt 2148/V4_0001_RNA_0005_23H5VFLT4_s12.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/57a8920c8dcff3e42e88384b4888bb/V4_0001_RNA_0005_23H5VFLT4_s38_preseq_mqc.tsv 2271/V4_0001_RNA_0005_23H5VFLT4_s38_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/fc1e9c4887a58f20905c2e86e19c1f/V4_0001_RNA_0005_23H5VFLT4_s45_seqtool_mqc.tsv 1957/V4_0001_RNA_0005_23H5VFLT4_s45_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/a3edd1be42459ec207eff739a6626d/tih_rna_sample_00420_23H5VFLT4_s45_seqtool_mqc.tsv 1928/tih_rna_sample_00420_23H5VFLT4_s45_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/8ad51e8f08a99c7457ab5116607e3b/V4_0001_RNA_0005_23H5VFLT4_s09_rseqc_extra_mqc.tsv 1707/V4_0001_RNA_0005_23H5VFLT4_s09_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/a887e9e9b0535a889a335ac8807e75/V4_0001_RNA_0005_23H5VFLT4_s18.junctionSaturation_plot.r 1207/V4_0001_RNA_0005_23H5VFLT4_s18.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/0e266cca2777ace3cb0f41e2df81c5/tih_rna_sample_00400_23H5VFLT4_s27.junctionSaturation_plot.r 1224/tih_rna_sample_00400_23H5VFLT4_s27.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/6126b358d701e347f6e5b6fe2c5329/V4_0001_RNA_0005_23H5VFLT4_s13.log 431/V4_0001_RNA_0005_23H5VFLT4_s13.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/63/2799fdbe0b99da756350f925d6e317/tih_rna_sample_00097_23H5VFLT4_s12.bam_stat.txt 1479/tih_rna_sample_00097_23H5VFLT4_s12.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/9faa98ac5a5e772ed05fa9de6fcfae/tih_rna_sample_00163_23H5VFLT4_s43.md.bam.metrics 1901/tih_rna_sample_00163_23H5VFLT4_s43.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/67fd87ef6def66608ce8aa40355eb2/tih_rna_sample_00127_23H5VFLT4_s08_trimmed_2_fastqc.zip 222/tih_rna_sample_00127_23H5VFLT4_s08_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/d83e738c0df54461bb51bba53a1643/tih_rna_sample_00127_23H5VFLT4_s08.log 396/tih_rna_sample_00127_23H5VFLT4_s08.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9f/537114d677dddd844f70490d5eab3b/V4_0001_RNA_0005_23H5VFLT4_s05_combined_fusions_arriba_visualisation.pdf 2384/V4_0001_RNA_0005_23H5VFLT4_s05_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/7751037c93a00a6b51a06a5030156f/V4_0001_RNA_0005_23H5VFLT4_s23.Log.final.out 642/V4_0001_RNA_0005_23H5VFLT4_s23.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/688536101cdfd6b596f15ce54d4814/tih_rna_sample_00400_23H5VFLT4_s27.read_distribution.txt 1820/tih_rna_sample_00400_23H5VFLT4_s27.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/4de67ef06fd363c9c22615cc91ae89/tih_rna_sample_00377_23H5VFLT4_s23_rseqc_extra_mqc.tsv 1693/tih_rna_sample_00377_23H5VFLT4_s23_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/a688b443ff751f4bf738e421bcf559/tih_rna_sample_00104_23H5VFLT4_s20.fastp.html 105/tih_rna_sample_00104_23H5VFLT4_s20.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/97/028932472f90c48ae68562d79e403d/V4_0001_RNA_0005_23H5VFLT4_s21.infer_experiment.txt 900/V4_0001_RNA_0005_23H5VFLT4_s21.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/427cc132c78b434659a24d9be31098/tih_rna_sample_00378_23H5VFLT4_s24_2_fastqc.zip 972/tih_rna_sample_00378_23H5VFLT4_s24_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/faed03db157820f8f867ca05aab7be/V4_0001_RNA_0005_23H5VFLT4_s44_trimmed_1_fastqc.zip 309/V4_0001_RNA_0005_23H5VFLT4_s44_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/865cf36f99d373b478149082c53d36/V4_0001_RNA_0005_23H5VFLT4_s41.junction_annotation.log 1379/V4_0001_RNA_0005_23H5VFLT4_s41.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/74a2823324c9ac02e95c58d087b988/tih_rna_sample_00116_23H5VFLT4_s36.lc_extrap.txt 2138/tih_rna_sample_00116_23H5VFLT4_s36.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/4bcfa0d998e42616f7a1e1bd6005bb/tih_rna_sample_00394_23H5VFLT4_s25.fastp.json 14/tih_rna_sample_00394_23H5VFLT4_s25.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/40a5f4fb9fdc1462b1f9669f5685ad/tih_rna_sample_00407_23H5VFLT4_s33.Log.final.out 615/tih_rna_sample_00407_23H5VFLT4_s33.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/3ce3abd6cf64067500d59c3f267527/tih_rna_sample_00088_23H5VFLT4_s02.log 426/tih_rna_sample_00088_23H5VFLT4_s02.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/1611e612de2a72d4d0b522c005bebb/GM24385_0001_RNA_0001_23H5VFLT4_s08.ReadsPerGene.out.tab 737/GM24385_0001_RNA_0001_23H5VFLT4_s08.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/22d8cf40b81b99df6e528b30bb7801/V4_0001_RNA_0005_23H5VFLT4_s42.pos.DupRate.xls 1570/V4_0001_RNA_0005_23H5VFLT4_s42.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/3620dd91570ee8644fb8b4e1634252/V4_0001_RNA_0005_23H5VFLT4_s14.infer_experiment.txt 895/V4_0001_RNA_0005_23H5VFLT4_s14.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/a7e9e293589d468996fb3655ca5bb0/tih_rna_sample_00394_23H5VFLT4_s25_trimmed_1_fastqc.zip 209/tih_rna_sample_00394_23H5VFLT4_s25_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a5/3cc447fd28e50c8a55732a08848a6a/tih_rna_sample_00403_23H5VFLT4_s29.Log.final.out 609/tih_rna_sample_00403_23H5VFLT4_s29.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/0ffc227ec4d0ee34feeaa85c27384f/tih_rna_sample_00272_23H5VFLT4_s09_trimmed_2_fastqc.zip 374/tih_rna_sample_00272_23H5VFLT4_s09_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/ab0904ec9a17714df28d18cc5e84c8/tih_rna_sample_00235_23H5VFLT4_s07.ReadsPerGene.out.tab 706/tih_rna_sample_00235_23H5VFLT4_s07.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/b5caeb12171c8de24c42ea8170c05e/V4_0001_RNA_0005_23H5VFLT4_s36_2_fastqc.zip 1048/V4_0001_RNA_0005_23H5VFLT4_s36_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/ac384c9965da0ed7592ee689209418/tih_rna_sample_00127_23H5VFLT4_s08_rseqc_extra_mqc.tsv 1644/tih_rna_sample_00127_23H5VFLT4_s08_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/35e36db04e0d9e4286cccad925158a/V4_0001_RNA_0005_23H5VFLT4_s39.read_distribution.txt 1784/V4_0001_RNA_0005_23H5VFLT4_s39.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/ff4f824320a1869b3571e1705031ab/V4_0001_RNA_0005_23H5VFLT4_s44.Log.final.out 640/V4_0001_RNA_0005_23H5VFLT4_s44.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/6f5f66c3f73ffa09507d11dfb88aea/tih_rna_sample_00089_23H5VFLT4_s39_2_fastqc.zip 1134/tih_rna_sample_00089_23H5VFLT4_s39_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/5b345e065ae23f91c18de0424aa43c/V4_0001_RNA_0005_23H5VFLT4_s28.ReadsPerGene.out.tab 688/V4_0001_RNA_0005_23H5VFLT4_s28.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/8ef7647363141b518652ea81f66a17/V4_0001_RNA_0005_23H5VFLT4_s37.bam_stat.txt 1465/V4_0001_RNA_0005_23H5VFLT4_s37.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/f15bbc09de0afe9548d0691cdd6389/tih_rna_sample_00104_23H5VFLT4_s20.lc_extrap.txt 2119/tih_rna_sample_00104_23H5VFLT4_s20.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/40edee0a785f72d4e3e815b5ca890f/tih_rna_sample_00261_23H5VFLT4_s06_trimmed_2_fastqc.zip 332/tih_rna_sample_00261_23H5VFLT4_s06_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/35039b268eb655d3db18cf1773fc3d/tih_rna_sample_00420_23H5VFLT4_s45_rseqc_extra_mqc.tsv 1649/tih_rna_sample_00420_23H5VFLT4_s45_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/6acd0007799e706fbee31d541c68f9/V4_0001_RNA_0005_23H5VFLT4_s26.lc_extrap.txt 2168/V4_0001_RNA_0005_23H5VFLT4_s26.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/56911d6bc4829a8efcba82281f3b97/V4_0001_RNA_0005_23H5VFLT4_s23_trimmed_2_fastqc.zip 328/V4_0001_RNA_0005_23H5VFLT4_s23_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ed/743591414ee4529c5c282cc43e3ef7/tih_rna_sample_00272_23H5VFLT4_s09.bam_stat.txt 1514/tih_rna_sample_00272_23H5VFLT4_s09.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/491cabbd479a52b2fb77bb606e74d0/tih_rna_sample_00426_23H5VFLT4_s48.bam_stat.txt 1493/tih_rna_sample_00426_23H5VFLT4_s48.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/8eed0ca95dd07ca9b6a123856aacc0/V4_0001_RNA_0005_23H5VFLT4_s27.read_distribution.txt 1822/V4_0001_RNA_0005_23H5VFLT4_s27.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/80/110bc6182cc35093320976f22cea7b/V4_0001_RNA_0005_23H5VFLT4_s44.junctionSaturation_plot.r 1221/V4_0001_RNA_0005_23H5VFLT4_s44.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/0338a3f24c92c36c46bec415d306a8/tih_rna_sample_00394_23H5VFLT4_s25.pos.DupRate.xls 1547/tih_rna_sample_00394_23H5VFLT4_s25.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/af2064156392a7e3d2f9ed63dc9905/tih_rna_sample_00248_23H5VFLT4_s01.fastp.json 91/tih_rna_sample_00248_23H5VFLT4_s01.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/65a210a9ed722ff28b3fac8a4fccef/V4_0001_RNA_0005_23H5VFLT4_s34_preseq_mqc.tsv 2252/V4_0001_RNA_0005_23H5VFLT4_s34_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/1aef4f1fc1c8d5eb3e7044320f4796/GM24385_0001_RNA_0001_23H5VFLT4_s48.log 401/GM24385_0001_RNA_0001_23H5VFLT4_s48.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/f4cb9934a3a084f9c3e855090f7e23/tih_rna_sample_00272_23H5VFLT4_s09.Log.final.out 673/tih_rna_sample_00272_23H5VFLT4_s09.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/38e9ca0691f2b7bc2f0bd9e4b05a8a/V4_0001_RNA_0001_23H5VFLT4_s13.log 469/V4_0001_RNA_0001_23H5VFLT4_s13.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/bb510b6933e57d1865a5fdb31a7442/V4_0001_RNA_0005_23H5VFLT4_s28_2_fastqc.zip 990/V4_0001_RNA_0005_23H5VFLT4_s28_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/039160d57c029dd8dab05c0571475a/V4_0001_RNA_0005_23H5VFLT4_s17.fastp.json 45/V4_0001_RNA_0005_23H5VFLT4_s17.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/44c9759d88ce00d7c101a889373134/GM24385_0001_RNA_0001_23H5VFLT4_s40.fastp.html 139/GM24385_0001_RNA_0001_23H5VFLT4_s40.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/2a1b6fb64dcc5129edc0c3333846d9/tih_rna_sample_00097_23H5VFLT4_s12.pos.DupRate.xls 1579/tih_rna_sample_00097_23H5VFLT4_s12.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/c30ae90dfc537e8d00ae94fab8bbe9/V4_0001_RNA_0005_23H5VFLT4_s11_trimmed_2_fastqc.zip 340/V4_0001_RNA_0005_23H5VFLT4_s11_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9b/1173dc9e3017ceca8b756fa7d81eaf/tih_rna_sample_00425_23H5VFLT4_s46_preseq_mqc.tsv 2281/tih_rna_sample_00425_23H5VFLT4_s46_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/3498bf043583906bebb48a25d8c5f5/V4_0001_RNA_0001_23H5VFLT4_s13_1_fastqc.zip 1123/V4_0001_RNA_0001_23H5VFLT4_s13_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/41aa59297a69bc45b466ea96894eb2/V4_0001_RNA_0005_23H5VFLT4_s31.log 475/V4_0001_RNA_0005_23H5VFLT4_s31.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/4a4de85c3540edfb1da86911cf820b/tih_rna_sample_00104_23H5VFLT4_s20.junctionSaturation_plot.r 1162/tih_rna_sample_00104_23H5VFLT4_s20.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/ae7ef8604765681e606e142377e33e/tih_rna_sample_00403_23H5VFLT4_s29_trimmed_1_fastqc.zip 279/tih_rna_sample_00403_23H5VFLT4_s29_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/86/25012954a745565ba4547414a35578/V4_0001_RNA_0005_23H5VFLT4_s10.read_distribution.txt 1794/V4_0001_RNA_0005_23H5VFLT4_s10.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/bea523231cc6668b1888957bda2c84/tih_rna_sample_00096_23H5VFLT4_s11_combined_fusions_arriba_visualisation.pdf 2351/tih_rna_sample_00096_23H5VFLT4_s11_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/1f8a7bc3fc96e39f49caa14fe317cb/V4_0001_RNA_0005_23H5VFLT4_s05.attempt1.command.log 2104/V4_0001_RNA_0005_23H5VFLT4_s05.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/3bf35d199d23b2d425a125c7d2b78d/GM24385_0001_RNA_0001_23H5VFLT4_s32.infer_experiment.txt 888/GM24385_0001_RNA_0001_23H5VFLT4_s32.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/5ba21622cf0bac8106d80ce45944d9/GM24385_0001_RNA_0001_23H5VFLT4_s08_trimmed_1_fastqc.zip 341/GM24385_0001_RNA_0001_23H5VFLT4_s08_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/a3db210860ead4a67ab8fa190e4a95/tih_rna_sample_00274_23H5VFLT4_s14.inner_distance_freq.txt 777/tih_rna_sample_00274_23H5VFLT4_s14.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/a88a5498cdf69de370814a2a0eccfd/tih_rna_sample_00220_23H5VFLT4_s16.inner_distance_freq.txt 844/tih_rna_sample_00220_23H5VFLT4_s16.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/774f4c08efa7e8544316a1bdb7a625/V4_0001_RNA_0005_23H5VFLT4_s04.junction_annotation.log 1405/V4_0001_RNA_0005_23H5VFLT4_s04.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/b5972e48bf872792ba6d3a7916438a/tih_rna_sample_00274_23H5VFLT4_s14_2_fastqc.zip 982/tih_rna_sample_00274_23H5VFLT4_s14_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/8e7ae7a34978687e29a665aaaba52e/V4_0001_RNA_0005_23H5VFLT4_s07.pos.DupRate.xls 1559/V4_0001_RNA_0005_23H5VFLT4_s07.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/c09fac42cd716cb31d11e18e18496d/tih_rna_sample_00235_23H5VFLT4_s07.attempt1.command.log 2048/tih_rna_sample_00235_23H5VFLT4_s07.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/23/e99c9089d36e5d767cb9ea3fed4d3c/V4_0001_RNA_0005_23H5VFLT4_s42.ReadsPerGene.out.tab 710/V4_0001_RNA_0005_23H5VFLT4_s42.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/58d60281c561c95a112ddfbeefd8a2/tih_rna_sample_00377_23H5VFLT4_s23.lc_extrap.txt 2190/tih_rna_sample_00377_23H5VFLT4_s23.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/3a47890796b86e6ec8f5160a1dfaf3/V4_0001_RNA_0005_23H5VFLT4_s03.fastp.json 78/V4_0001_RNA_0005_23H5VFLT4_s03.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/7d80a557861320ae3170cc0f044b80/tih_rna_sample_00402_23H5VFLT4_s28_trimmed_1_fastqc.zip 317/tih_rna_sample_00402_23H5VFLT4_s28_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/9e49354511ab78de490787d7636444/V4_0001_RNA_0005_23H5VFLT4_s47.Log.final.out 657/V4_0001_RNA_0005_23H5VFLT4_s47.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/15b2e1352b9049aecafdff3b45c175/V4_0001_RNA_0005_23H5VFLT4_s47_contamination_mqc.tsv 1322/V4_0001_RNA_0005_23H5VFLT4_s47_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/b193be4a991d682680d73e8516ce49/NTC_0001_0001_23H5VFLT4_s15.pos.DupRate.xls 1539/NTC_0001_0001_23H5VFLT4_s15.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/039226709bce318beb77026f44a93a/tih_rna_sample_00117_23H5VFLT4_s37.inner_distance_freq.txt 783/tih_rna_sample_00117_23H5VFLT4_s37.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/de/9cb875e38378f0db3c55c87a82e949/V4_0001_RNA_0005_23H5VFLT4_s33.Log.final.out 643/V4_0001_RNA_0005_23H5VFLT4_s33.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/ecb2e1b3679c05c2c253c66050b64f/GM24385_0001_RNA_0001_23H5VFLT4_s32_preseq_mqc.tsv 2235/GM24385_0001_RNA_0001_23H5VFLT4_s32_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/6f4a8dd95a949e21fe0e6cbcacd603/tih_rna_sample_00218_23H5VFLT4_s10.attempt2.command.log 2112/tih_rna_sample_00218_23H5VFLT4_s10.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/997dbc89c6febd9b6d32cdbb82e05c/V4_0001_RNA_0005_23H5VFLT4_s39_1_fastqc.zip 1005/V4_0001_RNA_0005_23H5VFLT4_s39_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/79e0c96501f6c914166055e93bb7d4/V4_0001_RNA_0005_23H5VFLT4_s29_contamination_mqc.tsv 1302/V4_0001_RNA_0005_23H5VFLT4_s29_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/880df85ddb08e4c76a7cd920146b0d/tih_rna_sample_00121_23H5VFLT4_s41.infer_experiment.txt 925/tih_rna_sample_00121_23H5VFLT4_s41.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/c7ff26bec51ea214b7bf581fe1222e/tih_rna_sample_00419_23H5VFLT4_s44_preseq_mqc.tsv 2301/tih_rna_sample_00419_23H5VFLT4_s44_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/2ed3cbe86472aa6df366ac0dd03eb9/V4_0001_RNA_0005_23H5VFLT4_s46.read_distribution.txt 1746/V4_0001_RNA_0005_23H5VFLT4_s46.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/65317c0d7e01654d97a67aea9d5671/tih_rna_sample_00089_23H5VFLT4_s39.ReadsPerGene.out.tab 767/tih_rna_sample_00089_23H5VFLT4_s39.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/86/3fd6c8c13daf2aba1df2870e88e706/V4_0001_RNA_0005_23H5VFLT4_s18.md.bam.metrics 1918/V4_0001_RNA_0005_23H5VFLT4_s18.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/ae5c11aff5b81cd6377e6c6a249f21/V4_0001_RNA_0005_23H5VFLT4_s14_trimmed_2_fastqc.zip 292/V4_0001_RNA_0005_23H5VFLT4_s14_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/61423f940bf00e1c715e24d1c137c3/tih_rna_sample_00248_23H5VFLT4_s01.junction_annotation.log 1426/tih_rna_sample_00248_23H5VFLT4_s01.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/14a74d2a889c7acac553948282f72d/tih_rna_sample_00251_23H5VFLT4_s03.Log.final.out 617/tih_rna_sample_00251_23H5VFLT4_s03.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/ea8631a9e7b283ebef3f51efa5ce0c/tih_rna_sample_00414_23H5VFLT4_s40.junctionSaturation_plot.r 1194/tih_rna_sample_00414_23H5VFLT4_s40.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/73af072dd1d3f0e338933ee980e924/tih_rna_sample_00414_23H5VFLT4_s40_contamination_mqc.tsv 1304/tih_rna_sample_00414_23H5VFLT4_s40_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/338e5de2253ffda7057f92e4900439/V4_0001_RNA_0005_23H5VFLT4_s23.md.bam.metrics 1870/V4_0001_RNA_0005_23H5VFLT4_s23.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/7434e716eccd1c9dfc023d6f945523/V4_0001_RNA_0005_23H5VFLT4_s17.Log.final.out 621/V4_0001_RNA_0005_23H5VFLT4_s17.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/f12c012b2ef5bbe9c4c5b8d3d011a0/tih_rna_sample_00394_23H5VFLT4_s25.Log.final.out 586/tih_rna_sample_00394_23H5VFLT4_s25.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/2b80a27119edf7eaf76d74a4315090/V4_0001_RNA_0001_23H5VFLT4_s13.fastp.html 162/V4_0001_RNA_0001_23H5VFLT4_s13.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/aec0155a6099d9910c33c60e449e86/V4_0001_RNA_0005_23H5VFLT4_s04_trimmed_2_fastqc.zip 362/V4_0001_RNA_0005_23H5VFLT4_s04_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/ca57326eeb3e113c80fd7004fd51d0/tih_rna_sample_00118_23H5VFLT4_s38_seqtool_mqc.tsv 2007/tih_rna_sample_00118_23H5VFLT4_s38_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/f3050094359886b50d704354e70323/tih_rna_sample_00414_23H5VFLT4_s40.inner_distance_freq.txt 818/tih_rna_sample_00414_23H5VFLT4_s40.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/24d6fafeebef88e15fdf2f0dec8bca/tih_rna_sample_00124_23H5VFLT4_s31.pos.DupRate.xls 1630/tih_rna_sample_00124_23H5VFLT4_s31.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/75651bae7ea23341dc8f48a5edd77b/V4_0001_RNA_0005_23H5VFLT4_s25_combined_fusions_arriba_visualisation.pdf 2344/V4_0001_RNA_0005_23H5VFLT4_s25_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/2714b7b9f6fa93a56188c10b89d09f/V4_0001_RNA_0005_23H5VFLT4_s12_contamination_mqc.tsv 1337/V4_0001_RNA_0005_23H5VFLT4_s12_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/c49fa31f6e1ce7cfcfb0d70e1d3d00/tih_rna_sample_00121_23H5VFLT4_s41.Log.final.out 637/tih_rna_sample_00121_23H5VFLT4_s41.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/67/d826050fec75bfc02b6eb4408cc027/tih_rna_sample_00426_23H5VFLT4_s48.infer_experiment.txt 950/tih_rna_sample_00426_23H5VFLT4_s48.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/dd7ee67c060d011bf3e4cc3d4f8422/tih_rna_sample_00410_23H5VFLT4_s34.md.bam.metrics 1851/tih_rna_sample_00410_23H5VFLT4_s34.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/f702f853a42a793197984fdc3e95f2/V4_0001_RNA_0005_23H5VFLT4_s02_1_fastqc.zip 1093/V4_0001_RNA_0005_23H5VFLT4_s02_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/8062a4c5a607dfb0e49a5ffcd82820/V4_0001_RNA_0005_23H5VFLT4_s38.lc_extrap.txt 2175/V4_0001_RNA_0005_23H5VFLT4_s38.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/2c1ccb5863f764906c8a791678c789/V4_0001_RNA_0005_23H5VFLT4_s26.junctionSaturation_plot.r 1243/V4_0001_RNA_0005_23H5VFLT4_s26.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/8fe3da72360722805a4206c6180271/tih_rna_sample_00272_23H5VFLT4_s09_rseqc_extra_mqc.tsv 1706/tih_rna_sample_00272_23H5VFLT4_s09_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e22d18bc0f85205aaf04d87da962f9/V4_0001_RNA_0005_23H5VFLT4_s46.lc_extrap.txt 2127/V4_0001_RNA_0005_23H5VFLT4_s46.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/52ab6f3b283a446533a81334ac904e/V4_0001_RNA_0005_23H5VFLT4_s09.ReadsPerGene.out.tab 735/V4_0001_RNA_0005_23H5VFLT4_s09.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/16/b8c9ce4547086190368182bb3c5f7e/tih_rna_sample_00407_23H5VFLT4_s33.bam_stat.txt 1470/tih_rna_sample_00407_23H5VFLT4_s33.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/61261ff680be174befe606022bb0f2/V4_0001_RNA_0005_23H5VFLT4_s35.inner_distance_freq.txt 790/V4_0001_RNA_0005_23H5VFLT4_s35.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/07300fdbba38733422732b44ea5ef4/GM24385_0001_RNA_0001_23H5VFLT4_s40.log 412/GM24385_0001_RNA_0001_23H5VFLT4_s40.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/c43d9625c6520f4156fa93841b4e6e/V4_0001_RNA_0005_23H5VFLT4_s11_combined_fusions_arriba_visualisation.pdf 2350/V4_0001_RNA_0005_23H5VFLT4_s11_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/52c10568a57351928220e534747364/tih_rna_sample_00089_23H5VFLT4_s39.log 440/tih_rna_sample_00089_23H5VFLT4_s39.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8e/e420d4a6b33f8615c0760f689dfcf7/tih_rna_sample_00235_23H5VFLT4_s07_2_fastqc.zip 1148/tih_rna_sample_00235_23H5VFLT4_s07_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/637b175b694fedce0f1fff558084ee/tih_rna_sample_00396_23H5VFLT4_s26_preseq_mqc.tsv 2258/tih_rna_sample_00396_23H5VFLT4_s26_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/22b464ac0e31c0f81977f6af6c57e6/tih_rna_sample_00425_23H5VFLT4_s46.Log.final.out 631/tih_rna_sample_00425_23H5VFLT4_s46.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/cf99eeafeee9d28d8630f7b0537b4d/tih_rna_sample_00124_23H5VFLT4_s31_trimmed_2_fastqc.zip 268/tih_rna_sample_00124_23H5VFLT4_s31_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/9a0ee0040fb12974e8e09edf53da1b/V4_0001_RNA_0005_23H5VFLT4_s22.inner_distance_freq.txt 796/V4_0001_RNA_0005_23H5VFLT4_s22.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/5ff15a9e6b4c9bc571a8acfbf696eb/tih_rna_sample_00402_23H5VFLT4_s28_rseqc_extra_mqc.tsv 1729/tih_rna_sample_00402_23H5VFLT4_s28_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/3123cd42cc055b2d28f20f8541474f/tih_rna_sample_00419_23H5VFLT4_s44.inner_distance_freq.txt 819/tih_rna_sample_00419_23H5VFLT4_s44.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/16/1dad734494642107a0f7bf97e8e3cd/V4_0001_RNA_0005_23H5VFLT4_s37.ReadsPerGene.out.tab 707/V4_0001_RNA_0005_23H5VFLT4_s37.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/4803ab6985343a8c37177f936affa3/V4_0001_RNA_0005_23H5VFLT4_s31.read_distribution.txt 1786/V4_0001_RNA_0005_23H5VFLT4_s31.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/5d53d0926f3a5c52ebf2778ac32ead/V4_0001_RNA_0005_23H5VFLT4_s20_contamination_mqc.tsv 1325/V4_0001_RNA_0005_23H5VFLT4_s20_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/d404db4d8b0a7d0591edf39ea106c3/HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.json 65/HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/355f27feed85e38d5974fe8048c7da/V4_0001_RNA_0005_23H5VFLT4_s26_contamination_mqc.tsv 1319/V4_0001_RNA_0005_23H5VFLT4_s26_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/9b1088a2039948479b85e4e15aab56/V4_0001_RNA_0005_23H5VFLT4_s15.read_distribution.txt 1815/V4_0001_RNA_0005_23H5VFLT4_s15.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/ec5ea61b3b867d1872445794f18cca/tih_rna_sample_00388_23H5VFLT4_s22.attempt1.command.log 2097/tih_rna_sample_00388_23H5VFLT4_s22.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a8/b615ff12d49cf3bdc4e4315ba78aee/HD789_0002_RNA_0008_23H5VFLT4_s19.infer_experiment.txt 957/HD789_0002_RNA_0008_23H5VFLT4_s19.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e7/415d510adfc590e1ce4886b4b44914/V4_0001_RNA_0005_23H5VFLT4_s07.attempt1.command.log 2041/V4_0001_RNA_0005_23H5VFLT4_s07.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/cb943b6bf75a0c2d442554524df68f/tih_rna_sample_00272_23H5VFLT4_s09.junctionSaturation_plot.r 1240/tih_rna_sample_00272_23H5VFLT4_s09.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/68/ff755b25fc4dfee944873cdf9ccb8d/tih_rna_sample_00410_23H5VFLT4_s34.junctionSaturation_plot.r 1247/tih_rna_sample_00410_23H5VFLT4_s34.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b7/ef98bb4ba1d4dc6aaf0d490b437476/V4_0001_RNA_0005_23H5VFLT4_s31_rseqc_extra_mqc.tsv 1722/V4_0001_RNA_0005_23H5VFLT4_s31_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/56911d6bc4829a8efcba82281f3b97/V4_0001_RNA_0005_23H5VFLT4_s23_trimmed_1_fastqc.zip 327/V4_0001_RNA_0005_23H5VFLT4_s23_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/7751037c93a00a6b51a06a5030156f/V4_0001_RNA_0005_23H5VFLT4_s23.ReadsPerGene.out.tab 738/V4_0001_RNA_0005_23H5VFLT4_s23.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/a5fefde6af5fa1f7068c93d3bbc807/V4_0001_RNA_0005_23H5VFLT4_s27_trimmed_1_fastqc.zip 275/V4_0001_RNA_0005_23H5VFLT4_s27_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/3192326c296776944e0fe444a4daba/GM24385_0001_RNA_0001_23H5VFLT4_s08.bam_stat.txt 1484/GM24385_0001_RNA_0001_23H5VFLT4_s08.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/f2949373e528bc00b4a83488ee8b93/tih_rna_sample_00163_23H5VFLT4_s43.read_distribution.txt 1814/tih_rna_sample_00163_23H5VFLT4_s43.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/e9684863ecb0fe9a6da978eebc31df/V4_0001_RNA_0005_23H5VFLT4_s19.lc_extrap.txt 2183/V4_0001_RNA_0005_23H5VFLT4_s19.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/b4ac9f79261f0a51b403ed25936bd6/GM24385_0001_RNA_0001_23H5VFLT4_s40_combined_fusions_arriba_visualisation.pdf 2319/GM24385_0001_RNA_0001_23H5VFLT4_s40_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/538f03c5696322af0302e4342979da/GM24385_0001_RNA_0001_23H5VFLT4_s08_kallisto_mqc.tsv 558/GM24385_0001_RNA_0001_23H5VFLT4_s08_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/529ca0731f889336bdde8e7dff6971/tih_rna_sample_00378_23H5VFLT4_s24_seqtool_mqc.tsv 1926/tih_rna_sample_00378_23H5VFLT4_s24_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/59e4fe55401142921ce0faf2d4c7e3/V4_0001_RNA_0005_23H5VFLT4_s25.read_distribution.txt 1803/V4_0001_RNA_0005_23H5VFLT4_s25.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/823fe54337eaacefc725b20348c2a6/V4_0001_RNA_0001_23H5VFLT4_s13_trimmed_2_fastqc.zip 358/V4_0001_RNA_0001_23H5VFLT4_s13_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/4e4cf180d1346b4ab6a60b916fd0a4/GM24385_0001_RNA_0001_23H5VFLT4_s16.attempt1.command.log 2073/GM24385_0001_RNA_0001_23H5VFLT4_s16.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e13c2951e8748aa49c8088b4ff804b/V4_0001_RNA_0005_23H5VFLT4_s19.Log.final.out 625/V4_0001_RNA_0005_23H5VFLT4_s19.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/6f556dc9d7a4efe723650cc5697f44/tih_rna_sample_00252_23H5VFLT4_s04.ReadsPerGene.out.tab 741/tih_rna_sample_00252_23H5VFLT4_s04.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/aabd2bb31771b014df41a63b900ec8/tih_rna_sample_00235_23H5VFLT4_s07.fastp.html 147/tih_rna_sample_00235_23H5VFLT4_s07.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/f5ad2ace0e2022dda758d1ebe16dbd/V4_0001_RNA_0005_23H5VFLT4_s06_preseq_mqc.tsv 2251/V4_0001_RNA_0005_23H5VFLT4_s06_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/05297596f194cb1fd4d368799946f3/tih_rna_sample_00388_23H5VFLT4_s22.junctionSaturation_plot.r 1241/tih_rna_sample_00388_23H5VFLT4_s22.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b7/d9a06d0c3d42641beb41a79c524b2e/V4_0001_RNA_0005_23H5VFLT4_s28_preseq_mqc.tsv 2229/V4_0001_RNA_0005_23H5VFLT4_s28_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/2fea974eccc75e19ababcacc1b117d/tih_rna_sample_00420_23H5VFLT4_s45_kallisto_mqc.tsv 488/tih_rna_sample_00420_23H5VFLT4_s45_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/3ba21502d99fe72faa973c9647985f/V4_0001_RNA_0005_23H5VFLT4_s03.junction_annotation.log 1417/V4_0001_RNA_0005_23H5VFLT4_s03.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/f198f5d1c5be716bf41152e20eba14/V4_0001_RNA_0005_23H5VFLT4_s47_1_fastqc.zip 1073/V4_0001_RNA_0005_23H5VFLT4_s47_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/bdf91a425304e90fbfee148e8f9b1c/tih_rna_sample_00118_23H5VFLT4_s38_1_fastqc.zip 1089/tih_rna_sample_00118_23H5VFLT4_s38_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/a7a623caaec26fb81a2d1c26b2d7f4/V4_0001_RNA_0005_23H5VFLT4_s41.fastp.html 126/V4_0001_RNA_0005_23H5VFLT4_s41.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/69092e2ea4acd7b7ba2bf3f052ce24/V4_0001_RNA_0005_23H5VFLT4_s20.ReadsPerGene.out.tab 715/V4_0001_RNA_0005_23H5VFLT4_s20.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/90794c7431805dc5cd313c048c66cc/GM24385_0001_RNA_0001_23H5VFLT4_s48.pos.DupRate.xls 1551/GM24385_0001_RNA_0001_23H5VFLT4_s48.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/4ff888848454f10c3e37d2511b56d5/tih_rna_sample_00272_23H5VFLT4_s09_1_fastqc.zip 1083/tih_rna_sample_00272_23H5VFLT4_s09_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/b0a80a823aabceaaa6b21931e739c2/tih_rna_sample_00090_23H5VFLT4_s32_2_fastqc.zip 1114/tih_rna_sample_00090_23H5VFLT4_s32_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b4/e698b9bbc3c022baae30220cde1766/V4_0001_RNA_0005_23H5VFLT4_s09.md.bam.metrics 1873/V4_0001_RNA_0005_23H5VFLT4_s09.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/8ca678e74eda78e4626df65c0f9e64/V4_0001_RNA_0005_23H5VFLT4_s13_kallisto_mqc.tsv 527/V4_0001_RNA_0005_23H5VFLT4_s13_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/007ea6754d393406178a5d0da0d55e/tih_rna_sample_00400_23H5VFLT4_s27.inner_distance_freq.txt 849/tih_rna_sample_00400_23H5VFLT4_s27.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/5c96c60487bebd9dd81b3485f0ba77/tih_rna_sample_00097_23H5VFLT4_s12_preseq_mqc.tsv 2278/tih_rna_sample_00097_23H5VFLT4_s12_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/417c5d6fb843e5c51e3399a35900e8/V4_0001_RNA_0005_23H5VFLT4_s01.ReadsPerGene.out.tab 748/V4_0001_RNA_0005_23H5VFLT4_s01.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/a09c4f35918a935567cdb54808c6e3/tih_rna_sample_00124_23H5VFLT4_s31.fastp.json 36/tih_rna_sample_00124_23H5VFLT4_s31.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/41ac911bf1170838baf6ff33d5f975/tih_rna_sample_00097_23H5VFLT4_s12.fastp.json 73/tih_rna_sample_00097_23H5VFLT4_s12.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/24b10586981f46d55fb6d62c07ab95/tih_rna_sample_00419_23H5VFLT4_s44_kallisto_mqc.tsv 534/tih_rna_sample_00419_23H5VFLT4_s44_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/4295d3675b659b7ede07e97700171b/tih_rna_sample_00280_23H5VFLT4_s18.read_distribution.txt 1818/tih_rna_sample_00280_23H5VFLT4_s18.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/d327ceb8e7d0f89fbc2a470b7b6026/V4_0001_RNA_0005_23H5VFLT4_s39_combined_fusions_arriba_visualisation.pdf 2323/V4_0001_RNA_0005_23H5VFLT4_s39_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/26/da16a87b2037b4ffd52cba3a46455c/V4_0001_RNA_0005_23H5VFLT4_s37_trimmed_2_fastqc.zip 290/V4_0001_RNA_0005_23H5VFLT4_s37_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/f090918e21dcd15ed7a7d225e21648/tih_rna_sample_00115_23H5VFLT4_s35.read_distribution.txt 1747/tih_rna_sample_00115_23H5VFLT4_s35.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/d73b56b0b3d91cbf4f43de754e5227/tih_rna_sample_00396_23H5VFLT4_s26.junction_annotation.log 1420/tih_rna_sample_00396_23H5VFLT4_s26.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/e9d7880e6bdf3088ec5a6b905c356f/tih_rna_sample_00419_23H5VFLT4_s44.read_distribution.txt 1826/tih_rna_sample_00419_23H5VFLT4_s44.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/dc12b782e9d089be1ac2f38b0e98c1/V4_0001_RNA_0005_23H5VFLT4_s17_trimmed_1_fastqc.zip 257/V4_0001_RNA_0005_23H5VFLT4_s17_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/1a78b8a3780b6eb6a979cb7c4bfc4a/V4_0001_RNA_0005_23H5VFLT4_s05.Log.final.out 634/V4_0001_RNA_0005_23H5VFLT4_s05.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/0247e2f370dad3e33ce7eb5648bc2d/V4_0001_RNA_0005_23H5VFLT4_s20_kallisto_mqc.tsv 542/V4_0001_RNA_0005_23H5VFLT4_s20_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/96dda4bf9cd96a9706bad968b46f40/V4_0001_RNA_0005_23H5VFLT4_s36.infer_experiment.txt 907/V4_0001_RNA_0005_23H5VFLT4_s36.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/10/b83b205bc73c29096a268a5cd16f2e/tih_rna_sample_00252_23H5VFLT4_s04.bam_stat.txt 1517/tih_rna_sample_00252_23H5VFLT4_s04.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/dbd2bf000c3a3eb30f9ff1ee664870/tih_rna_sample_00122_23H5VFLT4_s42.Log.final.out 583/tih_rna_sample_00122_23H5VFLT4_s42.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/2c1fa2c3d4f5de66477c7cf19febb2/V4_0001_RNA_0005_23H5VFLT4_s44.inner_distance_freq.txt 831/V4_0001_RNA_0005_23H5VFLT4_s44.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/971fba390509ad6db4d98175063a14/tih_rna_sample_00403_23H5VFLT4_s29.fastp.json 41/tih_rna_sample_00403_23H5VFLT4_s29.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/1bfd74b49dac4f0c006446bb779d48/V4_0001_RNA_0005_23H5VFLT4_s15.md.bam.metrics 1903/V4_0001_RNA_0005_23H5VFLT4_s15.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e3/635737abda35eef57fc4a25a3cc370/V4_0001_RNA_0005_23H5VFLT4_s45.read_distribution.txt 1768/V4_0001_RNA_0005_23H5VFLT4_s45.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/470633ec6875aa44e851b44cd7b6c7/tih_rna_sample_00104_23H5VFLT4_s20.ReadsPerGene.out.tab 684/tih_rna_sample_00104_23H5VFLT4_s20.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/ba00da71b0318d4375b9e6ab07cbc7/V4_0001_RNA_0005_23H5VFLT4_s13_preseq_mqc.tsv 2262/V4_0001_RNA_0005_23H5VFLT4_s13_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/faa9fa9e811d0f59731fda7459f92d/tih_rna_sample_00407_23H5VFLT4_s33.junctionSaturation_plot.r 1183/tih_rna_sample_00407_23H5VFLT4_s33.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/a007ffb0b00f103ccedf808dbd0248/GM24385_0001_RNA_0001_23H5VFLT4_s24_rseqc_extra_mqc.tsv 1654/GM24385_0001_RNA_0001_23H5VFLT4_s24_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/00e1322f2e5ff8184403fa4d59b99f/tih_rna_sample_00116_23H5VFLT4_s36_2_fastqc.zip 1040/tih_rna_sample_00116_23H5VFLT4_s36_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/151b6f05bb1425eccca8370e40b0de/V4_0001_RNA_0005_23H5VFLT4_s31_1_fastqc.zip 1071/V4_0001_RNA_0005_23H5VFLT4_s31_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/c24374831eb1be1f702123d1a91f72/V4_0001_RNA_0005_23H5VFLT4_s18.pos.DupRate.xls 1577/V4_0001_RNA_0005_23H5VFLT4_s18.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/fad02744587a4aea4404faef0c8ccf/tih_rna_sample_00251_23H5VFLT4_s03_trimmed_2_fastqc.zip 284/tih_rna_sample_00251_23H5VFLT4_s03_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/8afb6ac37b310f9545300e00bf257b/tih_rna_sample_00104_23H5VFLT4_s20_rseqc_extra_mqc.tsv 1646/tih_rna_sample_00104_23H5VFLT4_s20_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/77f49d055c96316d84312aa66b3e7b/V4_0001_RNA_0005_23H5VFLT4_s04.infer_experiment.txt 917/V4_0001_RNA_0005_23H5VFLT4_s04.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/c9a76add296a116f66b2fd6aee7eae/V4_0001_RNA_0005_23H5VFLT4_s31_combined_fusions_arriba_visualisation.pdf 2346/V4_0001_RNA_0005_23H5VFLT4_s31_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/3810286ba645e667c5583e19619880/V4_0001_RNA_0005_23H5VFLT4_s07.fastp.json 44/V4_0001_RNA_0005_23H5VFLT4_s07.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/b9dbc54dd52aeff03b41f4fbeadcf0/V4_0001_RNA_0005_23H5VFLT4_s02_trimmed_2_fastqc.zip 360/V4_0001_RNA_0005_23H5VFLT4_s02_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/27bc06ff02cd011b0f1805618f73ee/tih_rna_sample_00420_23H5VFLT4_s45_2_fastqc.zip 976/tih_rna_sample_00420_23H5VFLT4_s45_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/b8c0b5d2385db1423b749f522a6d95/V4_0001_RNA_0005_23H5VFLT4_s01.md.bam.metrics 1902/V4_0001_RNA_0005_23H5VFLT4_s01.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0b/f5b0ca27817151e51c07980c798440/tih_rna_sample_00261_23H5VFLT4_s06.lc_extrap.txt 2154/tih_rna_sample_00261_23H5VFLT4_s06.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/24e1bcb1c1e28b4a63c987f60b26f8/V4_0001_RNA_0005_23H5VFLT4_s29.md.bam.metrics 1859/V4_0001_RNA_0005_23H5VFLT4_s29.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/43da02ccdb2465d0342b0bc0b0eda3/tih_rna_sample_00117_23H5VFLT4_s37_contamination_mqc.tsv 1261/tih_rna_sample_00117_23H5VFLT4_s37_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/5195ea6d6d6cd5ce0e56bf1d666e23/V4_0001_RNA_0005_23H5VFLT4_s03_1_fastqc.zip 1107/V4_0001_RNA_0005_23H5VFLT4_s03_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/5fd0af6947a0045e4ceba7d8b1cd44/V4_0001_RNA_0005_23H5VFLT4_s27_seqtool_mqc.tsv 1981/V4_0001_RNA_0005_23H5VFLT4_s27_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/06a78c0f18902db5fab9846aa5c0b3/tih_rna_sample_00121_23H5VFLT4_s41.attempt1.command.log 2090/tih_rna_sample_00121_23H5VFLT4_s41.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/1e50278b73b2ad382cf82e0d4ad332/V4_0001_RNA_0005_23H5VFLT4_s13_rseqc_extra_mqc.tsv 1718/V4_0001_RNA_0005_23H5VFLT4_s13_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/2b3ab3802082668437347e893e1abc/tih_rna_sample_00272_23H5VFLT4_s09_contamination_mqc.tsv 1338/tih_rna_sample_00272_23H5VFLT4_s09_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/05a0b20e7a235550a0d71ad04336c7/V4_0001_RNA_0005_23H5VFLT4_s36.junction_annotation.log 1402/V4_0001_RNA_0005_23H5VFLT4_s36.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/9b41c0ac3053136c788aea75313f04/V4_0001_RNA_0005_23H5VFLT4_s04.fastp.html 164/V4_0001_RNA_0005_23H5VFLT4_s04.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/ccfd071a0858bb8ede726fc162d088/tih_rna_sample_00124_23H5VFLT4_s31_combined_fusions_arriba_visualisation.pdf 2385/tih_rna_sample_00124_23H5VFLT4_s31_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/e90d9910dfe23a9fcf79c1a9c1f56a/tih_rna_sample_00419_23H5VFLT4_s44.Log.final.out 627/tih_rna_sample_00419_23H5VFLT4_s44.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/0a8a82016267d8b5e507f002bfabcf/V4_0001_RNA_0005_23H5VFLT4_s30.inner_distance_freq.txt 788/V4_0001_RNA_0005_23H5VFLT4_s30.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/ee8f8da388eb3a90fc1331fd4de915/V4_0001_RNA_0005_23H5VFLT4_s30.lc_extrap.txt 2146/V4_0001_RNA_0005_23H5VFLT4_s30.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/5cd060f0f618bd8e3410cc9864e1de/V4_0001_RNA_0005_23H5VFLT4_s33.junction_annotation.log 1431/V4_0001_RNA_0005_23H5VFLT4_s33.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/73444d4eeeb544fd361c4bc52388d6/V4_0001_RNA_0005_23H5VFLT4_s07.Log.final.out 601/V4_0001_RNA_0005_23H5VFLT4_s07.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/b33fdb3d2d24c2868a422d691626dd/GM24385_0001_RNA_0001_23H5VFLT4_s32.pos.DupRate.xls 1558/GM24385_0001_RNA_0001_23H5VFLT4_s32.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/78149c1cc3637ff3f5642800230a58/tih_rna_sample_00220_23H5VFLT4_s16.junctionSaturation_plot.r 1236/tih_rna_sample_00220_23H5VFLT4_s16.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/59b59eba99c012c1d9dd191d747cfd/tih_rna_sample_00396_23H5VFLT4_s26_trimmed_2_fastqc.zip 302/tih_rna_sample_00396_23H5VFLT4_s26_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/32591fda67164d696a6f731cadd5af/tih_rna_sample_00414_23H5VFLT4_s40.junction_annotation.log 1411/tih_rna_sample_00414_23H5VFLT4_s40.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/4281f36142ec0baa3b098314cb023d/V4_0001_RNA_0005_23H5VFLT4_s06.Log.final.out 630/V4_0001_RNA_0005_23H5VFLT4_s06.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/4a6bd28a954d0810073418dc22f277/V4_0001_RNA_0005_23H5VFLT4_s14.pos.DupRate.xls 1567/V4_0001_RNA_0005_23H5VFLT4_s14.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/88/2ded75333154e6f77cee288be2b4da/V4_0001_RNA_0005_23H5VFLT4_s33_combined_fusions_arriba_visualisation.pdf 2352/V4_0001_RNA_0005_23H5VFLT4_s33_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/83e335261728595363ea0cafb6fa88/V4_0001_RNA_0005_23H5VFLT4_s05.read_distribution.txt 1767/V4_0001_RNA_0005_23H5VFLT4_s05.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/d08e67d90729dde14e85deda2ab47c/tih_rna_sample_00097_23H5VFLT4_s12.Log.final.out 624/tih_rna_sample_00097_23H5VFLT4_s12.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/67f169b4fdf03985607a819100d9bc/tih_rna_sample_00105_23H5VFLT4_s21_1_fastqc.zip 965/tih_rna_sample_00105_23H5VFLT4_s21_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/a3bcf258a6ee0f42836ed295b1013c/GM24385_0001_RNA_0001_23H5VFLT4_s40_trimmed_2_fastqc.zip 238/GM24385_0001_RNA_0001_23H5VFLT4_s40_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/117f5815b0e6695f3799fa42c15d7d/tih_rna_sample_00261_23H5VFLT4_s06.junction_annotation.log 1436/tih_rna_sample_00261_23H5VFLT4_s06.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/0e2f7f1b69d24ae29098672f2a358f/V4_0001_RNA_0005_23H5VFLT4_s10.ReadsPerGene.out.tab 751/V4_0001_RNA_0005_23H5VFLT4_s10.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/b5cc818b024d87b555d096a52508ec/V4_0001_RNA_0005_23H5VFLT4_s04_seqtool_mqc.tsv 1960/V4_0001_RNA_0005_23H5VFLT4_s04_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/d014cc7e56c31ee7d5a15050f80b9b/V4_0001_RNA_0005_23H5VFLT4_s41.pos.DupRate.xls 1599/V4_0001_RNA_0005_23H5VFLT4_s41.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/5ea94d005cce3b82b444370fa9f1d5/V4_0001_RNA_0005_23H5VFLT4_s45.md.bam.metrics 1866/V4_0001_RNA_0005_23H5VFLT4_s45.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/324b3fed37c86f95bd2f5e9d0d799a/V4_0001_RNA_0005_23H5VFLT4_s46.Log.final.out 595/V4_0001_RNA_0005_23H5VFLT4_s46.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/99de508dc3a1d0eb5e642d04c972b9/tih_rna_sample_00426_23H5VFLT4_s48.inner_distance_freq.txt 851/tih_rna_sample_00426_23H5VFLT4_s48.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/3367d943c9586c00742af1f8759e0e/V4_0001_RNA_0005_23H5VFLT4_s06.junction_annotation.log 1390/V4_0001_RNA_0005_23H5VFLT4_s06.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/88246e2dbbff5318559fa51839612a/tih_rna_sample_00124_23H5VFLT4_s31_kallisto_mqc.tsv 515/tih_rna_sample_00124_23H5VFLT4_s31_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/fb9cb0772acb3e9614938efb8a93e8/tih_rna_sample_00117_23H5VFLT4_s37_rseqc_extra_mqc.tsv 1643/tih_rna_sample_00117_23H5VFLT4_s37_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/32b03a8302b2af58db6030bdea44e1/tih_rna_sample_00235_23H5VFLT4_s07.read_distribution.txt 1752/tih_rna_sample_00235_23H5VFLT4_s07.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/5c2c0771b565ac77a4ed8c60a380d7/tih_rna_sample_00097_23H5VFLT4_s12_trimmed_2_fastqc.zip 344/tih_rna_sample_00097_23H5VFLT4_s12_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/d323dbe9f46765f14bd5a172791739/tih_rna_sample_00087_23H5VFLT4_s17.lc_extrap.txt 2158/tih_rna_sample_00087_23H5VFLT4_s17.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/9425d051e5ae12d66e00246fa9eee0/V4_0001_RNA_0005_23H5VFLT4_s05_contamination_mqc.tsv 1294/V4_0001_RNA_0005_23H5VFLT4_s05_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/11562489d764d7c95285220438003e/V4_0001_RNA_0005_23H5VFLT4_s03_seqtool_mqc.tsv 1996/V4_0001_RNA_0005_23H5VFLT4_s03_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/125424bb79d98b7fcb15960683cd3a/tih_rna_sample_00104_23H5VFLT4_s20_kallisto_mqc.tsv 493/tih_rna_sample_00104_23H5VFLT4_s20_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/cc01f9458496b4309d66f56618d4e8/tih_rna_sample_00410_23H5VFLT4_s34_rseqc_extra_mqc.tsv 1658/tih_rna_sample_00410_23H5VFLT4_s34_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/3441724cc6ac1e729a3d0956a1fe4f/V4_0001_RNA_0005_23H5VFLT4_s38_rseqc_extra_mqc.tsv 1653/V4_0001_RNA_0005_23H5VFLT4_s38_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/49bb5af75b7b7b871d4164db8fb89c/V4_0001_RNA_0005_23H5VFLT4_s15.fastp.json 24/V4_0001_RNA_0005_23H5VFLT4_s15.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/f91e288ad2fe4f7f00dfd2d08f87db/tih_rna_sample_00388_23H5VFLT4_s22_trimmed_2_fastqc.zip 372/tih_rna_sample_00388_23H5VFLT4_s22_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/72a08075c3b69d974e03d444b715ad/HD789_0002_RNA_0008_23H5VFLT4_s19.attempt1.command.log 2096/HD789_0002_RNA_0008_23H5VFLT4_s19.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/5ccc738099a1ecf6306a6cba742fe6/tih_rna_sample_00274_23H5VFLT4_s14.attempt1.command.log 2026/tih_rna_sample_00274_23H5VFLT4_s14.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/961ee530b9c923142064597d2b01b9/tih_rna_sample_00096_23H5VFLT4_s11_contamination_mqc.tsv 1330/tih_rna_sample_00096_23H5VFLT4_s11_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/5b9e2373dc1c85c39f3ec8d5312bea/V4_0001_RNA_0005_23H5VFLT4_s21.md.bam.metrics 1912/V4_0001_RNA_0005_23H5VFLT4_s21.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/984c75f087a5e48a074be336af81fb/tih_rna_sample_00252_23H5VFLT4_s04.attempt2.command.log 2114/tih_rna_sample_00252_23H5VFLT4_s04.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/e6cbbc2548676dfc81bc8573d43447/V4_0001_RNA_0005_23H5VFLT4_s34.lc_extrap.txt 2156/V4_0001_RNA_0005_23H5VFLT4_s34.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/b6ce4ff6ad5505a3bc4c2513a84df2/tih_rna_sample_00097_23H5VFLT4_s12.lc_extrap.txt 2182/tih_rna_sample_00097_23H5VFLT4_s12.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/bce9c5da48dfe90d05727b844e0813/tih_rna_sample_00235_23H5VFLT4_s07.infer_experiment.txt 898/tih_rna_sample_00235_23H5VFLT4_s07.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/744c119efc7a38a06b48ded72642c8/V4_0001_RNA_0005_23H5VFLT4_s05.md.bam.metrics 1891/V4_0001_RNA_0005_23H5VFLT4_s05.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/faf2b4acc340ad2c50027b2705a41a/V4_0001_RNA_0005_23H5VFLT4_s45_kallisto_mqc.tsv 563/V4_0001_RNA_0005_23H5VFLT4_s45_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/56a71dc84d32777d09507da62a37f8/tih_rna_sample_00089_23H5VFLT4_s39_combined_fusions_arriba_visualisation.pdf 2380/tih_rna_sample_00089_23H5VFLT4_s39_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/08c4a42fc7776c3cce88cfa4e57d6b/tih_rna_sample_00252_23H5VFLT4_s04.junction_annotation.log 1423/tih_rna_sample_00252_23H5VFLT4_s04.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/47603490cd459b37779aa6bcdba531/V4_0001_RNA_0005_23H5VFLT4_s38.inner_distance_freq.txt 794/V4_0001_RNA_0005_23H5VFLT4_s38.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/67/05e4e5d99ccf4b270de94425b9f1f2/V4_0001_RNA_0005_23H5VFLT4_s46_preseq_mqc.tsv 2223/V4_0001_RNA_0005_23H5VFLT4_s46_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/81/e3ebcc2dedadd84a4eed26e7ece3d5/V4_0001_RNA_0005_23H5VFLT4_s38_contamination_mqc.tsv 1271/V4_0001_RNA_0005_23H5VFLT4_s38_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/ca5b6d385cdd9c02b297eabeca3018/tih_rna_sample_00407_23H5VFLT4_s33_combined_fusions_arriba_visualisation.pdf 2354/tih_rna_sample_00407_23H5VFLT4_s33_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/136dda2421247b154c6032704a6d24/tih_rna_sample_00403_23H5VFLT4_s29_1_fastqc.zip 1029/tih_rna_sample_00403_23H5VFLT4_s29_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/15d48217d837a2115889847b7c3d2d/tih_rna_sample_00248_23H5VFLT4_s01_2_fastqc.zip 1028/tih_rna_sample_00248_23H5VFLT4_s01_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/e8fdad8ae4520e7c7649f8fc68837c/tih_rna_sample_00403_23H5VFLT4_s29_combined_fusions_arriba_visualisation.pdf 2348/tih_rna_sample_00403_23H5VFLT4_s29_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/316ded948f24505e4982f1f03887fb/V4_0001_RNA_0005_23H5VFLT4_s46_rseqc_extra_mqc.tsv 1647/V4_0001_RNA_0005_23H5VFLT4_s46_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/b5c0b57755972f3d1850b5529742ed/tih_rna_sample_00115_23H5VFLT4_s35_contamination_mqc.tsv 1267/tih_rna_sample_00115_23H5VFLT4_s35_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/17bff391e9982b04a64735e1eaa848/tih_rna_sample_00127_23H5VFLT4_s08_2_fastqc.zip 998/tih_rna_sample_00127_23H5VFLT4_s08_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/e9d1067a8b109cdab5764c343359a1/tih_rna_sample_00252_23H5VFLT4_s04_combined_fusions_arriba_visualisation.pdf 2371/tih_rna_sample_00252_23H5VFLT4_s04_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/a044da86b8462c8f263dd7ebabefe8/tih_rna_sample_00378_23H5VFLT4_s24.fastp.json 6/tih_rna_sample_00378_23H5VFLT4_s24.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/65317c0d7e01654d97a67aea9d5671/tih_rna_sample_00089_23H5VFLT4_s39.Log.final.out 671/tih_rna_sample_00089_23H5VFLT4_s39.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/a7ad9d22c19d14988d93945b1c0455/tih_rna_sample_00117_23H5VFLT4_s37_trimmed_2_fastqc.zip 206/tih_rna_sample_00117_23H5VFLT4_s37_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/915b3dcaa925ac01dc39b26aaa4270/tih_rna_sample_00111_23H5VFLT4_s30.attempt1.command.log 2024/tih_rna_sample_00111_23H5VFLT4_s30.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e91169720269dcf5be86c51bc71a6a/tih_rna_sample_00220_23H5VFLT4_s16.infer_experiment.txt 940/tih_rna_sample_00220_23H5VFLT4_s16.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/eb77173d6fc7f3c98b8211160200f0/tih_rna_sample_00272_23H5VFLT4_s09.md.bam.metrics 1907/tih_rna_sample_00272_23H5VFLT4_s09.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/9cd65b0e2c3de899d96d63a4276981/tih_rna_sample_00127_23H5VFLT4_s08.fastp.html 108/tih_rna_sample_00127_23H5VFLT4_s08.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/05a986a77f7c7bb08266a98fdbfea0/tih_rna_sample_00407_23H5VFLT4_s33_preseq_mqc.tsv 2280/tih_rna_sample_00407_23H5VFLT4_s33_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/c099e6e59216e567818e9088b5fe7b/tih_rna_sample_00096_23H5VFLT4_s11.pos.DupRate.xls 1601/tih_rna_sample_00096_23H5VFLT4_s11.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/f542d2844be38647c3cdd2428ee3c3/V4_0001_RNA_0005_23H5VFLT4_s43.fastp.json 32/V4_0001_RNA_0005_23H5VFLT4_s43.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/e4fd5dee4240e37ae71864c0fe69b1/V4_0001_RNA_0005_23H5VFLT4_s25.md.bam.metrics 1883/V4_0001_RNA_0005_23H5VFLT4_s25.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/bedbc457371eb3d82e4631b9fdc6a3/tih_rna_sample_00124_23H5VFLT4_s31_1_fastqc.zip 1109/tih_rna_sample_00124_23H5VFLT4_s31_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/3adc9d1b789b7ac422922918fe92cb/tih_rna_sample_00420_23H5VFLT4_s45.lc_extrap.txt 2124/tih_rna_sample_00420_23H5VFLT4_s45.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/f8330c4c81032d4e774b13cc2a5b40/V4_0001_RNA_0005_23H5VFLT4_s30.ReadsPerGene.out.tab 693/V4_0001_RNA_0005_23H5VFLT4_s30.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/04d12ad65d839adf9bbb558bd05b47/tih_rna_sample_00419_23H5VFLT4_s44_seqtool_mqc.tsv 2015/tih_rna_sample_00419_23H5VFLT4_s44_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/6b6e66bef629eca1b0258f3ed09570/V4_0001_RNA_0005_23H5VFLT4_s02_combined_fusions_arriba_visualisation.pdf 2367/V4_0001_RNA_0005_23H5VFLT4_s02_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/7923238910daa5920b0c0b8645d60b/V4_0001_RNA_0005_23H5VFLT4_s28.fastp.html 112/V4_0001_RNA_0005_23H5VFLT4_s28.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/3826d7abdb66a3ca1477cfcd31a534/tih_rna_sample_00115_23H5VFLT4_s35.lc_extrap.txt 2126/tih_rna_sample_00115_23H5VFLT4_s35.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/397addefc4d255af42b01183b8f587/V4_0001_RNA_0005_23H5VFLT4_s07.junction_annotation.log 1363/V4_0001_RNA_0005_23H5VFLT4_s07.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/dd5f1d8e23cafba3e20acb4571037e/V4_0001_RNA_0005_23H5VFLT4_s33_rseqc_extra_mqc.tsv 1683/V4_0001_RNA_0005_23H5VFLT4_s33_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/9689e52dbdaac8dfbbab860e49e910/V4_0001_RNA_0005_23H5VFLT4_s31.Log.final.out 667/V4_0001_RNA_0005_23H5VFLT4_s31.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/4bad750c1efbbf15d1e796f6fba021/V4_0001_RNA_0005_23H5VFLT4_s14.read_distribution.txt 1751/V4_0001_RNA_0005_23H5VFLT4_s14.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0b/c3b9b6aa923a9caa60c75c2b6e3bfb/V4_0001_RNA_0005_23H5VFLT4_s39.lc_extrap.txt 2131/V4_0001_RNA_0005_23H5VFLT4_s39.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/65cbb723f2376798e6076c7fe69b8e/V4_0001_RNA_0005_23H5VFLT4_s02.log 455/V4_0001_RNA_0005_23H5VFLT4_s02.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/1787247826e5d1beebf619c05781df/V4_0001_RNA_0005_23H5VFLT4_s27.md.bam.metrics 1887/V4_0001_RNA_0005_23H5VFLT4_s27.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/9309ad7530fac4b27434b69a1d5514/tih_rna_sample_00127_23H5VFLT4_s08.attempt1.command.log 2025/tih_rna_sample_00127_23H5VFLT4_s08.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/098a41e3f31832582b1f632f8f35b6/V4_0001_RNA_0005_23H5VFLT4_s22_rseqc_extra_mqc.tsv 1684/V4_0001_RNA_0005_23H5VFLT4_s22_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/fca748d351e24afefdc7b55f260321/V4_0001_RNA_0005_23H5VFLT4_s17.infer_experiment.txt 910/V4_0001_RNA_0005_23H5VFLT4_s17.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/3b458c7c78712970dd50006fc01f39/V4_0001_RNA_0005_23H5VFLT4_s17.md.bam.metrics 1911/V4_0001_RNA_0005_23H5VFLT4_s17.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/02324dd7a35a15c1ae17d9ff8357e4/NTC_0001_0001_23H5VFLT4_s15.bam_stat.txt 1443/NTC_0001_0001_23H5VFLT4_s15.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/8c2ac4cf327e85ce808e93a8dfe285/V4_0001_RNA_0005_23H5VFLT4_s02.Log.final.out 628/V4_0001_RNA_0005_23H5VFLT4_s02.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/e71fd465232ec5b9d80b3dadd5d619/V4_0001_RNA_0005_23H5VFLT4_s06_1_fastqc.zip 1063/V4_0001_RNA_0005_23H5VFLT4_s06_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/dfdbb0b72171bdcf7e169563e5936d/tih_rna_sample_00163_23H5VFLT4_s43.fastp.json 37/tih_rna_sample_00163_23H5VFLT4_s43.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/b7a429dc8d2ae8f3822e0cec3ea691/tih_rna_sample_00402_23H5VFLT4_s28.infer_experiment.txt 924/tih_rna_sample_00402_23H5VFLT4_s28.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/444a4a563b71eaad4fb7edb5ef1214/tih_rna_sample_00088_23H5VFLT4_s02.ReadsPerGene.out.tab 766/tih_rna_sample_00088_23H5VFLT4_s02.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/0ffc227ec4d0ee34feeaa85c27384f/tih_rna_sample_00272_23H5VFLT4_s09_trimmed_1_fastqc.zip 373/tih_rna_sample_00272_23H5VFLT4_s09_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/450c278d668d1168bf34a1a32731d8/tih_rna_sample_00420_23H5VFLT4_s45.ReadsPerGene.out.tab 683/tih_rna_sample_00420_23H5VFLT4_s45.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/2b5ed3887b948879d25fd73d3941da/tih_rna_sample_00396_23H5VFLT4_s26_rseqc_extra_mqc.tsv 1724/tih_rna_sample_00396_23H5VFLT4_s26_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/323702089bef47c4d83a665706b36a/V4_0001_RNA_0005_23H5VFLT4_s19_contamination_mqc.tsv 1286/V4_0001_RNA_0005_23H5VFLT4_s19_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/95fad0fcab004123cb9cdc8976857d/V4_0001_RNA_0005_23H5VFLT4_s37.md.bam.metrics 1895/V4_0001_RNA_0005_23H5VFLT4_s37.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/013751edd215e90b94ee6e94806814/V4_0001_RNA_0005_23H5VFLT4_s03.lc_extrap.txt 2167/V4_0001_RNA_0005_23H5VFLT4_s03.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/ed15d48266157a5db670911e39e968/tih_rna_sample_00407_23H5VFLT4_s33.infer_experiment.txt 901/tih_rna_sample_00407_23H5VFLT4_s33.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/22117fbce23e1874086ea1bc9928e4/tih_rna_sample_00419_23H5VFLT4_s44_2_fastqc.zip 1132/tih_rna_sample_00419_23H5VFLT4_s44_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/2de9935e5450503c9a6727af0380f2/tih_rna_sample_00090_23H5VFLT4_s32.inner_distance_freq.txt 843/tih_rna_sample_00090_23H5VFLT4_s32.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/3e973339ea68cd190f55afa8e4702b/tih_rna_sample_00089_23H5VFLT4_s39.bam_stat.txt 1533/tih_rna_sample_00089_23H5VFLT4_s39.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/63194e107255c7221a6ea1c4320fba/tih_rna_sample_00235_23H5VFLT4_s07_preseq_mqc.tsv 2240/tih_rna_sample_00235_23H5VFLT4_s07_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/74986aff5568b305ba6fb83bb2878a/tih_rna_sample_00127_23H5VFLT4_s08.pos.DupRate.xls 1550/tih_rna_sample_00127_23H5VFLT4_s08.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/47c3d3e4b24ccc663aee5b98c77568/V4_0001_RNA_0005_23H5VFLT4_s30_rseqc_extra_mqc.tsv 1651/V4_0001_RNA_0005_23H5VFLT4_s30_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/7f579abb9aee031d031a8aca32b801/tih_rna_sample_00261_23H5VFLT4_s06_contamination_mqc.tsv 1339/tih_rna_sample_00261_23H5VFLT4_s06_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/706514e8a05a22937916f47cec339a/tih_rna_sample_00127_23H5VFLT4_s08.junctionSaturation_plot.r 1166/tih_rna_sample_00127_23H5VFLT4_s08.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/6a9b9e385e4ac004e913f7ae4a60fc/tih_rna_sample_00388_23H5VFLT4_s22.read_distribution.txt 1811/tih_rna_sample_00388_23H5VFLT4_s22.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/b0d96480a45a45d3434f7ed16327d6/tih_rna_sample_00117_23H5VFLT4_s37_seqtool_mqc.tsv 1930/tih_rna_sample_00117_23H5VFLT4_s37_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/bae1834b243e94b7095183378027e9/tih_rna_sample_00124_23H5VFLT4_s31_contamination_mqc.tsv 1343/tih_rna_sample_00124_23H5VFLT4_s31_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/016f4d9ad2a3ff1ba65eba11df183a/GM24385_0001_RNA_0001_23H5VFLT4_s48.fastp.json 15/GM24385_0001_RNA_0001_23H5VFLT4_s48.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/7e09471fcded1af4bf5350866eabf5/tih_rna_sample_00251_23H5VFLT4_s03.inner_distance_freq.txt 808/tih_rna_sample_00251_23H5VFLT4_s03.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/a6570e529e4b9d77c4f45d3373b253/V4_0001_RNA_0005_23H5VFLT4_s17_1_fastqc.zip 1141/V4_0001_RNA_0005_23H5VFLT4_s17_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/d7ff773b2c72bd421294632d3d876b/V4_0001_RNA_0005_23H5VFLT4_s35.read_distribution.txt 1750/V4_0001_RNA_0005_23H5VFLT4_s35.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/ea854391ea1763d8117a33c44f09cd/tih_rna_sample_00414_23H5VFLT4_s40.pos.DupRate.xls 1585/tih_rna_sample_00414_23H5VFLT4_s40.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/73444d4eeeb544fd361c4bc52388d6/V4_0001_RNA_0005_23H5VFLT4_s07.ReadsPerGene.out.tab 697/V4_0001_RNA_0005_23H5VFLT4_s07.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/2b666194b93b4d3d5a22d25ec400d5/GM24385_0001_RNA_0001_23H5VFLT4_s08.fastp.json 64/GM24385_0001_RNA_0001_23H5VFLT4_s08.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/75def4181a0af2faa75dfd1ebb69a1/tih_rna_sample_00118_23H5VFLT4_s38.Log.final.out 620/tih_rna_sample_00118_23H5VFLT4_s38.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/b5cb13a3f62ff9f58083a03de77164/GM24385_0001_RNA_0001_23H5VFLT4_s24.log 403/GM24385_0001_RNA_0001_23H5VFLT4_s24.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/233f67e4d9df0464f46dc4c7bd67be/tih_rna_sample_00097_23H5VFLT4_s12_rseqc_extra_mqc.tsv 1671/tih_rna_sample_00097_23H5VFLT4_s12_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/013751edd215e90b94ee6e94806814/V4_0001_RNA_0005_23H5VFLT4_s03.attempt1.command.log 2071/V4_0001_RNA_0005_23H5VFLT4_s03.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/e7decf602a8dcc571e7f16550f2261/tih_rna_sample_00407_23H5VFLT4_s33.log 415/tih_rna_sample_00407_23H5VFLT4_s33.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/6db7e921c55459670ecb4e8bda9a4d/V4_0001_RNA_0005_23H5VFLT4_s03_trimmed_2_fastqc.zip 324/V4_0001_RNA_0005_23H5VFLT4_s03_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/aa52f68bf769e29c044f7082334f0d/tih_rna_sample_00252_23H5VFLT4_s04.fastp.html 188/tih_rna_sample_00252_23H5VFLT4_s04.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/67fd87ef6def66608ce8aa40355eb2/tih_rna_sample_00127_23H5VFLT4_s08_trimmed_1_fastqc.zip 221/tih_rna_sample_00127_23H5VFLT4_s08_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/ab3df72a0f6cfd243abb6232e06129/V4_0001_RNA_0005_23H5VFLT4_s06_trimmed_1_fastqc.zip 349/V4_0001_RNA_0005_23H5VFLT4_s06_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/1f585f41102dbb4d34c8542daf668d/tih_rna_sample_00422_23H5VFLT4_s47_2_fastqc.zip 968/tih_rna_sample_00422_23H5VFLT4_s47_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/15f3bec67f34f3eaf09fdbac1cb6cf/V4_0001_RNA_0005_23H5VFLT4_s33_2_fastqc.zip 1112/V4_0001_RNA_0005_23H5VFLT4_s33_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/a81f839406b96adc2be585a3e1c0da/V4_0001_RNA_0005_23H5VFLT4_s12_2_fastqc.zip 1130/V4_0001_RNA_0005_23H5VFLT4_s12_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/093a2b024e6b4ac00577e061910d3f/tih_rna_sample_00400_23H5VFLT4_s27.fastp.json 39/tih_rna_sample_00400_23H5VFLT4_s27.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/83b305c1ae465c7eb3d307c3cb7953/V4_0001_RNA_0005_23H5VFLT4_s37_1_fastqc.zip 1031/V4_0001_RNA_0005_23H5VFLT4_s37_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/1e75e3b448bd2caab56ff65481a3b7/V4_0001_RNA_0001_23H5VFLT4_s13.junctionSaturation_plot.r 1198/V4_0001_RNA_0001_23H5VFLT4_s13.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/469de6c003acacd2817e1f8526d1f5/tih_rna_sample_00419_23H5VFLT4_s44_combined_fusions_arriba_visualisation.pdf 2347/tih_rna_sample_00419_23H5VFLT4_s44_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/e182db2ce2ff36a982de5d2a95a087/V4_0001_RNA_0005_23H5VFLT4_s35.junctionSaturation_plot.r 1172/V4_0001_RNA_0005_23H5VFLT4_s35.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ed/9767fee92955c6e6ecd3bc608a60e8/V4_0001_RNA_0001_23H5VFLT4_s13.infer_experiment.txt 911/V4_0001_RNA_0001_23H5VFLT4_s13.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/7ea5c4e2f0e759f1a82424ab3e2d60/tih_rna_sample_00407_23H5VFLT4_s33.pos.DupRate.xls 1566/tih_rna_sample_00407_23H5VFLT4_s33.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/cd80402cd2465cd762d9bab77ccc98/tih_rna_sample_00419_23H5VFLT4_s44_rseqc_extra_mqc.tsv 1672/tih_rna_sample_00419_23H5VFLT4_s44_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/041398981a546bae612e76076458b6/tih_rna_sample_00394_23H5VFLT4_s25.md.bam.metrics 1834/tih_rna_sample_00394_23H5VFLT4_s25.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/dc2878d8c1a8e0554fdbc699a9ad43/V4_0001_RNA_0005_23H5VFLT4_s30.junction_annotation.log 1369/V4_0001_RNA_0005_23H5VFLT4_s30.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/7d80a557861320ae3170cc0f044b80/tih_rna_sample_00402_23H5VFLT4_s28_trimmed_2_fastqc.zip 318/tih_rna_sample_00402_23H5VFLT4_s28_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/bb2c44ace0ead90c965921f3266c26/tih_rna_sample_00096_23H5VFLT4_s11.ReadsPerGene.out.tab 742/tih_rna_sample_00096_23H5VFLT4_s11.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/c83863f67a218f438e847038fb3174/V4_0001_RNA_0005_23H5VFLT4_s31.infer_experiment.txt 953/V4_0001_RNA_0005_23H5VFLT4_s31.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/c3d7a3ce219f08e5d7f42659f1a722/tih_rna_sample_00400_23H5VFLT4_s27.junction_annotation.log 1403/tih_rna_sample_00400_23H5VFLT4_s27.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/tmp/b1/c33d7f1a5d6abf293a3ac5727a44b1/methods_description_mqc.yaml 1/methods_description_mqc.yaml")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e3/143ca94bb1bfb135423c23879713e2/tih_rna_sample_00410_23H5VFLT4_s34.ReadsPerGene.out.tab 699/tih_rna_sample_00410_23H5VFLT4_s34.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/d8ef67eda06e9448d25aab3221cc61/V4_0001_RNA_0005_23H5VFLT4_s43_seqtool_mqc.tsv 1954/V4_0001_RNA_0005_23H5VFLT4_s43_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/bd7285bf6d0758853990e1c051cfa8/HD789_0002_RNA_0008_23H5VFLT4_s19_1_fastqc.zip 1151/HD789_0002_RNA_0008_23H5VFLT4_s19_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/859710acee2d49a01948f470fc7702/tih_rna_sample_00105_23H5VFLT4_s21.infer_experiment.txt 869/tih_rna_sample_00105_23H5VFLT4_s21.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/18a122ff9d2297c940627a38eea6c1/tih_rna_sample_00394_23H5VFLT4_s25_combined_fusions_arriba_visualisation.pdf 2311/tih_rna_sample_00394_23H5VFLT4_s25_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/e58034b7e2cad74944cc7d7de7dcca/tih_rna_sample_00422_23H5VFLT4_s47.inner_distance_freq.txt 772/tih_rna_sample_00422_23H5VFLT4_s47.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/a20621c664159840a0c47290eaa50e/tih_rna_sample_00280_23H5VFLT4_s18.inner_distance_freq.txt 845/tih_rna_sample_00280_23H5VFLT4_s18.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/ae5c11aff5b81cd6377e6c6a249f21/V4_0001_RNA_0005_23H5VFLT4_s14_trimmed_1_fastqc.zip 291/V4_0001_RNA_0005_23H5VFLT4_s14_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/aa4c3985d2851487c09c4e2f133c20/GM24385_0001_RNA_0001_23H5VFLT4_s32.fastp.json 21/GM24385_0001_RNA_0001_23H5VFLT4_s32.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/5fcc52b313a3e25b3dddf8045c574b/tih_rna_sample_00122_23H5VFLT4_s42.lc_extrap.txt 2125/tih_rna_sample_00122_23H5VFLT4_s42.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/922a63d4804919eeab32d001a7f80f/V4_0001_RNA_0005_23H5VFLT4_s18_1_fastqc.zip 1095/V4_0001_RNA_0005_23H5VFLT4_s18_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/d05b697660e1d6f9009892f67d4406/V4_0001_RNA_0005_23H5VFLT4_s19_trimmed_1_fastqc.zip 255/V4_0001_RNA_0005_23H5VFLT4_s19_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/a9823619526169bdaa841bb7087070/V4_0001_RNA_0005_23H5VFLT4_s44_combined_fusions_arriba_visualisation.pdf 2327/V4_0001_RNA_0005_23H5VFLT4_s44_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/e41fbc80c050a8757940a19adc6501/tih_rna_sample_00248_23H5VFLT4_s01_trimmed_1_fastqc.zip 311/tih_rna_sample_00248_23H5VFLT4_s01_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/44eb9b2d7dd3f150a5943d52ef9535/V4_0001_RNA_0005_23H5VFLT4_s09_contamination_mqc.tsv 1307/V4_0001_RNA_0005_23H5VFLT4_s09_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/5cd621367e614467a45922e89f2526/V4_0001_RNA_0005_23H5VFLT4_s01.fastp.html 173/V4_0001_RNA_0005_23H5VFLT4_s01.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/8f889ab4c8fda16e126499957380b4/tih_rna_sample_00248_23H5VFLT4_s01.infer_experiment.txt 934/tih_rna_sample_00248_23H5VFLT4_s01.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/ee5106075fc08348420bcb855e80bc/tih_rna_sample_00378_23H5VFLT4_s24.lc_extrap.txt 2118/tih_rna_sample_00378_23H5VFLT4_s24.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/facc7021fa50aaf519070b14037d39/NTC_0001_0001_23H5VFLT4_s15_trimmed_1_fastqc.zip 195/NTC_0001_0001_23H5VFLT4_s15_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/39d34cdb4ea8833e2e7949923fa2ec/tih_rna_sample_00402_23H5VFLT4_s28_2_fastqc.zip 1088/tih_rna_sample_00402_23H5VFLT4_s28_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/8224d1e48301e1ec32cd0a3e743385/V4_0001_RNA_0005_23H5VFLT4_s29.bam_stat.txt 1475/V4_0001_RNA_0005_23H5VFLT4_s29.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/df07d4f40d6e25dd57175a5a8a2d37/V4_0001_RNA_0005_23H5VFLT4_s10_2_fastqc.zip 1102/V4_0001_RNA_0005_23H5VFLT4_s10_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4d/77dc9c02f2eccdcd43f00d89de30b6/tih_rna_sample_00122_23H5VFLT4_s42.infer_experiment.txt 871/tih_rna_sample_00122_23H5VFLT4_s42.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/c8e5eba2c9ab5c767846f213b0ff0c/tih_rna_sample_00087_23H5VFLT4_s17_trimmed_1_fastqc.zip 383/tih_rna_sample_00087_23H5VFLT4_s17_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/23/5a3eb54668538aafa8561ee97b6251/V4_0001_RNA_0005_23H5VFLT4_s25_trimmed_2_fastqc.zip 304/V4_0001_RNA_0005_23H5VFLT4_s25_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/8b69f45b2de4ca637ed4c17d3a6ea1/tih_rna_sample_00118_23H5VFLT4_s38.pos.DupRate.xls 1578/tih_rna_sample_00118_23H5VFLT4_s38.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a5/3cc447fd28e50c8a55732a08848a6a/tih_rna_sample_00403_23H5VFLT4_s29.ReadsPerGene.out.tab 705/tih_rna_sample_00403_23H5VFLT4_s29.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/91158d78e43422099b867853cb6a9b/V4_0001_RNA_0005_23H5VFLT4_s27.Log.final.out 656/V4_0001_RNA_0005_23H5VFLT4_s27.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/50d193f1cb8cf5d53ca139e8f3b140/tih_rna_sample_00117_23H5VFLT4_s37.pos.DupRate.xls 1549/tih_rna_sample_00117_23H5VFLT4_s37.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bc/dc4d9b9062e8dceaa6e5268b888beb/tih_rna_sample_00254_23H5VFLT4_s05.log 471/tih_rna_sample_00254_23H5VFLT4_s05.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/46f1c09cbfc27aeba3c7419ec43886/V4_0001_RNA_0005_23H5VFLT4_s45.infer_experiment.txt 938/V4_0001_RNA_0005_23H5VFLT4_s45.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/a1fd89a104a44c1f0da35e0ca865be/tih_rna_sample_00378_23H5VFLT4_s24_trimmed_2_fastqc.zip 202/tih_rna_sample_00378_23H5VFLT4_s24_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/35971b1f4987856369bccda9b4746a/tih_rna_sample_00280_23H5VFLT4_s18_1_fastqc.zip 1135/tih_rna_sample_00280_23H5VFLT4_s18_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/979b8649a8cc839e446af4af367955/V4_0001_RNA_0005_23H5VFLT4_s22.junctionSaturation_plot.r 1178/V4_0001_RNA_0005_23H5VFLT4_s22.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/4281f36142ec0baa3b098314cb023d/V4_0001_RNA_0005_23H5VFLT4_s06.ReadsPerGene.out.tab 726/V4_0001_RNA_0005_23H5VFLT4_s06.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/98d26bb6c7d916fda8ddbb3ea0a8c9/V4_0001_RNA_0005_23H5VFLT4_s31.bam_stat.txt 1530/V4_0001_RNA_0005_23H5VFLT4_s31.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/9d8a24ad02385d289cae960ae3a79c/V4_0001_RNA_0005_23H5VFLT4_s27.junction_annotation.log 1416/V4_0001_RNA_0005_23H5VFLT4_s27.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/d133d54d061b733f923fec2b8c8f1f/tih_rna_sample_00252_23H5VFLT4_s04_trimmed_2_fastqc.zip 334/tih_rna_sample_00252_23H5VFLT4_s04_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/47ea50679f5617e1e7d4e19aa0bd44/V4_0001_RNA_0005_23H5VFLT4_s43.Log.final.out 608/V4_0001_RNA_0005_23H5VFLT4_s43.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/26/465a6c546b7fd03ca540e9825874be/V4_0001_RNA_0005_23H5VFLT4_s21_rseqc_extra_mqc.tsv 1703/V4_0001_RNA_0005_23H5VFLT4_s21_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/6f4a8dd95a949e21fe0e6cbcacd603/tih_rna_sample_00218_23H5VFLT4_s10.lc_extrap.txt 2208/tih_rna_sample_00218_23H5VFLT4_s10.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/89210853ee884f1669710f868c6b9f/NTC_0001_0001_23H5VFLT4_s15.ReadsPerGene.out.tab 675/NTC_0001_0001_23H5VFLT4_s15.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/856b4c600ad238b1b6ebd01eac8ec3/V4_0001_RNA_0005_23H5VFLT4_s09_combined_fusions_arriba_visualisation.pdf 2357/V4_0001_RNA_0005_23H5VFLT4_s09_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/470633ec6875aa44e851b44cd7b6c7/tih_rna_sample_00104_23H5VFLT4_s20.Log.final.out 588/tih_rna_sample_00104_23H5VFLT4_s20.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/015b6c307fca4cd8fb9bffbfc0ef75/V4_0001_RNA_0005_23H5VFLT4_s18_preseq_mqc.tsv 2246/V4_0001_RNA_0005_23H5VFLT4_s18_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/07c872f7e356e6978b586a80c4ec51/tih_rna_sample_00414_23H5VFLT4_s40_preseq_mqc.tsv 2302/tih_rna_sample_00414_23H5VFLT4_s40_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/e2e1822768d473dc9d249eb5f6a1c8/tih_rna_sample_00396_23H5VFLT4_s26_2_fastqc.zip 1120/tih_rna_sample_00396_23H5VFLT4_s26_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/235616cff96f57a4a897c00d219e77/HD789_0002_RNA_0008_23H5VFLT4_s19_seqtool_mqc.tsv 1997/HD789_0002_RNA_0008_23H5VFLT4_s19_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/41a2b35cdac890dc2ab1391f1b2dfc/V4_0001_RNA_0005_23H5VFLT4_s25.attempt1.command.log 2108/V4_0001_RNA_0005_23H5VFLT4_s25.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/5215cf65a73bda1cd5f04d385f41d2/V4_0001_RNA_0005_23H5VFLT4_s33.fastp.html 182/V4_0001_RNA_0005_23H5VFLT4_s33.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/a786f27815be2a9cb4452d461f66fa/V4_0001_RNA_0005_23H5VFLT4_s42_kallisto_mqc.tsv 531/V4_0001_RNA_0005_23H5VFLT4_s42_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/03ea68d13b8030c917b2ccb1ae1672/tih_rna_sample_00115_23H5VFLT4_s35.junctionSaturation_plot.r 1170/tih_rna_sample_00115_23H5VFLT4_s35.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/601869044e9c86ec0417835160411b/tih_rna_sample_00425_23H5VFLT4_s46_contamination_mqc.tsv 1281/tih_rna_sample_00425_23H5VFLT4_s46_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/3adc9d1b789b7ac422922918fe92cb/tih_rna_sample_00420_23H5VFLT4_s45.attempt1.command.log 2028/tih_rna_sample_00420_23H5VFLT4_s45.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/c902d9cc51958111c001ae2da7849f/tih_rna_sample_00254_23H5VFLT4_s05.attempt1.command.log 2061/tih_rna_sample_00254_23H5VFLT4_s05.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/6ada35547aa995d31161f63e81ea1c/V4_0001_RNA_0005_23H5VFLT4_s21_trimmed_1_fastqc.zip 261/V4_0001_RNA_0005_23H5VFLT4_s21_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/3be28b7447a94ccd0e07f84c3af03a/V4_0001_RNA_0005_23H5VFLT4_s03.pos.DupRate.xls 1618/V4_0001_RNA_0005_23H5VFLT4_s03.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/f171351c0074d76b3c7783aa9f81c5/V4_0001_RNA_0005_23H5VFLT4_s41_seqtool_mqc.tsv 1958/V4_0001_RNA_0005_23H5VFLT4_s41_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/f87db91963731f829732445c4adca5/tih_rna_sample_00248_23H5VFLT4_s01.md.bam.metrics 1921/tih_rna_sample_00248_23H5VFLT4_s01.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/cd56507ef46d052d7702f444145be3/tih_rna_sample_00163_23H5VFLT4_s43_seqtool_mqc.tsv 1990/tih_rna_sample_00163_23H5VFLT4_s43_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/bcb7e928c7a6add156be1788d4ecd1/tih_rna_sample_00402_23H5VFLT4_s28.fastp.json 40/tih_rna_sample_00402_23H5VFLT4_s28.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/4dafab2f39cb1c0659913e3eee470d/GM24385_0001_RNA_0001_23H5VFLT4_s08.attempt1.command.log 2047/GM24385_0001_RNA_0001_23H5VFLT4_s08.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/0628416d0142f161bbfe163dfae46d/tih_rna_sample_00220_23H5VFLT4_s16_trimmed_2_fastqc.zip 270/tih_rna_sample_00220_23H5VFLT4_s16_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/6acd0007799e706fbee31d541c68f9/V4_0001_RNA_0005_23H5VFLT4_s26.attempt1.command.log 2072/V4_0001_RNA_0005_23H5VFLT4_s26.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/ffca8165e2050884d8dbb1d7fb1dfc/tih_rna_sample_00274_23H5VFLT4_s14_kallisto_mqc.tsv 490/tih_rna_sample_00274_23H5VFLT4_s14_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/41a61819dab02c471fb9b9d5194165/tih_rna_sample_00410_23H5VFLT4_s34_preseq_mqc.tsv 2272/tih_rna_sample_00410_23H5VFLT4_s34_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/6a2ae9da64bb61540ca14915d9be43/V4_0001_RNA_0005_23H5VFLT4_s29_preseq_mqc.tsv 2249/V4_0001_RNA_0005_23H5VFLT4_s29_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/eceb796414e8a424956676ba74f1b5/tih_rna_sample_00089_23H5VFLT4_s39.inner_distance_freq.txt 862/tih_rna_sample_00089_23H5VFLT4_s39.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/14a74d2a889c7acac553948282f72d/tih_rna_sample_00251_23H5VFLT4_s03.ReadsPerGene.out.tab 713/tih_rna_sample_00251_23H5VFLT4_s03.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/c6af1679655f9d09a459b7ff781199/tih_rna_sample_00116_23H5VFLT4_s36_trimmed_2_fastqc.zip 294/tih_rna_sample_00116_23H5VFLT4_s36_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/9b9089bfd3dcdafc655d3d8cb1f4ff/V4_0001_RNA_0005_23H5VFLT4_s04.md.bam.metrics 1868/V4_0001_RNA_0005_23H5VFLT4_s04.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/df476bfd83b40eff1a72bf4c473a94/V4_0001_RNA_0005_23H5VFLT4_s28.log 402/V4_0001_RNA_0005_23H5VFLT4_s28.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/10717e8353824ea241f7108e79adfc/V4_0001_RNA_0005_23H5VFLT4_s26_kallisto_mqc.tsv 553/V4_0001_RNA_0005_23H5VFLT4_s26_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/3a8fffb6d2515c3baa465ed6d2dd10/V4_0001_RNA_0005_23H5VFLT4_s19.fastp.json 27/V4_0001_RNA_0005_23H5VFLT4_s19.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/767ac39e4bb29ce0f8f3d6f3d441cf/V4_0001_RNA_0005_23H5VFLT4_s10_rseqc_extra_mqc.tsv 1721/V4_0001_RNA_0005_23H5VFLT4_s10_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/3fc603f1b9371aacee71b04891a74b/tih_rna_sample_00280_23H5VFLT4_s18.fastp.json 75/tih_rna_sample_00280_23H5VFLT4_s18.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/9d36198a7e74eb9a013ae74e61aa6b/tih_rna_sample_00251_23H5VFLT4_s03.md.bam.metrics 1857/tih_rna_sample_00251_23H5VFLT4_s03.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/bd639f8ecabdbaa8fb958bcbb5377f/V4_0001_RNA_0005_23H5VFLT4_s17_combined_fusions_arriba_visualisation.pdf 2360/V4_0001_RNA_0005_23H5VFLT4_s17_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/f0c44a6cbac027218b4ed62de0890c/tih_rna_sample_00096_23H5VFLT4_s11.log 444/tih_rna_sample_00096_23H5VFLT4_s11.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/72a08075c3b69d974e03d444b715ad/HD789_0002_RNA_0008_23H5VFLT4_s19.lc_extrap.txt 2192/HD789_0002_RNA_0008_23H5VFLT4_s19.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/91158d78e43422099b867853cb6a9b/V4_0001_RNA_0005_23H5VFLT4_s27.ReadsPerGene.out.tab 752/V4_0001_RNA_0005_23H5VFLT4_s27.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/7d7a70b2cbbb9468a3215fd9625128/tih_rna_sample_00090_23H5VFLT4_s32_rseqc_extra_mqc.tsv 1711/tih_rna_sample_00090_23H5VFLT4_s32_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/c279b5daf8e882f5fdcbe2c1dc9504/V4_0001_RNA_0005_23H5VFLT4_s20_1_fastqc.zip 1025/V4_0001_RNA_0005_23H5VFLT4_s20_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/b9ee0b6b73d549971a5322fb28ac3e/NTC_0001_0001_23H5VFLT4_s15_preseq_mqc.tsv 2211/NTC_0001_0001_23H5VFLT4_s15_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/4e475858398af2f4711b593b97489a/V4_0001_RNA_0005_23H5VFLT4_s11_preseq_mqc.tsv 2236/V4_0001_RNA_0005_23H5VFLT4_s11_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0b/c3b9b6aa923a9caa60c75c2b6e3bfb/V4_0001_RNA_0005_23H5VFLT4_s39.attempt1.command.log 2035/V4_0001_RNA_0005_23H5VFLT4_s39.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/66a3840e96e168de9debda33be5f56/GM24385_0001_RNA_0001_23H5VFLT4_s08.read_distribution.txt 1772/GM24385_0001_RNA_0001_23H5VFLT4_s08.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/5063d5996f129e6970daf62df8b7bd/V4_0001_RNA_0005_23H5VFLT4_s29.fastp.html 142/V4_0001_RNA_0005_23H5VFLT4_s29.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/ec5ea61b3b867d1872445794f18cca/tih_rna_sample_00388_23H5VFLT4_s22.lc_extrap.txt 2193/tih_rna_sample_00388_23H5VFLT4_s22.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/4b0ee567ba68314e5b71d6b02677b4/tih_rna_sample_00272_23H5VFLT4_s09.attempt1.command.log 2075/tih_rna_sample_00272_23H5VFLT4_s09.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/b294cc14da72d59323ba8ce3a2cc7e/tih_rna_sample_00425_23H5VFLT4_s46.read_distribution.txt 1770/tih_rna_sample_00425_23H5VFLT4_s46.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/5ccc738099a1ecf6306a6cba742fe6/tih_rna_sample_00274_23H5VFLT4_s14.lc_extrap.txt 2122/tih_rna_sample_00274_23H5VFLT4_s14.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/b804ee5c91514710b49a6972b09837/V4_0001_RNA_0005_23H5VFLT4_s07.log 420/V4_0001_RNA_0005_23H5VFLT4_s07.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/0ca148801ced13752c826a31fd7367/tih_rna_sample_00089_23H5VFLT4_s39_trimmed_1_fastqc.zip 353/tih_rna_sample_00089_23H5VFLT4_s39_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/4c79b4e436bb2dca7f4f651468193f/V4_0001_RNA_0005_23H5VFLT4_s29_rseqc_extra_mqc.tsv 1667/V4_0001_RNA_0005_23H5VFLT4_s29_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/9d584c30c7986bc8151c35cadb1b33/GM24385_0001_RNA_0001_23H5VFLT4_s40.attempt1.command.log 2039/GM24385_0001_RNA_0001_23H5VFLT4_s40.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/ad417fecbbffa8d467dd62a33c9894/V4_0001_RNA_0005_23H5VFLT4_s43.junction_annotation.log 1388/V4_0001_RNA_0005_23H5VFLT4_s43.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/56f66f612e00d063ae039b9f32de0a/tih_rna_sample_00400_23H5VFLT4_s27.log 411/tih_rna_sample_00400_23H5VFLT4_s27.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/56ae72b4009926f120d55ee40c4278/V4_0001_RNA_0005_23H5VFLT4_s26.fastp.json 83/V4_0001_RNA_0005_23H5VFLT4_s26.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/ac7273d35185356eefbe4535379132/V4_0001_RNA_0005_23H5VFLT4_s04.log 479/V4_0001_RNA_0005_23H5VFLT4_s04.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/f6b97ab945383a62a405b10b1d7cb2/V4_0001_RNA_0005_23H5VFLT4_s43_2_fastqc.zip 1054/V4_0001_RNA_0005_23H5VFLT4_s43_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/8a0173ef4a1082960d875ea4553b36/V4_0001_RNA_0005_23H5VFLT4_s13_1_fastqc.zip 1085/V4_0001_RNA_0005_23H5VFLT4_s13_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/5f3393ce5b6d0acb95fcafe5932efb/V4_0001_RNA_0005_23H5VFLT4_s27.fastp.html 180/V4_0001_RNA_0005_23H5VFLT4_s27.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3e/66bdd99091a7d5a6497144bc623cbb/V4_0001_RNA_0005_23H5VFLT4_s13_combined_fusions_arriba_visualisation.pdf 2391/V4_0001_RNA_0005_23H5VFLT4_s13_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/e6a04338b2cf9bbe3935e13f007dba/V4_0001_RNA_0005_23H5VFLT4_s20.bam_stat.txt 1473/V4_0001_RNA_0005_23H5VFLT4_s20.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/c692fce1bcf5a64daaae35890766f3/V4_0001_RNA_0005_23H5VFLT4_s18.ReadsPerGene.out.tab 714/V4_0001_RNA_0005_23H5VFLT4_s18.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/b46d7328dc882dcfe90c2b867d47cf/V4_0001_RNA_0005_23H5VFLT4_s44.pos.DupRate.xls 1589/V4_0001_RNA_0005_23H5VFLT4_s44.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/69e71c08c5b9aec1042159b2427f7f/V4_0001_RNA_0005_23H5VFLT4_s29.read_distribution.txt 1796/V4_0001_RNA_0005_23H5VFLT4_s29.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/f90ccaadaac2a4d2ec9b0d7f8176e9/tih_rna_sample_00402_23H5VFLT4_s28_seqtool_mqc.tsv 2014/tih_rna_sample_00402_23H5VFLT4_s28_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/b057a93f9e07b9a742799ddb59101e/tih_rna_sample_00122_23H5VFLT4_s42.junctionSaturation_plot.r 1160/tih_rna_sample_00122_23H5VFLT4_s42.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/d36bc688709738beaea8a0f3041441/tih_rna_sample_00377_23H5VFLT4_s23_combined_fusions_arriba_visualisation.pdf 2394/tih_rna_sample_00377_23H5VFLT4_s23_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/9dfb9cc0de6a22b9625966282b898f/tih_rna_sample_00090_23H5VFLT4_s32.log 441/tih_rna_sample_00090_23H5VFLT4_s32.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/c9c493cbca1ef149da5dac7b141a65/tih_rna_sample_00111_23H5VFLT4_s30.bam_stat.txt 1448/tih_rna_sample_00111_23H5VFLT4_s30.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/f036805a6d3b1dbabc6b1929bb28e5/tih_rna_sample_00090_23H5VFLT4_s32.infer_experiment.txt 939/tih_rna_sample_00090_23H5VFLT4_s32.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/bfec0d481255ea1d28fcce6418fc57/V4_0001_RNA_0005_23H5VFLT4_s22.bam_stat.txt 1492/V4_0001_RNA_0005_23H5VFLT4_s22.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/a12824573343c61f0213970a21bf14/tih_rna_sample_00251_23H5VFLT4_s03.attempt1.command.log 2081/tih_rna_sample_00251_23H5VFLT4_s03.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/f750478f2a286fd71bcc81a17df919/V4_0001_RNA_0005_23H5VFLT4_s29_combined_fusions_arriba_visualisation.pdf 2355/V4_0001_RNA_0005_23H5VFLT4_s29_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/0d8c1dab00c6d7a65c43dd3b7af5ac/tih_rna_sample_00127_23H5VFLT4_s08.inner_distance_freq.txt 781/tih_rna_sample_00127_23H5VFLT4_s08.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/06a9ddc3d884497a71a8f373bf0ffb/V4_0001_RNA_0005_23H5VFLT4_s19.log 445/V4_0001_RNA_0005_23H5VFLT4_s19.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/211109a70c204aa5cf8b249d04afc4/tih_rna_sample_00402_23H5VFLT4_s28.Log.final.out 638/tih_rna_sample_00402_23H5VFLT4_s28.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/7f7203554a207d48487a993f4f290e/tih_rna_sample_00090_23H5VFLT4_s32.read_distribution.txt 1817/tih_rna_sample_00090_23H5VFLT4_s32.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/29d4113478a8aad43e556381725c6b/tih_rna_sample_00115_23H5VFLT4_s35.pos.DupRate.xls 1556/tih_rna_sample_00115_23H5VFLT4_s35.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/ff85e5d699840511b8f9e65b1a08be/V4_0001_RNA_0005_23H5VFLT4_s47.junctionSaturation_plot.r 1219/V4_0001_RNA_0005_23H5VFLT4_s47.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/05c10dab6a493ba7b2e1c5107879f0/V4_0001_RNA_0005_23H5VFLT4_s28.junctionSaturation_plot.r 1168/V4_0001_RNA_0005_23H5VFLT4_s28.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f1/5a8bff286952d230497cd114d87aa8/tih_rna_sample_00425_23H5VFLT4_s46_2_fastqc.zip 1004/tih_rna_sample_00425_23H5VFLT4_s46_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/2a417cb02ea714d454e2dd5bb89007/tih_rna_sample_00089_23H5VFLT4_s39.lc_extrap.txt 2174/tih_rna_sample_00089_23H5VFLT4_s39.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/1f01e9f8ff6d1f2831dce290b6e195/V4_0001_RNA_0005_23H5VFLT4_s11.Log.final.out 635/V4_0001_RNA_0005_23H5VFLT4_s11.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/798180dbabd54d8fbfe95d96359807/V4_0001_RNA_0005_23H5VFLT4_s36_rseqc_extra_mqc.tsv 1682/V4_0001_RNA_0005_23H5VFLT4_s36_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/39ed6ef7fce857eabe4e02208750b3/V4_0001_RNA_0005_23H5VFLT4_s44.infer_experiment.txt 927/V4_0001_RNA_0005_23H5VFLT4_s44.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/faf6872eaf8a9219e6453f4944c697/GM24385_0001_RNA_0001_23H5VFLT4_s32_contamination_mqc.tsv 1269/GM24385_0001_RNA_0001_23H5VFLT4_s32_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/60d4c73a315f534384153a4dcfde9d/V4_0001_RNA_0005_23H5VFLT4_s43.bam_stat.txt 1467/V4_0001_RNA_0005_23H5VFLT4_s43.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a8/6c8e763c5851a17ab1edd84996b3d6/V4_0001_RNA_0005_23H5VFLT4_s29_2_fastqc.zip 1036/V4_0001_RNA_0005_23H5VFLT4_s29_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/7bfc5379f8824e2568e1f0d6d42c02/tih_rna_sample_00402_23H5VFLT4_s28_contamination_mqc.tsv 1312/tih_rna_sample_00402_23H5VFLT4_s28_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/74aa4ec924bcb52bfd16642b2f279c/tih_rna_sample_00088_23H5VFLT4_s02.pos.DupRate.xls 1631/tih_rna_sample_00088_23H5VFLT4_s02.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/a401bc9d8d4f63ae149d7f0fa53278/V4_0001_RNA_0005_23H5VFLT4_s19.read_distribution.txt 1763/V4_0001_RNA_0005_23H5VFLT4_s19.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/987e1740ce5ecb2cda589168b0cf7c/tih_rna_sample_00220_23H5VFLT4_s16_1_fastqc.zip 1021/tih_rna_sample_00220_23H5VFLT4_s16_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/127caf268b31f4d1482e8cf3ab1d8a/GM24385_0001_RNA_0001_23H5VFLT4_s32.read_distribution.txt 1745/GM24385_0001_RNA_0001_23H5VFLT4_s32.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/4c69b398e7ed6ebd52c3aac2d788fc/tih_rna_sample_00377_23H5VFLT4_s23.fastp.json 38/tih_rna_sample_00377_23H5VFLT4_s23.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/3503d0f60fc00400759b456afcf538/tih_rna_sample_00410_23H5VFLT4_s34.bam_stat.txt 1466/tih_rna_sample_00410_23H5VFLT4_s34.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/80/fdea28336d66466321b09424c0864e/V4_0001_RNA_0005_23H5VFLT4_s36.pos.DupRate.xls 1573/V4_0001_RNA_0005_23H5VFLT4_s36.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/21eef304b9841258f148a2d37a6517/V4_0001_RNA_0005_23H5VFLT4_s42.infer_experiment.txt 904/V4_0001_RNA_0005_23H5VFLT4_s42.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/d255a83425d153220d4da674045048/GM24385_0001_RNA_0001_23H5VFLT4_s24.fastp.json 20/GM24385_0001_RNA_0001_23H5VFLT4_s24.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/b3110ad112255e2cdba9a2ea7512a7/tih_rna_sample_00218_23H5VFLT4_s10_seqtool_mqc.tsv 1963/tih_rna_sample_00218_23H5VFLT4_s10_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/e3184b868da2fadafa5c76dca1087f/tih_rna_sample_00388_23H5VFLT4_s22.inner_distance_freq.txt 866/tih_rna_sample_00388_23H5VFLT4_s22.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bc/3c9d808e1d5758ce037d60bb741ecc/V4_0001_RNA_0005_23H5VFLT4_s23_1_fastqc.zip 1045/V4_0001_RNA_0005_23H5VFLT4_s23_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/0e7626460edd3194e8a174b351e98d/tih_rna_sample_00122_23H5VFLT4_s42.fastp.json 11/tih_rna_sample_00122_23H5VFLT4_s42.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/7d35dc54e84c080260e965c9cf01f9/tih_rna_sample_00400_23H5VFLT4_s27_combined_fusions_arriba_visualisation.pdf 2390/tih_rna_sample_00400_23H5VFLT4_s27_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/9b9a633edf27f2cab0eca837f28d3e/tih_rna_sample_00272_23H5VFLT4_s09_combined_fusions_arriba_visualisation.pdf 2378/tih_rna_sample_00272_23H5VFLT4_s09_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/4b0ee567ba68314e5b71d6b02677b4/tih_rna_sample_00272_23H5VFLT4_s09.lc_extrap.txt 2171/tih_rna_sample_00272_23H5VFLT4_s09.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/55233ec824ddd50bde906e582ddd8e/V4_0001_RNA_0005_23H5VFLT4_s36_trimmed_2_fastqc.zip 322/V4_0001_RNA_0005_23H5VFLT4_s36_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/67/f676d573a08e78f819b49e61bf64a3/tih_rna_sample_00116_23H5VFLT4_s36_rseqc_extra_mqc.tsv 1723/tih_rna_sample_00116_23H5VFLT4_s36_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/d68b557256e2d46accb1ed3e06b562/tih_rna_sample_00115_23H5VFLT4_s35_seqtool_mqc.tsv 1941/tih_rna_sample_00115_23H5VFLT4_s35_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/3f9a86caccb934ff4b5673d0b5a802/V4_0001_RNA_0005_23H5VFLT4_s28_rseqc_extra_mqc.tsv 1645/V4_0001_RNA_0005_23H5VFLT4_s28_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/ca0af2b4fb78debc452b2d4c86a55a/GM24385_0001_RNA_0001_23H5VFLT4_s32.log 433/GM24385_0001_RNA_0001_23H5VFLT4_s32.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/d554e91f5bbb4fb7ddbfd42c91f89d/tih_rna_sample_00248_23H5VFLT4_s01.inner_distance_freq.txt 839/tih_rna_sample_00248_23H5VFLT4_s01.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/07a96c54e892eef8d24ea1e23fba93/GM24385_0001_RNA_0001_23H5VFLT4_s48.bam_stat.txt 1450/GM24385_0001_RNA_0001_23H5VFLT4_s48.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/b6ce4ff6ad5505a3bc4c2513a84df2/tih_rna_sample_00097_23H5VFLT4_s12.attempt1.command.log 2086/tih_rna_sample_00097_23H5VFLT4_s12.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/c1fc8d48fc561d044f20e5bd0b4504/tih_rna_sample_00104_23H5VFLT4_s20.read_distribution.txt 1739/tih_rna_sample_00104_23H5VFLT4_s20.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/37ce5d9eced2462fe572b6ec0ea7d6/tih_rna_sample_00089_23H5VFLT4_s39.pos.DupRate.xls 1632/tih_rna_sample_00089_23H5VFLT4_s39.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/2f1cc10fb4f3c2e291a873d56a80ce/tih_rna_sample_00087_23H5VFLT4_s17.fastp.json 94/tih_rna_sample_00087_23H5VFLT4_s17.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/f3da565c0d3f8d2e5576b23f3c1874/tih_rna_sample_00116_23H5VFLT4_s36.fastp.json 33/tih_rna_sample_00116_23H5VFLT4_s36.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/84cfa31c3185aab36b449b3fc202c6/tih_rna_sample_00377_23H5VFLT4_s23_trimmed_2_fastqc.zip 330/tih_rna_sample_00377_23H5VFLT4_s23_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/2e707e7e9e6e6b2453d9f40ae890c0/V4_0001_RNA_0005_23H5VFLT4_s35.Log.final.out 598/V4_0001_RNA_0005_23H5VFLT4_s35.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fe/04d89892fab93c2b4861888be72cd9/V4_0001_RNA_0005_23H5VFLT4_s06.bam_stat.txt 1487/V4_0001_RNA_0005_23H5VFLT4_s06.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/12ab55181987e25556dce37dea93ad/tih_rna_sample_00425_23H5VFLT4_s46.fastp.html 119/tih_rna_sample_00425_23H5VFLT4_s46.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/4de5316b1cb0d0dfbbaab349476eb1/tih_rna_sample_00089_23H5VFLT4_s39_seqtool_mqc.tsv 1995/tih_rna_sample_00089_23H5VFLT4_s39_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/2100d1a0b51cb6cdb909f4b206c9b6/tih_rna_sample_00116_23H5VFLT4_s36_combined_fusions_arriba_visualisation.pdf 2335/tih_rna_sample_00116_23H5VFLT4_s36_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/10d200a9144d385c34ffc792123899/tih_rna_sample_00396_23H5VFLT4_s26.fastp.html 159/tih_rna_sample_00396_23H5VFLT4_s26.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/852c8e14d128c482d11d638c26fb1d/V4_0001_RNA_0001_23H5VFLT4_s13.junction_annotation.log 1384/V4_0001_RNA_0001_23H5VFLT4_s13.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/76a5ef29a28c2f2a35f29d7bed7ab5/tih_rna_sample_00377_23H5VFLT4_s23.infer_experiment.txt 935/tih_rna_sample_00377_23H5VFLT4_s23.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/4fb418eceb4e794e1945a578fdd314/tih_rna_sample_00410_23H5VFLT4_s34.attempt1.command.log 2080/tih_rna_sample_00410_23H5VFLT4_s34.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/d607d3dc85a420472529d0ad67dac2/V4_0001_RNA_0005_23H5VFLT4_s22.ReadsPerGene.out.tab 701/V4_0001_RNA_0005_23H5VFLT4_s22.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/d1be2f8d075a0bf7b22db4a0d80f34/tih_rna_sample_00426_23H5VFLT4_s48_preseq_mqc.tsv 2266/tih_rna_sample_00426_23H5VFLT4_s48_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/e8fcb1a0f93b7cb2acfd5acda5111e/V4_0001_RNA_0005_23H5VFLT4_s36_kallisto_mqc.tsv 559/V4_0001_RNA_0005_23H5VFLT4_s36_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/990244ab9ce281dd8fffce59fbfd26/tih_rna_sample_00403_23H5VFLT4_s29.junction_annotation.log 1407/tih_rna_sample_00403_23H5VFLT4_s29.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/95424904c0dc5d405851803957076b/GM24385_0001_RNA_0001_23H5VFLT4_s48_trimmed_2_fastqc.zip 216/GM24385_0001_RNA_0001_23H5VFLT4_s48_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/4412397ad15f11fab18589d491bbf0/V4_0001_RNA_0005_23H5VFLT4_s04_rseqc_extra_mqc.tsv 1698/V4_0001_RNA_0005_23H5VFLT4_s04_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/35d8aa612f3cd735eb29058c01cd80/tih_rna_sample_00117_23H5VFLT4_s37.attempt1.command.log 2034/tih_rna_sample_00117_23H5VFLT4_s37.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/58b86e8fb63e9d1ca742347f9c686f/V4_0001_RNA_0005_23H5VFLT4_s19.infer_experiment.txt 913/V4_0001_RNA_0005_23H5VFLT4_s19.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/48539193229aebcbf159d061d4ad07/GM24385_0001_RNA_0001_23H5VFLT4_s16.bam_stat.txt 1481/GM24385_0001_RNA_0001_23H5VFLT4_s16.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/34079b33231d7fd5604b2bacd85b73/NTC_0001_0001_23H5VFLT4_s15.fastp.html 99/NTC_0001_0001_23H5VFLT4_s15.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/427a969e2521a0013b92ab7768fe85/V4_0001_RNA_0005_23H5VFLT4_s13.Log.final.out 669/V4_0001_RNA_0005_23H5VFLT4_s13.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/62b56d1ffa23c437a438f0b551b1ca/tih_rna_sample_00280_23H5VFLT4_s18.Log.final.out 654/tih_rna_sample_00280_23H5VFLT4_s18.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/41/148e9525c7a43f33f7f5dcb976e011/V4_0001_RNA_0005_23H5VFLT4_s45.log 467/V4_0001_RNA_0005_23H5VFLT4_s45.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/2da3cc2f33e99adaf6575e4aed7d92/tih_rna_sample_00088_23H5VFLT4_s02_preseq_mqc.tsv 2256/tih_rna_sample_00088_23H5VFLT4_s02_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/677f95cb7723a5cb7d46ff0d683ad3/tih_rna_sample_00378_23H5VFLT4_s24.read_distribution.txt 1734/tih_rna_sample_00378_23H5VFLT4_s24.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/bc6cef3b755ddf34a057d9b3e57bc5/tih_rna_sample_00400_23H5VFLT4_s27_contamination_mqc.tsv 1327/tih_rna_sample_00400_23H5VFLT4_s27_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/b56d68011ba6fc149bc6e5a47a18d2/V4_0001_RNA_0005_23H5VFLT4_s02.read_distribution.txt 1825/V4_0001_RNA_0005_23H5VFLT4_s02.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/09f16f31548e5cddb7e5a9a991b9b5/tih_rna_sample_00251_23H5VFLT4_s03.pos.DupRate.xls 1572/tih_rna_sample_00251_23H5VFLT4_s03.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/a780b1e2c2af60fec124b18ddaf373/GM24385_0001_RNA_0001_23H5VFLT4_s16.md.bam.metrics 1865/GM24385_0001_RNA_0001_23H5VFLT4_s16.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/c3cae1d9086ec6852188b295917dd9/GM24385_0001_RNA_0001_23H5VFLT4_s40_preseq_mqc.tsv 2231/GM24385_0001_RNA_0001_23H5VFLT4_s40_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/917f3c775bbb8d43c92fc115cfd8b9/V4_0001_RNA_0005_23H5VFLT4_s13.fastp.json 80/V4_0001_RNA_0005_23H5VFLT4_s13.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/3953e376e983cfa7a8821c001efe8b/V4_0001_RNA_0005_23H5VFLT4_s39.bam_stat.txt 1502/V4_0001_RNA_0005_23H5VFLT4_s39.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/3ae659efdaeb7499f3eab07682beae/V4_0001_RNA_0005_23H5VFLT4_s22.lc_extrap.txt 2149/V4_0001_RNA_0005_23H5VFLT4_s22.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/0c0b57205b94edd9031cd7ac0acbcc/tih_rna_sample_00410_23H5VFLT4_s34.fastp.json 19/tih_rna_sample_00410_23H5VFLT4_s34.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/174b185e6eea6e81bfe906b589510f/tih_rna_sample_00118_23H5VFLT4_s38.fastp.json 34/tih_rna_sample_00118_23H5VFLT4_s38.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/048b19e0625499b94acd89ef7f8611/tih_rna_sample_00388_23H5VFLT4_s22.fastp.html 158/tih_rna_sample_00388_23H5VFLT4_s22.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/e90d9910dfe23a9fcf79c1a9c1f56a/tih_rna_sample_00419_23H5VFLT4_s44.ReadsPerGene.out.tab 723/tih_rna_sample_00419_23H5VFLT4_s44.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/632bffbeed98a690b177578041a4ec/tih_rna_sample_00116_23H5VFLT4_s36.ReadsPerGene.out.tab 728/tih_rna_sample_00116_23H5VFLT4_s36.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/62c3c335dab38a3fb3c6fb8499d33a/GM24385_0001_RNA_0001_23H5VFLT4_s24_seqtool_mqc.tsv 1937/GM24385_0001_RNA_0001_23H5VFLT4_s24_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/fd6c9351980b306a16024ed8dec458/tih_rna_sample_00425_23H5VFLT4_s46.md.bam.metrics 1917/tih_rna_sample_00425_23H5VFLT4_s46.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/d734574b7363e897497ede472015c0/tih_rna_sample_00425_23H5VFLT4_s46_seqtool_mqc.tsv 2002/tih_rna_sample_00425_23H5VFLT4_s46_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/bc12bb33188409d409c43ce6727ce5/V4_0001_RNA_0005_23H5VFLT4_s36.ReadsPerGene.out.tab 718/V4_0001_RNA_0005_23H5VFLT4_s36.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/d09ec0e50199d2955c411d29bbd7cf/GM24385_0001_RNA_0001_23H5VFLT4_s16_trimmed_2_fastqc.zip 338/GM24385_0001_RNA_0001_23H5VFLT4_s16_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/00592105b495e42f87f7a339b540c8/GM24385_0001_RNA_0001_23H5VFLT4_s48.junction_annotation.log 1357/GM24385_0001_RNA_0001_23H5VFLT4_s48.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/aa1929c5a3b8bee24af449fbbb911d/tih_rna_sample_00403_23H5VFLT4_s29.infer_experiment.txt 897/tih_rna_sample_00403_23H5VFLT4_s29.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/c951f88c6896261d4e06951e362b0b/V4_0001_RNA_0005_23H5VFLT4_s02.bam_stat.txt 1510/V4_0001_RNA_0005_23H5VFLT4_s02.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/c8b95737e6b38767294a3916cd6345/GM24385_0001_RNA_0001_23H5VFLT4_s16.read_distribution.txt 1766/GM24385_0001_RNA_0001_23H5VFLT4_s16.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/4e893388c58955a814629c20286466/tih_rna_sample_00117_23H5VFLT4_s37_preseq_mqc.tsv 2226/tih_rna_sample_00117_23H5VFLT4_s37_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/9adf3fcaeef6634ab6a5f6b4f668d2/tih_rna_sample_00402_23H5VFLT4_s28.junctionSaturation_plot.r 1248/tih_rna_sample_00402_23H5VFLT4_s28.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/aec2fcbc3f94709310252027961db7/V4_0001_RNA_0005_23H5VFLT4_s11.bam_stat.txt 1513/V4_0001_RNA_0005_23H5VFLT4_s11.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/75c2a808693a4e8df5c77bfe82d07a/V4_0001_RNA_0005_23H5VFLT4_s05_kallisto_mqc.tsv 547/V4_0001_RNA_0005_23H5VFLT4_s05_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/03138f70a002c8cdbdbfdfadd738fa/V4_0001_RNA_0005_23H5VFLT4_s12_rseqc_extra_mqc.tsv 1719/V4_0001_RNA_0005_23H5VFLT4_s12_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/e2e1822768d473dc9d249eb5f6a1c8/tih_rna_sample_00396_23H5VFLT4_s26_1_fastqc.zip 1119/tih_rna_sample_00396_23H5VFLT4_s26_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/c51b4740b66409ec66e48fe35b4784/tih_rna_sample_00121_23H5VFLT4_s41_contamination_mqc.tsv 1301/tih_rna_sample_00121_23H5VFLT4_s41_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/2a3cfcd89be00a52222129eb3c1c63/V4_0001_RNA_0005_23H5VFLT4_s35.junction_annotation.log 1360/V4_0001_RNA_0005_23H5VFLT4_s35.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/4d4b04557c7874cdf6b3ff11cc5241/tih_rna_sample_00425_23H5VFLT4_s46.lc_extrap.txt 2185/tih_rna_sample_00425_23H5VFLT4_s46.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/3d6b4c72c4810953c161ef4ab2ec51/V4_0001_RNA_0005_23H5VFLT4_s05.infer_experiment.txt 922/V4_0001_RNA_0005_23H5VFLT4_s05.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/05/42598fc183ee373bdf5489a2f0e7df/V4_0001_RNA_0005_23H5VFLT4_s46_2_fastqc.zip 1014/V4_0001_RNA_0005_23H5VFLT4_s46_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/ff9c158154b9ebe459892f36ff1ba5/V4_0001_RNA_0005_23H5VFLT4_s19.inner_distance_freq.txt 817/V4_0001_RNA_0005_23H5VFLT4_s19.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/16/3940fa2bace73752a6662ffcc94f2a/V4_0001_RNA_0005_23H5VFLT4_s12.inner_distance_freq.txt 857/V4_0001_RNA_0005_23H5VFLT4_s12.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/31ebabfca26719b7c0dabbebe0e7ec/V4_0001_RNA_0005_23H5VFLT4_s44_contamination_mqc.tsv 1290/V4_0001_RNA_0005_23H5VFLT4_s44_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/d8fe3333739785ea43a256ad610598/tih_rna_sample_00280_23H5VFLT4_s18.md.bam.metrics 1905/tih_rna_sample_00280_23H5VFLT4_s18.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/5a03d95b67a210bff70bce3cf2dea6/tih_rna_sample_00274_23H5VFLT4_s14.fastp.html 109/tih_rna_sample_00274_23H5VFLT4_s14.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b8/f65b3bf2af8553f3b1cb76cdc6ae10/tih_rna_sample_00105_23H5VFLT4_s21_seqtool_mqc.tsv 1924/tih_rna_sample_00105_23H5VFLT4_s21_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/bdfb20a05d3ee6450f734bce8e395e/tih_rna_sample_00097_23H5VFLT4_s12.inner_distance_freq.txt 815/tih_rna_sample_00097_23H5VFLT4_s12.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bc/831ffe1fd7cdc0a2292f862608e492/GM24385_0001_RNA_0001_23H5VFLT4_s40.md.bam.metrics 1846/GM24385_0001_RNA_0001_23H5VFLT4_s40.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/f730650f46b446cac3359e80e4ee08/GM24385_0001_RNA_0001_23H5VFLT4_s24.junction_annotation.log 1370/GM24385_0001_RNA_0001_23H5VFLT4_s24.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/b4d4db9a2ead884244b6a9808e91fa/V4_0001_RNA_0005_23H5VFLT4_s38.ReadsPerGene.out.tab 698/V4_0001_RNA_0005_23H5VFLT4_s38.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/e7b72356b531e8913c3eab963df86f/V4_0001_RNA_0005_23H5VFLT4_s02.attempt2.command.log 2106/V4_0001_RNA_0005_23H5VFLT4_s02.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/5cd6779ebf41145bed946dc66d9d0c/tih_rna_sample_00090_23H5VFLT4_s32_combined_fusions_arriba_visualisation.pdf 2382/tih_rna_sample_00090_23H5VFLT4_s32_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/fc9581ac77be6159b6951dbfba668e/V4_0001_RNA_0005_23H5VFLT4_s31_trimmed_1_fastqc.zip 305/V4_0001_RNA_0005_23H5VFLT4_s31_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/68e3a518ba3415b90928d7c1bf77ac/V4_0001_RNA_0005_23H5VFLT4_s23.fastp.html 177/V4_0001_RNA_0005_23H5VFLT4_s23.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/6c47dd798ff041f5680eec05d67e2c/tih_rna_sample_00402_23H5VFLT4_s28_kallisto_mqc.tsv 524/tih_rna_sample_00402_23H5VFLT4_s28_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/48ee26a3941d753219b46ac699b139/V4_0001_RNA_0005_23H5VFLT4_s47_rseqc_extra_mqc.tsv 1712/V4_0001_RNA_0005_23H5VFLT4_s47_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/b542b1db032c9150e3553fe08ef454/V4_0001_RNA_0005_23H5VFLT4_s07_combined_fusions_arriba_visualisation.pdf 2337/V4_0001_RNA_0005_23H5VFLT4_s07_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d6/ee370c87b2c66317a927361a37edf3/V4_0001_RNA_0005_23H5VFLT4_s38.junctionSaturation_plot.r 1177/V4_0001_RNA_0005_23H5VFLT4_s38.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/18e70d5b8bc2dc88e441e28c8740de/V4_0001_RNA_0005_23H5VFLT4_s03_preseq_mqc.tsv 2263/V4_0001_RNA_0005_23H5VFLT4_s03_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/dc6a2ad4ea99ecf459ab36fe4755b2/V4_0001_RNA_0005_23H5VFLT4_s43.inner_distance_freq.txt 800/V4_0001_RNA_0005_23H5VFLT4_s43.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/76d83696daf26fcf25f7bb106103a5/tih_rna_sample_00111_23H5VFLT4_s30_seqtool_mqc.tsv 1927/tih_rna_sample_00111_23H5VFLT4_s30_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/4cfdd5c33f772f0d488b2e2e77c0f6/tih_rna_sample_00096_23H5VFLT4_s11.fastp.html 194/tih_rna_sample_00096_23H5VFLT4_s11.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/f17a16f9416acf52ea0d2994e4ffa5/tih_rna_sample_00425_23H5VFLT4_s46_trimmed_1_fastqc.zip 235/tih_rna_sample_00425_23H5VFLT4_s46_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/769cd58c6a76a812cf4f39d386a1c2/tih_rna_sample_00410_23H5VFLT4_s34_1_fastqc.zip 1049/tih_rna_sample_00410_23H5VFLT4_s34_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/2aec2951e250df88ba30a6c192ff3c/V4_0001_RNA_0005_23H5VFLT4_s28.junction_annotation.log 1359/V4_0001_RNA_0005_23H5VFLT4_s28.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cb/672b4df828925e13df975a848267b9/V4_0001_RNA_0005_23H5VFLT4_s04.attempt1.command.log 2093/V4_0001_RNA_0005_23H5VFLT4_s04.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/5302b49e3998ff93290667ba780107/tih_rna_sample_00254_23H5VFLT4_s05_preseq_mqc.tsv 2253/tih_rna_sample_00254_23H5VFLT4_s05_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/35c172a73ab4a1c56754d0069b2cfc/V4_0001_RNA_0005_23H5VFLT4_s21_kallisto_mqc.tsv 568/V4_0001_RNA_0005_23H5VFLT4_s21_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/0ed55af3bab0be8fcc8ca1909a2c03/V4_0001_RNA_0005_23H5VFLT4_s37.read_distribution.txt 1797/V4_0001_RNA_0005_23H5VFLT4_s37.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/2051677671f2aa68d338c15a3959c1/V4_0001_RNA_0005_23H5VFLT4_s22_preseq_mqc.tsv 2245/V4_0001_RNA_0005_23H5VFLT4_s22_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/95/1c975e20ce5ab8c3e24afca6cfe55a/V4_0001_RNA_0005_23H5VFLT4_s14_seqtool_mqc.tsv 1998/V4_0001_RNA_0005_23H5VFLT4_s14_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/f3460ee2d245566975a8168415d31f/tih_rna_sample_00089_23H5VFLT4_s39.fastp.json 96/tih_rna_sample_00089_23H5VFLT4_s39.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/e0f073e345a9f45b76e913e712bd26/V4_0001_RNA_0005_23H5VFLT4_s46.bam_stat.txt 1455/V4_0001_RNA_0005_23H5VFLT4_s46.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/a9c12e6405d4c8111f797ed3dcd120/V4_0001_RNA_0005_23H5VFLT4_s45.bam_stat.txt 1516/V4_0001_RNA_0005_23H5VFLT4_s45.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/54c949831546bec88f3e0e51f26b20/tih_rna_sample_00396_23H5VFLT4_s26_seqtool_mqc.tsv 1991/tih_rna_sample_00396_23H5VFLT4_s26_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/8e061445f3608d8521dd608ad9ad93/V4_0001_RNA_0005_23H5VFLT4_s46.junctionSaturation_plot.r 1169/V4_0001_RNA_0005_23H5VFLT4_s46.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cb/672b4df828925e13df975a848267b9/V4_0001_RNA_0005_23H5VFLT4_s04.lc_extrap.txt 2189/V4_0001_RNA_0005_23H5VFLT4_s04.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/9a80568ced37c003d750c5c19defa4/V4_0001_RNA_0001_23H5VFLT4_s13.attempt1.command.log 2098/V4_0001_RNA_0001_23H5VFLT4_s13.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d6/3e00b679d12cf6dd9d812252d0dfa0/V4_0001_RNA_0005_23H5VFLT4_s22.md.bam.metrics 1852/V4_0001_RNA_0005_23H5VFLT4_s22.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/d17b2451e285d3c597ddf938dfb0f4/tih_rna_sample_00087_23H5VFLT4_s17.md.bam.metrics 1881/tih_rna_sample_00087_23H5VFLT4_s17.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/146241a6e45f4ffc7a4f546b9faf23/NTC_0001_0001_23H5VFLT4_s15_kallisto_mqc.tsv 483/NTC_0001_0001_23H5VFLT4_s15_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/3ebd7e137e8e5c5b4809140e0ba494/V4_0001_RNA_0005_23H5VFLT4_s09_seqtool_mqc.tsv 1972/V4_0001_RNA_0005_23H5VFLT4_s09_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/d1a5d47361b2f09a8c40973f9e468c/tih_rna_sample_00261_23H5VFLT4_s06_2_fastqc.zip 1016/tih_rna_sample_00261_23H5VFLT4_s06_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/1f01e9f8ff6d1f2831dce290b6e195/V4_0001_RNA_0005_23H5VFLT4_s11.ReadsPerGene.out.tab 731/V4_0001_RNA_0005_23H5VFLT4_s11.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/44c9759d88ce00d7c101a889373134/GM24385_0001_RNA_0001_23H5VFLT4_s40.fastp.json 43/GM24385_0001_RNA_0001_23H5VFLT4_s40.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/5cd621367e614467a45922e89f2526/V4_0001_RNA_0005_23H5VFLT4_s01.fastp.json 77/V4_0001_RNA_0005_23H5VFLT4_s01.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/81f191292379b9308c5009d52631ce/V4_0001_RNA_0001_23H5VFLT4_s13.pos.DupRate.xls 1590/V4_0001_RNA_0001_23H5VFLT4_s13.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/835a9ddafc6f0970b89a8fc2f52eb0/V4_0001_RNA_0005_23H5VFLT4_s20_trimmed_2_fastqc.zip 250/V4_0001_RNA_0005_23H5VFLT4_s20_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/f97ccbfb8435fa9ae9c6b512789867/GM24385_0001_RNA_0001_23H5VFLT4_s16_seqtool_mqc.tsv 1956/GM24385_0001_RNA_0001_23H5VFLT4_s16_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/e9684863ecb0fe9a6da978eebc31df/V4_0001_RNA_0005_23H5VFLT4_s19.attempt1.command.log 2087/V4_0001_RNA_0005_23H5VFLT4_s19.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/982a3d1d19a84291560961dfb93929/V4_0001_RNA_0005_23H5VFLT4_s10_combined_fusions_arriba_visualisation.pdf 2396/V4_0001_RNA_0005_23H5VFLT4_s10_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/3430ad9a5f32e14d0dc0640fcb3452/tih_rna_sample_00261_23H5VFLT4_s06_preseq_mqc.tsv 2250/tih_rna_sample_00261_23H5VFLT4_s06_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/a394bf30328e3708b63e218bafdaac/tih_rna_sample_00377_23H5VFLT4_s23_2_fastqc.zip 1104/tih_rna_sample_00377_23H5VFLT4_s23_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/51/09020a33e93b24ccd59c7c54d41c16/V4_0001_RNA_0005_23H5VFLT4_s06_combined_fusions_arriba_visualisation.pdf 2345/V4_0001_RNA_0005_23H5VFLT4_s06_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/d3c3156036ad87376f586e7db4855d/tih_rna_sample_00403_23H5VFLT4_s29.bam_stat.txt 1476/tih_rna_sample_00403_23H5VFLT4_s29.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/071bba1324bdb84f711a1e7216f784/tih_rna_sample_00280_23H5VFLT4_s18_trimmed_1_fastqc.zip 381/tih_rna_sample_00280_23H5VFLT4_s18_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/79f7420bf673292cee0795619e9179/tih_rna_sample_00235_23H5VFLT4_s07_seqtool_mqc.tsv 1965/tih_rna_sample_00235_23H5VFLT4_s07_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/5a03d95b67a210bff70bce3cf2dea6/tih_rna_sample_00274_23H5VFLT4_s14.fastp.json 13/tih_rna_sample_00274_23H5VFLT4_s14.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/d34b414a0c00d93070e76a0828ae5b/V4_0001_RNA_0005_23H5VFLT4_s07.read_distribution.txt 1748/V4_0001_RNA_0005_23H5VFLT4_s07.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/ec45d4b4b9b07224b9c7eec42ad461/tih_rna_sample_00274_23H5VFLT4_s14.log 394/tih_rna_sample_00274_23H5VFLT4_s14.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/649438ab10b95488bba2d026bb3f87/tih_rna_sample_00414_23H5VFLT4_s40_trimmed_2_fastqc.zip 286/tih_rna_sample_00414_23H5VFLT4_s40_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/987e1740ce5ecb2cda589168b0cf7c/tih_rna_sample_00220_23H5VFLT4_s16_2_fastqc.zip 1022/tih_rna_sample_00220_23H5VFLT4_s16_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/f822f9504f25900aedc16fc9de2f8c/V4_0001_RNA_0005_23H5VFLT4_s34.read_distribution.txt 1791/V4_0001_RNA_0005_23H5VFLT4_s34.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/7913ddaa106b50198763d63dd4f990/tih_rna_sample_00403_23H5VFLT4_s29_contamination_mqc.tsv 1282/tih_rna_sample_00403_23H5VFLT4_s29_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/074143117379a7f3a6bc965edd433a/tih_rna_sample_00096_23H5VFLT4_s11.read_distribution.txt 1773/tih_rna_sample_00096_23H5VFLT4_s11.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/1ca1ee40356a1c9e84cef80915e453/V4_0001_RNA_0005_23H5VFLT4_s36.log 463/V4_0001_RNA_0005_23H5VFLT4_s36.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/d49b005ac593c3f78f66480b93aed5/tih_rna_sample_00251_23H5VFLT4_s03_seqtool_mqc.tsv 1955/tih_rna_sample_00251_23H5VFLT4_s03_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/0d20122f360132510154b6d606df87/tih_rna_sample_00426_23H5VFLT4_s48.md.bam.metrics 1898/tih_rna_sample_00426_23H5VFLT4_s48.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/c356ba98527f0aab3aba903bb695f7/tih_rna_sample_00248_23H5VFLT4_s01.pos.DupRate.xls 1607/tih_rna_sample_00248_23H5VFLT4_s01.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/1774ec538c2c68c786e0e5361d00f6/V4_0001_RNA_0005_23H5VFLT4_s23_seqtool_mqc.tsv 1961/V4_0001_RNA_0005_23H5VFLT4_s23_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/14edb1e091254248277965895cddf8/tih_rna_sample_00124_23H5VFLT4_s31.attempt1.command.log 2069/tih_rna_sample_00124_23H5VFLT4_s31.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/2d10d05f2714867ed8db1fe98fb813/GM24385_0001_RNA_0001_23H5VFLT4_s16.junctionSaturation_plot.r 1195/GM24385_0001_RNA_0001_23H5VFLT4_s16.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/417aeab5c0b6634f601ba20c34952d/tih_rna_sample_00088_23H5VFLT4_s02_contamination_mqc.tsv 1346/tih_rna_sample_00088_23H5VFLT4_s02_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/bdcb4050f5181bec394c2fb2a804be/tih_rna_sample_00105_23H5VFLT4_s21_preseq_mqc.tsv 2212/tih_rna_sample_00105_23H5VFLT4_s21_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/144d6ff008e12361f0d37ffb2e427a/V4_0001_RNA_0005_23H5VFLT4_s02_preseq_mqc.tsv 2298/V4_0001_RNA_0005_23H5VFLT4_s02_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/3e96d7a7450d65c38249727b64c7a7/tih_rna_sample_00414_23H5VFLT4_s40.attempt2.command.log 2110/tih_rna_sample_00414_23H5VFLT4_s40.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/68ef460766878b68e64e4fd689984b/tih_rna_sample_00116_23H5VFLT4_s36.junctionSaturation_plot.r 1228/tih_rna_sample_00116_23H5VFLT4_s36.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/c9d8b25c6b506cfc0fbea36fd4fcee/V4_0001_RNA_0001_23H5VFLT4_s13_preseq_mqc.tsv 2290/V4_0001_RNA_0001_23H5VFLT4_s13_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/c2079ec0b9aa2a6d9d148fbc309851/V4_0001_RNA_0005_23H5VFLT4_s10_seqtool_mqc.tsv 1988/V4_0001_RNA_0005_23H5VFLT4_s10_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/bc8912b21764589f18bdcc98fb9347/tih_rna_sample_00426_23H5VFLT4_s48_trimmed_2_fastqc.zip 366/tih_rna_sample_00426_23H5VFLT4_s48_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/2c1d461e7113bce22fd318917566fe/V4_0001_RNA_0005_23H5VFLT4_s02_kallisto_mqc.tsv 551/V4_0001_RNA_0005_23H5VFLT4_s02_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9b/43bbb09f8e1e0e09bdf9236689f98d/V4_0001_RNA_0005_23H5VFLT4_s01.lc_extrap.txt 2207/V4_0001_RNA_0005_23H5VFLT4_s01.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/14c57a756ce96c6c12f6912f94410b/GM24385_0001_RNA_0001_23H5VFLT4_s24.bam_stat.txt 1462/GM24385_0001_RNA_0001_23H5VFLT4_s24.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/b15656454eaafde9902a3c3813d531/tih_rna_sample_00088_23H5VFLT4_s02.bam_stat.txt 1499/tih_rna_sample_00088_23H5VFLT4_s02.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/2f5b2cf073cb8f230c0f7088e20c9d/tih_rna_sample_00378_23H5VFLT4_s24.ReadsPerGene.out.tab 678/tih_rna_sample_00378_23H5VFLT4_s24.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e5773ad33c682f3eed02bbfcf1bc5c/V4_0001_RNA_0005_23H5VFLT4_s36.lc_extrap.txt 2209/V4_0001_RNA_0005_23H5VFLT4_s36.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/375c965996bab159d4c7b291b5ca55/tih_rna_sample_00121_23H5VFLT4_s41_trimmed_2_fastqc.zip 296/tih_rna_sample_00121_23H5VFLT4_s41_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/239526c6717c8299922ba5d7a31427/tih_rna_sample_00274_23H5VFLT4_s14_trimmed_1_fastqc.zip 207/tih_rna_sample_00274_23H5VFLT4_s14_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/bdf91a425304e90fbfee148e8f9b1c/tih_rna_sample_00118_23H5VFLT4_s38_2_fastqc.zip 1090/tih_rna_sample_00118_23H5VFLT4_s38_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/00e8c220e0747a3d3c046e7b48eea3/V4_0001_RNA_0005_23H5VFLT4_s34.fastp.json 87/V4_0001_RNA_0005_23H5VFLT4_s34.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/7645191fe1bb7103134c8d1caa23ed/V4_0001_RNA_0005_23H5VFLT4_s14.fastp.html 118/V4_0001_RNA_0005_23H5VFLT4_s14.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/6abe584078ef5fa8bdd8e638527a8b/GM24385_0001_RNA_0001_23H5VFLT4_s32_trimmed_1_fastqc.zip 219/GM24385_0001_RNA_0001_23H5VFLT4_s32_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/aa4d94e850470acdc1338dfd65a5bb/tih_rna_sample_00116_23H5VFLT4_s36.inner_distance_freq.txt 824/tih_rna_sample_00116_23H5VFLT4_s36.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/117d14c94265e36d34da41ed52c767/V4_0001_RNA_0005_23H5VFLT4_s06.log 474/V4_0001_RNA_0005_23H5VFLT4_s06.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/3a7b49a850a43100c077525aedee73/tih_rna_sample_00087_23H5VFLT4_s17.ReadsPerGene.out.tab 761/tih_rna_sample_00087_23H5VFLT4_s17.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/7d3939dd4ce434d60acaa1d26a9bf5/V4_0001_RNA_0005_23H5VFLT4_s14.inner_distance_freq.txt 799/V4_0001_RNA_0005_23H5VFLT4_s14.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/eb3a99c720be76c5ec08b23060853d/tih_rna_sample_00090_23H5VFLT4_s32.junction_annotation.log 1427/tih_rna_sample_00090_23H5VFLT4_s32.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/3b5f708bf83d75ead8615bca54fb65/V4_0001_RNA_0005_23H5VFLT4_s14_preseq_mqc.tsv 2291/V4_0001_RNA_0005_23H5VFLT4_s14_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/0177c17aff84337fd28b87a2c378ca/NTC_0001_0001_23H5VFLT4_s15_rseqc_extra_mqc.tsv 1635/NTC_0001_0001_23H5VFLT4_s15_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/61585ee9683d54e251be26468cdfa8/tih_rna_sample_00122_23H5VFLT4_s42_combined_fusions_arriba_visualisation.pdf 2317/tih_rna_sample_00122_23H5VFLT4_s42_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/c445249ff526a74155a7892da00fae/V4_0001_RNA_0005_23H5VFLT4_s31_preseq_mqc.tsv 2294/V4_0001_RNA_0005_23H5VFLT4_s31_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/e784939e60ab710a8fc29e268c3214/tih_rna_sample_00254_23H5VFLT4_s05.ReadsPerGene.out.tab 760/tih_rna_sample_00254_23H5VFLT4_s05.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/ca23b3c28ed99aa195970ea389b87b/V4_0001_RNA_0005_23H5VFLT4_s44_1_fastqc.zip 991/V4_0001_RNA_0005_23H5VFLT4_s44_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/62e7f16a784b2445d8fe8fd41ddb17/tih_rna_sample_00422_23H5VFLT4_s47_seqtool_mqc.tsv 1925/tih_rna_sample_00422_23H5VFLT4_s47_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/b7c344022f8043c63ec00e9cfe4b55/V4_0001_RNA_0005_23H5VFLT4_s45_2_fastqc.zip 1056/V4_0001_RNA_0005_23H5VFLT4_s45_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/75944805b07f2cd0231ee7a30c104f/V4_0001_RNA_0005_23H5VFLT4_s26.infer_experiment.txt 947/V4_0001_RNA_0005_23H5VFLT4_s26.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/eaaf5e3d6c0ec85c4bc7a4dbf952a7/tih_rna_sample_00251_23H5VFLT4_s03_contamination_mqc.tsv 1292/tih_rna_sample_00251_23H5VFLT4_s03_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/df07d4f40d6e25dd57175a5a8a2d37/V4_0001_RNA_0005_23H5VFLT4_s10_1_fastqc.zip 1101/V4_0001_RNA_0005_23H5VFLT4_s10_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/f3460ee2d245566975a8168415d31f/tih_rna_sample_00089_23H5VFLT4_s39.fastp.html 192/tih_rna_sample_00089_23H5VFLT4_s39.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/3a9cf05efa8cd7be31e9b68599a4a3/tih_rna_sample_00163_23H5VFLT4_s43_trimmed_2_fastqc.zip 346/tih_rna_sample_00163_23H5VFLT4_s43_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/de/9cb875e38378f0db3c55c87a82e949/V4_0001_RNA_0005_23H5VFLT4_s33.ReadsPerGene.out.tab 739/V4_0001_RNA_0005_23H5VFLT4_s33.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/62b56d1ffa23c437a438f0b551b1ca/tih_rna_sample_00280_23H5VFLT4_s18.ReadsPerGene.out.tab 750/tih_rna_sample_00280_23H5VFLT4_s18.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/a9c68c0d7d82fde47737457b37b96f/tih_rna_sample_00104_23H5VFLT4_s20.inner_distance_freq.txt 780/tih_rna_sample_00104_23H5VFLT4_s20.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/7acdbaa3f5478961ba601e5b5f8c6b/GM24385_0001_RNA_0001_23H5VFLT4_s48.inner_distance_freq.txt 782/GM24385_0001_RNA_0001_23H5VFLT4_s48.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/d5348a93be4e61f1dc24875245e9c0/V4_0001_RNA_0005_23H5VFLT4_s03_contamination_mqc.tsv 1317/V4_0001_RNA_0005_23H5VFLT4_s03_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/2f662257425f13140a1792829367aa/tih_rna_sample_00235_23H5VFLT4_s07_rseqc_extra_mqc.tsv 1661/tih_rna_sample_00235_23H5VFLT4_s07_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/9000cc06d7c0a7e38487183bc2dbc5/GM24385_0001_RNA_0001_23H5VFLT4_s40.junction_annotation.log 1374/GM24385_0001_RNA_0001_23H5VFLT4_s40.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3e/2473d85506e3471d808dd2c9f267a8/tih_rna_sample_00220_23H5VFLT4_s16.bam_stat.txt 1509/tih_rna_sample_00220_23H5VFLT4_s16.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/b6b19ebb41bde64be9d8d3ee49e4c6/tih_rna_sample_00426_23H5VFLT4_s48.attempt1.command.log 2074/tih_rna_sample_00426_23H5VFLT4_s48.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/cb5fe8e481ccebd45c91b955544bca/tih_rna_sample_00377_23H5VFLT4_s23.junction_annotation.log 1425/tih_rna_sample_00377_23H5VFLT4_s23.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f1/9ec42290b4c23b573bac86ed245c07/tih_rna_sample_00410_23H5VFLT4_s34.infer_experiment.txt 894/tih_rna_sample_00410_23H5VFLT4_s34.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/8e184176072be741ac457c540bcbb7/V4_0001_RNA_0005_23H5VFLT4_s12.attempt1.command.log 2052/V4_0001_RNA_0005_23H5VFLT4_s12.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/f74516612d973e38ec8401d6acd8c5/V4_0001_RNA_0005_23H5VFLT4_s42.attempt1.command.log 2103/V4_0001_RNA_0005_23H5VFLT4_s42.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/37f4c8341c4f4bb4625c5c911a9e15/V4_0001_RNA_0005_23H5VFLT4_s36.bam_stat.txt 1490/V4_0001_RNA_0005_23H5VFLT4_s36.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/0c0b57205b94edd9031cd7ac0acbcc/tih_rna_sample_00410_23H5VFLT4_s34.fastp.html 115/tih_rna_sample_00410_23H5VFLT4_s34.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3c/60cb59d38934718a5a533e91249fa9/V4_0001_RNA_0005_23H5VFLT4_s19.pos.DupRate.xls 1576/V4_0001_RNA_0005_23H5VFLT4_s19.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/ef63fb5892d3279374f88b4ab8c45f/V4_0001_RNA_0005_23H5VFLT4_s06.pos.DupRate.xls 1592/V4_0001_RNA_0005_23H5VFLT4_s06.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/c49fa31f6e1ce7cfcfb0d70e1d3d00/tih_rna_sample_00121_23H5VFLT4_s41.ReadsPerGene.out.tab 733/tih_rna_sample_00121_23H5VFLT4_s41.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/5c8ead81c07953d26128378d92ab70/tih_rna_sample_00422_23H5VFLT4_s47.junctionSaturation_plot.r 1157/tih_rna_sample_00422_23H5VFLT4_s47.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f1/fa5df8572f50d121d3752979dd7b22/tih_rna_sample_00115_23H5VFLT4_s35.inner_distance_freq.txt 785/tih_rna_sample_00115_23H5VFLT4_s35.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/16cf7c886001be183fbe78387705af/tih_rna_sample_00261_23H5VFLT4_s06.log 453/tih_rna_sample_00261_23H5VFLT4_s06.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/f2b49d9a5b86f7479c553d950e4fab/V4_0001_RNA_0005_23H5VFLT4_s31.lc_extrap.txt 2198/V4_0001_RNA_0005_23H5VFLT4_s31.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/66ace3e50434c41df7e406f3a99711/tih_rna_sample_00096_23H5VFLT4_s11_preseq_mqc.tsv 2241/tih_rna_sample_00096_23H5VFLT4_s11_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/8cd93d7833ae7ecde3d3c2603aa2c7/V4_0001_RNA_0005_23H5VFLT4_s02.infer_experiment.txt 916/V4_0001_RNA_0005_23H5VFLT4_s02.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0b/6591f3532b7ae2a229085eeee272ac/tih_rna_sample_00087_23H5VFLT4_s17.read_distribution.txt 1785/tih_rna_sample_00087_23H5VFLT4_s17.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/cd2698cf2469a73fecdfc45614fd8b/tih_rna_sample_00090_23H5VFLT4_s32_kallisto_mqc.tsv 537/tih_rna_sample_00090_23H5VFLT4_s32_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/5fa056277ab53a3ac60a6aa6b1ab7b/V4_0001_RNA_0005_23H5VFLT4_s34.junctionSaturation_plot.r 1222/V4_0001_RNA_0005_23H5VFLT4_s34.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/3f245fbd5f1a8507f695ce3c2d05be/tih_rna_sample_00426_23H5VFLT4_s48_kallisto_mqc.tsv 552/tih_rna_sample_00426_23H5VFLT4_s48_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1a/8154531a5e4092786d6375dc9bc25a/V4_0001_RNA_0005_23H5VFLT4_s41.read_distribution.txt 1757/V4_0001_RNA_0005_23H5VFLT4_s41.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/50885411aaa7316890493620165390/tih_rna_sample_00252_23H5VFLT4_s04.md.bam.metrics 1875/tih_rna_sample_00252_23H5VFLT4_s04.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/fbfb050c7d141b1ed3a94e5bf51c77/tih_rna_sample_00274_23H5VFLT4_s14_preseq_mqc.tsv 2218/tih_rna_sample_00274_23H5VFLT4_s14_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/a394bf30328e3708b63e218bafdaac/tih_rna_sample_00377_23H5VFLT4_s23_1_fastqc.zip 1103/tih_rna_sample_00377_23H5VFLT4_s23_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/5751260ea9103991b1ed2693fdc92c/tih_rna_sample_00118_23H5VFLT4_s38.infer_experiment.txt 909/tih_rna_sample_00118_23H5VFLT4_s38.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/a8aa5513f9b6dee6f6325ec8bedb6a/V4_0001_RNA_0005_23H5VFLT4_s41.lc_extrap.txt 2203/V4_0001_RNA_0005_23H5VFLT4_s41.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/2b666194b93b4d3d5a22d25ec400d5/GM24385_0001_RNA_0001_23H5VFLT4_s08.fastp.html 160/GM24385_0001_RNA_0001_23H5VFLT4_s08.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/26ee0a8a0da519fe1fc94a1ac895eb/V4_0001_RNA_0005_23H5VFLT4_s38.log 423/V4_0001_RNA_0005_23H5VFLT4_s38.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0b/f5b0ca27817151e51c07980c798440/tih_rna_sample_00261_23H5VFLT4_s06.attempt1.command.log 2058/tih_rna_sample_00261_23H5VFLT4_s06.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/e5afe10d2abd126c8bbda735c9d4d7/tih_rna_sample_00111_23H5VFLT4_s30.read_distribution.txt 1735/tih_rna_sample_00111_23H5VFLT4_s30.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/62c744f3c72ff294718535f2569536/V4_0001_RNA_0005_23H5VFLT4_s09_1_fastqc.zip 1099/V4_0001_RNA_0005_23H5VFLT4_s09_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/34fea83de19ce809a84c755b2a9c5f/tih_rna_sample_00118_23H5VFLT4_s38.bam_stat.txt 1478/tih_rna_sample_00118_23H5VFLT4_s38.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/ca875e6212d6bf17da4b1c0173f1a7/tih_rna_sample_00377_23H5VFLT4_s23.log 414/tih_rna_sample_00377_23H5VFLT4_s23.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/a099c90e56c17ac172e8675c144101/V4_0001_RNA_0005_23H5VFLT4_s43.infer_experiment.txt 896/V4_0001_RNA_0005_23H5VFLT4_s43.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/a4d5e65afa777ef9552f72f56c7524/GM24385_0001_RNA_0001_23H5VFLT4_s24_trimmed_2_fastqc.zip 244/GM24385_0001_RNA_0001_23H5VFLT4_s24_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/83b305c1ae465c7eb3d307c3cb7953/V4_0001_RNA_0005_23H5VFLT4_s37_2_fastqc.zip 1032/V4_0001_RNA_0005_23H5VFLT4_s37_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/4cde6e448ff77f648861fed58f17b6/tih_rna_sample_00407_23H5VFLT4_s33_seqtool_mqc.tsv 1951/tih_rna_sample_00407_23H5VFLT4_s33_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/048b19e0625499b94acd89ef7f8611/tih_rna_sample_00388_23H5VFLT4_s22.fastp.json 62/tih_rna_sample_00388_23H5VFLT4_s22.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/a47377c3474f0e639cf49ff618665b/tih_rna_sample_00087_23H5VFLT4_s17_kallisto_mqc.tsv 556/tih_rna_sample_00087_23H5VFLT4_s17_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/c692fce1bcf5a64daaae35890766f3/V4_0001_RNA_0005_23H5VFLT4_s18.Log.final.out 618/V4_0001_RNA_0005_23H5VFLT4_s18.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/d152114151f5806152c1acc651c584/tih_rna_sample_00426_23H5VFLT4_s48.read_distribution.txt 1779/tih_rna_sample_00426_23H5VFLT4_s48.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/f9b01efd97924671d25f27d9395ba1/V4_0001_RNA_0005_23H5VFLT4_s15.infer_experiment.txt 893/V4_0001_RNA_0005_23H5VFLT4_s15.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/32fe836ab2f1cb9a7e7bccb8e025f9/V4_0001_RNA_0005_23H5VFLT4_s38_kallisto_mqc.tsv 519/V4_0001_RNA_0005_23H5VFLT4_s38_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/29cabedda5914d4873d701e05a81af/V4_0001_RNA_0005_23H5VFLT4_s05.fastp.html 152/V4_0001_RNA_0005_23H5VFLT4_s05.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/2e024f133fcf7bd12f868a4b50263c/V4_0001_RNA_0005_23H5VFLT4_s22.fastp.html 154/V4_0001_RNA_0005_23H5VFLT4_s22.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/a8b6e6f69b615acb960731e33908d0/tih_rna_sample_00248_23H5VFLT4_s01.junctionSaturation_plot.r 1216/tih_rna_sample_00248_23H5VFLT4_s01.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/fbdbefdd6de9a2ec8ee049c9bca3ec/tih_rna_sample_00251_23H5VFLT4_s03.bam_stat.txt 1471/tih_rna_sample_00251_23H5VFLT4_s03.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/f633076bffcd49f7bb684947bfc520/GM24385_0001_RNA_0001_23H5VFLT4_s48_seqtool_mqc.tsv 1932/GM24385_0001_RNA_0001_23H5VFLT4_s48_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/89943bcaab51583123c98572643df0/tih_rna_sample_00251_23H5VFLT4_s03.fastp.json 52/tih_rna_sample_00251_23H5VFLT4_s03.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/ec00fa9c951847b77f94a75020d775/tih_rna_sample_00115_23H5VFLT4_s35_1_fastqc.zip 983/tih_rna_sample_00115_23H5VFLT4_s35_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/ad30df44ab7570a02bbe606b52cf2b/tih_rna_sample_00388_23H5VFLT4_s22.pos.DupRate.xls 1629/tih_rna_sample_00388_23H5VFLT4_s22.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/d5ae939a3e59d2fb19fdba27ab11ae/tih_rna_sample_00394_23H5VFLT4_s25_2_fastqc.zip 978/tih_rna_sample_00394_23H5VFLT4_s25_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/e02d9c2321abe1dbbd41fa1e16621d/GM24385_0001_RNA_0001_23H5VFLT4_s32_1_fastqc.zip 993/GM24385_0001_RNA_0001_23H5VFLT4_s32_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/4b70455b4727c75906ee6cfb9839b8/V4_0001_RNA_0005_23H5VFLT4_s10.lc_extrap.txt 2196/V4_0001_RNA_0005_23H5VFLT4_s10.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/9f95531350f33fcfe2dcc32aeb4f45/tih_rna_sample_00425_23H5VFLT4_s46_rseqc_extra_mqc.tsv 1660/tih_rna_sample_00425_23H5VFLT4_s46_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/00c148f4ddb7392fe99319350619bf/tih_rna_sample_00400_23H5VFLT4_s27_seqtool_mqc.tsv 1987/tih_rna_sample_00400_23H5VFLT4_s27_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/2afd6a755531184b76f9c973694912/V4_0001_RNA_0005_23H5VFLT4_s46.junction_annotation.log 1367/V4_0001_RNA_0005_23H5VFLT4_s46.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/079fd577bdde7d72cad6918572cda1/tih_rna_sample_00402_23H5VFLT4_s28.log 428/tih_rna_sample_00402_23H5VFLT4_s28.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/dbadc86dab2479464836b4382d18b4/V4_0001_RNA_0005_23H5VFLT4_s28.bam_stat.txt 1453/V4_0001_RNA_0005_23H5VFLT4_s28.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/5bf4ff7290678c50460537f0b91830/GM24385_0001_RNA_0001_23H5VFLT4_s48_kallisto_mqc.tsv 497/GM24385_0001_RNA_0001_23H5VFLT4_s48_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/dfa0da17a41d6435c5af7200eeaaff/tih_rna_sample_00414_23H5VFLT4_s40.infer_experiment.txt 914/tih_rna_sample_00414_23H5VFLT4_s40.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/725ca26c9065ea5a9d255d74c336fe/tih_rna_sample_00105_23H5VFLT4_s21.md.bam.metrics 1828/tih_rna_sample_00105_23H5VFLT4_s21.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/74a2823324c9ac02e95c58d087b988/tih_rna_sample_00116_23H5VFLT4_s36.attempt1.command.log 2042/tih_rna_sample_00116_23H5VFLT4_s36.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/9194acd52747f5f8576d067259c3fa/V4_0001_RNA_0005_23H5VFLT4_s25.ReadsPerGene.out.tab 744/V4_0001_RNA_0005_23H5VFLT4_s25.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3e/69753231a7a5a27a7bd873975a86be/V4_0001_RNA_0005_23H5VFLT4_s01_rseqc_extra_mqc.tsv 1710/V4_0001_RNA_0005_23H5VFLT4_s01_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/08b708cd4f6f65a89d64e888660481/V4_0001_RNA_0005_23H5VFLT4_s26.ReadsPerGene.out.tab 759/V4_0001_RNA_0005_23H5VFLT4_s26.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/89739e221b0c0f0d305b43e0e5685c/V4_0001_RNA_0005_23H5VFLT4_s04_combined_fusions_arriba_visualisation.pdf 2342/V4_0001_RNA_0005_23H5VFLT4_s04_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/1d159426d80141a68812c251a1259b/tih_rna_sample_00104_23H5VFLT4_s20.infer_experiment.txt 876/tih_rna_sample_00104_23H5VFLT4_s20.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/16/b7fbf7127aa293b6ea1a1f985be18d/tih_rna_sample_00388_23H5VFLT4_s22_rseqc_extra_mqc.tsv 1726/tih_rna_sample_00388_23H5VFLT4_s22_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/d05b697660e1d6f9009892f67d4406/V4_0001_RNA_0005_23H5VFLT4_s19_trimmed_2_fastqc.zip 256/V4_0001_RNA_0005_23H5VFLT4_s19_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/cd6a180bc41616efc119591bb0a46a/tih_rna_sample_00425_23H5VFLT4_s46.infer_experiment.txt 919/tih_rna_sample_00425_23H5VFLT4_s46.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/3c193fc5927ea3f00dff295d2b20d4/tih_rna_sample_00220_23H5VFLT4_s16.fastp.json 50/tih_rna_sample_00220_23H5VFLT4_s16.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/b84c553ab43b9b869e4eea56f65191/tih_rna_sample_00090_23H5VFLT4_s32_preseq_mqc.tsv 2269/tih_rna_sample_00090_23H5VFLT4_s32_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/0f098f7ed853fad5fca13b4b2788db/V4_0001_RNA_0005_23H5VFLT4_s02.fastp.json 67/V4_0001_RNA_0005_23H5VFLT4_s02.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/d1dc963a7109c4d64230e721a97b2e/tih_rna_sample_00111_23H5VFLT4_s30.md.bam.metrics 1832/tih_rna_sample_00111_23H5VFLT4_s30.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/239b06cc2fc690004493d45b894639/tih_rna_sample_00396_23H5VFLT4_s26.attempt1.command.log 2066/tih_rna_sample_00396_23H5VFLT4_s26.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/a266ce015ef1ceef31c1104b85c774/V4_0001_RNA_0005_23H5VFLT4_s21.fastp.json 28/V4_0001_RNA_0005_23H5VFLT4_s21.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/3741e41a642ec8846dbeb29232d971/V4_0001_RNA_0001_23H5VFLT4_s13_kallisto_mqc.tsv 565/V4_0001_RNA_0001_23H5VFLT4_s13_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/de64b2a641c9ba6a35cd91f93b6103/HD789_0002_RNA_0008_23H5VFLT4_s19.junctionSaturation_plot.r 1244/HD789_0002_RNA_0008_23H5VFLT4_s19.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/e69baef25bb6a4efc0d713160e8c23/V4_0001_RNA_0005_23H5VFLT4_s30_contamination_mqc.tsv 1264/V4_0001_RNA_0005_23H5VFLT4_s30_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/44ebab6696dc732865245d05d2e76f/V4_0001_RNA_0005_23H5VFLT4_s34_rseqc_extra_mqc.tsv 1715/V4_0001_RNA_0005_23H5VFLT4_s34_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/b6757ce518440c9bbe3c4283c90303/tih_rna_sample_00261_23H5VFLT4_s06.fastp.json 61/tih_rna_sample_00261_23H5VFLT4_s06.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/ff4c796c69beb06924b34b43783cfd/V4_0001_RNA_0005_23H5VFLT4_s33.pos.DupRate.xls 1597/V4_0001_RNA_0005_23H5VFLT4_s33.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/f6ad0bf9c32a592bbfb73ded5de8f0/V4_0001_RNA_0005_23H5VFLT4_s37.junction_annotation.log 1396/V4_0001_RNA_0005_23H5VFLT4_s37.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/a5fefde6af5fa1f7068c93d3bbc807/V4_0001_RNA_0005_23H5VFLT4_s27_trimmed_2_fastqc.zip 276/V4_0001_RNA_0005_23H5VFLT4_s27_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/454ff46aff4fae904a401c29393e2e/V4_0001_RNA_0005_23H5VFLT4_s02_rseqc_extra_mqc.tsv 1702/V4_0001_RNA_0005_23H5VFLT4_s02_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/f74516612d973e38ec8401d6acd8c5/V4_0001_RNA_0005_23H5VFLT4_s42.lc_extrap.txt 2199/V4_0001_RNA_0005_23H5VFLT4_s42.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/9e5fc003131c499ac131dd928f9bb4/tih_rna_sample_00220_23H5VFLT4_s16.pos.DupRate.xls 1611/tih_rna_sample_00220_23H5VFLT4_s16.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/a5cf25751b0cc7ff57533a36fa5486/tih_rna_sample_00116_23H5VFLT4_s36.md.bam.metrics 1863/tih_rna_sample_00116_23H5VFLT4_s36.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/0aece92009d2dc2d5ecf4998e4a04d/V4_0001_RNA_0005_23H5VFLT4_s29_trimmed_2_fastqc.zip 260/V4_0001_RNA_0005_23H5VFLT4_s29_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/1d137a1a21c682451de949b4cf7bc2/V4_0001_RNA_0005_23H5VFLT4_s20.log 446/V4_0001_RNA_0005_23H5VFLT4_s20.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/70a81d153ea69ea602b3416c3603db/GM24385_0001_RNA_0001_23H5VFLT4_s40.inner_distance_freq.txt 786/GM24385_0001_RNA_0001_23H5VFLT4_s40.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/a0019b75eae7f14e941f7d9c76eabc/tih_rna_sample_00400_23H5VFLT4_s27.ReadsPerGene.out.tab 754/tih_rna_sample_00400_23H5VFLT4_s27.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/9ab999bc945d4c23f00ca16d35cc0c/V4_0001_RNA_0005_23H5VFLT4_s30_2_fastqc.zip 1012/V4_0001_RNA_0005_23H5VFLT4_s30_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/91ffba72d213a913618da72d4e492f/tih_rna_sample_00414_23H5VFLT4_s40_2_fastqc.zip 1076/tih_rna_sample_00414_23H5VFLT4_s40_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/1438b13b51d82261fd7c3158a05717/V4_0001_RNA_0005_23H5VFLT4_s42_trimmed_1_fastqc.zip 335/V4_0001_RNA_0005_23H5VFLT4_s42_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/94a34a36b06b187512aaf8766b3d11/V4_0001_RNA_0005_23H5VFLT4_s39.ReadsPerGene.out.tab 695/V4_0001_RNA_0005_23H5VFLT4_s39.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/3cc24fdfe033e0e4e645e88d98501a/tih_rna_sample_00105_23H5VFLT4_s21.inner_distance_freq.txt 773/tih_rna_sample_00105_23H5VFLT4_s21.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/159c7986c4ac256d51a22fee641761/tih_rna_sample_00220_23H5VFLT4_s16.junction_annotation.log 1430/tih_rna_sample_00220_23H5VFLT4_s16.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/060671d7fd6d03ff95189c99f87bd0/tih_rna_sample_00117_23H5VFLT4_s37_combined_fusions_arriba_visualisation.pdf 2322/tih_rna_sample_00117_23H5VFLT4_s37_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/c74500725264b4683d76b50144ccec/tih_rna_sample_00388_23H5VFLT4_s22.log 424/tih_rna_sample_00388_23H5VFLT4_s22.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/cf4db6ad18367fba5427a1112c7758/V4_0001_RNA_0005_23H5VFLT4_s13.junctionSaturation_plot.r 1239/V4_0001_RNA_0005_23H5VFLT4_s13.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e22d18bc0f85205aaf04d87da962f9/V4_0001_RNA_0005_23H5VFLT4_s46.attempt1.command.log 2031/V4_0001_RNA_0005_23H5VFLT4_s46.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/27042d458e1ea613e80d441c84316f/GM24385_0001_RNA_0001_23H5VFLT4_s08_preseq_mqc.tsv 2239/GM24385_0001_RNA_0001_23H5VFLT4_s08_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/f30aece4123bf8687405d138612800/tih_rna_sample_00251_23H5VFLT4_s03_1_fastqc.zip 1091/tih_rna_sample_00251_23H5VFLT4_s03_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/e834f167784091d265e50c8566c6e7/V4_0001_RNA_0005_23H5VFLT4_s10.inner_distance_freq.txt 846/V4_0001_RNA_0005_23H5VFLT4_s10.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/81829b3b79d38b6b3a5faba09df18a/tih_rna_sample_00254_23H5VFLT4_s05.bam_stat.txt 1496/tih_rna_sample_00254_23H5VFLT4_s05.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b3/bce74eaa137d1a50ebc6c175c8b39e/tih_rna_sample_00414_23H5VFLT4_s40.bam_stat.txt 1522/tih_rna_sample_00414_23H5VFLT4_s40.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/3da724fe42cc121e5dd14af397e855/tih_rna_sample_00097_23H5VFLT4_s12_combined_fusions_arriba_visualisation.pdf 2373/tih_rna_sample_00097_23H5VFLT4_s12_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/57ef92682da5052787441536046384/V4_0001_RNA_0005_23H5VFLT4_s30.md.bam.metrics 1847/V4_0001_RNA_0005_23H5VFLT4_s30.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/b9ef18295f2f5cc956abb3fa199578/V4_0001_RNA_0005_23H5VFLT4_s09.infer_experiment.txt 926/V4_0001_RNA_0005_23H5VFLT4_s09.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/78803d5b7e40abec6cc09b94785cb3/V4_0001_RNA_0005_23H5VFLT4_s47_trimmed_2_fastqc.zip 370/V4_0001_RNA_0005_23H5VFLT4_s47_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/b49a44efb797910d889122b7d47732/V4_0001_RNA_0005_23H5VFLT4_s35_rseqc_extra_mqc.tsv 1699/V4_0001_RNA_0005_23H5VFLT4_s35_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/e45498fb0b6358979f2568599fef01/V4_0001_RNA_0005_23H5VFLT4_s10.pos.DupRate.xls 1623/V4_0001_RNA_0005_23H5VFLT4_s10.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/27b66f54af79c3d9f1417bcf4390b4/tih_rna_sample_00274_23H5VFLT4_s14.pos.DupRate.xls 1548/tih_rna_sample_00274_23H5VFLT4_s14.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/64780828dbfbdc6b02575fdfe1bcd0/tih_rna_sample_00422_23H5VFLT4_s47.bam_stat.txt 1444/tih_rna_sample_00422_23H5VFLT4_s47.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/63/05a08b9609618d285f5ba320cd0921/tih_rna_sample_00396_23H5VFLT4_s26.log 461/tih_rna_sample_00396_23H5VFLT4_s26.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/4a222804a8baf9bc4c91042647f7b1/tih_rna_sample_00124_23H5VFLT4_s31_seqtool_mqc.tsv 1992/tih_rna_sample_00124_23H5VFLT4_s31_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/14ef8df755e14f564cdf06e173118f/GM24385_0001_RNA_0001_23H5VFLT4_s40_seqtool_mqc.tsv 1945/GM24385_0001_RNA_0001_23H5VFLT4_s40_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/c73a44a9bebe20243bda175912c8ad/V4_0001_RNA_0005_23H5VFLT4_s21.ReadsPerGene.out.tab 708/V4_0001_RNA_0005_23H5VFLT4_s21.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/c30ae90dfc537e8d00ae94fab8bbe9/V4_0001_RNA_0005_23H5VFLT4_s11_trimmed_1_fastqc.zip 339/V4_0001_RNA_0005_23H5VFLT4_s11_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/bb0152a08384d95d38d5d75c00266a/V4_0001_RNA_0005_23H5VFLT4_s12.ReadsPerGene.out.tab 732/V4_0001_RNA_0005_23H5VFLT4_s12.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/f2cf55af9dd622136a3cbb3af04fdb/tih_rna_sample_00254_23H5VFLT4_s05.fastp.html 189/tih_rna_sample_00254_23H5VFLT4_s05.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/9e49354511ab78de490787d7636444/V4_0001_RNA_0005_23H5VFLT4_s47.ReadsPerGene.out.tab 753/V4_0001_RNA_0005_23H5VFLT4_s47.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/4cfdd5c33f772f0d488b2e2e77c0f6/tih_rna_sample_00096_23H5VFLT4_s11.fastp.json 98/tih_rna_sample_00096_23H5VFLT4_s11.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/3c28f73877d3757587b78f59abbb36/V4_0001_RNA_0005_23H5VFLT4_s35_seqtool_mqc.tsv 1936/V4_0001_RNA_0005_23H5VFLT4_s35_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/16abee038bc72169b41295bc68056a/V4_0001_RNA_0005_23H5VFLT4_s06.inner_distance_freq.txt 822/V4_0001_RNA_0005_23H5VFLT4_s06.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/fb28008092a3b37d0ce7ef9dfaf05e/tih_rna_sample_00422_23H5VFLT4_s47_trimmed_1_fastqc.zip 199/tih_rna_sample_00422_23H5VFLT4_s47_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/c10719f1a95a0033d1bc04ecce266d/V4_0001_RNA_0005_23H5VFLT4_s14.log 450/V4_0001_RNA_0005_23H5VFLT4_s14.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/53a09092fcfe11d4d260521c444af3/V4_0001_RNA_0005_23H5VFLT4_s42.read_distribution.txt 1777/V4_0001_RNA_0005_23H5VFLT4_s42.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9f/912fa47cfae5a1cbcdd80081b24893/V4_0001_RNA_0005_23H5VFLT4_s22.read_distribution.txt 1793/V4_0001_RNA_0005_23H5VFLT4_s22.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/40a5f4fb9fdc1462b1f9669f5685ad/tih_rna_sample_00407_23H5VFLT4_s33.ReadsPerGene.out.tab 711/tih_rna_sample_00407_23H5VFLT4_s33.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/db9b04ff661e457de2bb0aa3fdbac8/tih_rna_sample_00116_23H5VFLT4_s36.junction_annotation.log 1391/tih_rna_sample_00116_23H5VFLT4_s36.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/d9e8931913176b204b2dd239f86047/V4_0001_RNA_0005_23H5VFLT4_s36_seqtool_mqc.tsv 1948/V4_0001_RNA_0005_23H5VFLT4_s36_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/8a62478c037019a74a4fd46c2d6512/V4_0001_RNA_0005_23H5VFLT4_s09.attempt1.command.log 2085/V4_0001_RNA_0005_23H5VFLT4_s09.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/16/54a90a5e61ab99632d54345017fe5e/V4_0001_RNA_0005_23H5VFLT4_s20.inner_distance_freq.txt 810/V4_0001_RNA_0005_23H5VFLT4_s20.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/3b71aa74545fc2dac33a0fc767b17b/GM24385_0001_RNA_0001_23H5VFLT4_s24_combined_fusions_arriba_visualisation.pdf 2314/GM24385_0001_RNA_0001_23H5VFLT4_s24_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/5215cf65a73bda1cd5f04d385f41d2/V4_0001_RNA_0005_23H5VFLT4_s33.fastp.json 86/V4_0001_RNA_0005_23H5VFLT4_s33.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/6ff4092dd52ec3d8c9234b96f1d6b6/tih_rna_sample_00117_23H5VFLT4_s37.Log.final.out 591/tih_rna_sample_00117_23H5VFLT4_s37.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/3826d7abdb66a3ca1477cfcd31a534/tih_rna_sample_00115_23H5VFLT4_s35.attempt1.command.log 2030/tih_rna_sample_00115_23H5VFLT4_s35.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/2a417cb02ea714d454e2dd5bb89007/tih_rna_sample_00089_23H5VFLT4_s39.attempt1.command.log 2078/tih_rna_sample_00089_23H5VFLT4_s39.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/56369754a4e8a97d77c305f89e957d/V4_0001_RNA_0005_23H5VFLT4_s22.log 452/V4_0001_RNA_0005_23H5VFLT4_s22.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/2258d59869f8a3e99adc850778d863/V4_0001_RNA_0005_23H5VFLT4_s11_seqtool_mqc.tsv 2016/V4_0001_RNA_0005_23H5VFLT4_s11_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/2cecb482057a92778b33ed40eb19a8/GM24385_0001_RNA_0001_23H5VFLT4_s48.read_distribution.txt 1738/GM24385_0001_RNA_0001_23H5VFLT4_s48.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/59b59eba99c012c1d9dd191d747cfd/tih_rna_sample_00396_23H5VFLT4_s26_trimmed_1_fastqc.zip 301/tih_rna_sample_00396_23H5VFLT4_s26_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/a89e2f4528770940dd8bee5997ddc4/tih_rna_sample_00121_23H5VFLT4_s41_2_fastqc.zip 1020/tih_rna_sample_00121_23H5VFLT4_s41_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/92e1983b04b765c871ef8d886cea59/GM24385_0001_RNA_0001_23H5VFLT4_s40.read_distribution.txt 1744/GM24385_0001_RNA_0001_23H5VFLT4_s40.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/a7557861eb37b6edfdaea924e7c339/V4_0001_RNA_0005_23H5VFLT4_s18_contamination_mqc.tsv 1298/V4_0001_RNA_0005_23H5VFLT4_s18_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/3a2a13b6b627adaab2b7328706efd0/V4_0001_RNA_0005_23H5VFLT4_s29.lc_extrap.txt 2153/V4_0001_RNA_0005_23H5VFLT4_s29.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/acb1f0be6bb5c291a868481b50963a/V4_0001_RNA_0005_23H5VFLT4_s04.Log.final.out 629/V4_0001_RNA_0005_23H5VFLT4_s04.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/6bf2bc28284b454980b58078612d20/tih_rna_sample_00261_23H5VFLT4_s06_rseqc_extra_mqc.tsv 1687/tih_rna_sample_00261_23H5VFLT4_s06_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/7d38d619925a5fc65de32734e3ab2a/tih_rna_sample_00121_23H5VFLT4_s41_seqtool_mqc.tsv 1966/tih_rna_sample_00121_23H5VFLT4_s41_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/5dea175b7f9bb69018208343c566ad/tih_rna_sample_00105_23H5VFLT4_s21.pos.DupRate.xls 1540/tih_rna_sample_00105_23H5VFLT4_s21.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/77bc9fbe086b5f96aead23d671d97b/tih_rna_sample_00090_23H5VFLT4_s32.ReadsPerGene.out.tab 746/tih_rna_sample_00090_23H5VFLT4_s32.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/11856b4d96ca6ea428404e7c0f358d/V4_0001_RNA_0005_23H5VFLT4_s14_1_fastqc.zip 1065/V4_0001_RNA_0005_23H5VFLT4_s14_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/53668f1287f262457696f026ce1d28/tih_rna_sample_00111_23H5VFLT4_s30_preseq_mqc.tsv 2216/tih_rna_sample_00111_23H5VFLT4_s30_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/c699012f157b031f72d8b2fb5b3bf8/V4_0001_RNA_0005_23H5VFLT4_s15_1_fastqc.zip 1033/V4_0001_RNA_0005_23H5VFLT4_s15_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/76b76c56c8593e61c77e9e231ffca6/tih_rna_sample_00388_23H5VFLT4_s22.md.bam.metrics 1915/tih_rna_sample_00388_23H5VFLT4_s22.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/e523e91b82ddaccd4187265d42f256/V4_0001_RNA_0005_23H5VFLT4_s47.attempt1.command.log 2095/V4_0001_RNA_0005_23H5VFLT4_s47.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/1744a75a0069dcdf654063808d9d5e/tih_rna_sample_00248_23H5VFLT4_s01.lc_extrap.txt 2152/tih_rna_sample_00248_23H5VFLT4_s01.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/a8e3ccd8d3a563d8f90932913b45d6/NTC_0001_0001_23H5VFLT4_s15_1_fastqc.zip 963/NTC_0001_0001_23H5VFLT4_s15_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/aa52f68bf769e29c044f7082334f0d/tih_rna_sample_00252_23H5VFLT4_s04.fastp.json 92/tih_rna_sample_00252_23H5VFLT4_s04.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/f7ab1a7f54ec3baa2c118213a43473/V4_0001_RNA_0005_23H5VFLT4_s17.junction_annotation.log 1383/V4_0001_RNA_0005_23H5VFLT4_s17.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/31a3ce6afb61d9a006cbe1dec990a7/V4_0001_RNA_0005_23H5VFLT4_s17.pos.DupRate.xls 1584/V4_0001_RNA_0005_23H5VFLT4_s17.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/d74825dec9ac180d4b9a313fa33cd6/V4_0001_RNA_0005_23H5VFLT4_s21_1_fastqc.zip 1067/V4_0001_RNA_0005_23H5VFLT4_s21_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/6fe54842899ecdc5ba94b25502856b/V4_0001_RNA_0005_23H5VFLT4_s31.pos.DupRate.xls 1610/V4_0001_RNA_0005_23H5VFLT4_s31.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/0d3df164e754266874df2710aeeb91/tih_rna_sample_00388_23H5VFLT4_s22_preseq_mqc.tsv 2289/tih_rna_sample_00388_23H5VFLT4_s22_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/81ada337451187f51ea224ed5c8819/V4_0001_RNA_0005_23H5VFLT4_s47.read_distribution.txt 1782/V4_0001_RNA_0005_23H5VFLT4_s47.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/3077d9fce4411e15c82e26f73cbfac/V4_0001_RNA_0005_23H5VFLT4_s38.pos.DupRate.xls 1620/V4_0001_RNA_0005_23H5VFLT4_s38.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/60b5c930c859cdb888e09355528dae/tih_rna_sample_00089_23H5VFLT4_s39_kallisto_mqc.tsv 536/tih_rna_sample_00089_23H5VFLT4_s39_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/3e0a273678c3c961b74b88e56f3020/tih_rna_sample_00111_23H5VFLT4_s30_trimmed_2_fastqc.zip 204/tih_rna_sample_00111_23H5VFLT4_s30_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/8bb5ca8fd3498fe233e4088ecbd439/V4_0001_RNA_0005_23H5VFLT4_s46.inner_distance_freq.txt 787/V4_0001_RNA_0005_23H5VFLT4_s46.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/29332f242b2d2202d788022f61cbff/tih_rna_sample_00378_23H5VFLT4_s24.pos.DupRate.xls 1542/tih_rna_sample_00378_23H5VFLT4_s24.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/ab3df72a0f6cfd243abb6232e06129/V4_0001_RNA_0005_23H5VFLT4_s06_trimmed_2_fastqc.zip 350/V4_0001_RNA_0005_23H5VFLT4_s06_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/eb1e6303ce9e65f3bc2b30067548d7/V4_0001_RNA_0005_23H5VFLT4_s29.inner_distance_freq.txt 795/V4_0001_RNA_0005_23H5VFLT4_s29.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/c94be8cd15611661a1c17e5d654081/V4_0001_RNA_0005_23H5VFLT4_s33.bam_stat.txt 1491/V4_0001_RNA_0005_23H5VFLT4_s33.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/906cf5ea6ad46da17e3e40d69170f3/V4_0001_RNA_0005_23H5VFLT4_s38_combined_fusions_arriba_visualisation.pdf 2330/V4_0001_RNA_0005_23H5VFLT4_s38_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/9c88ecd1f52a4364dad2f631befca8/V4_0001_RNA_0005_23H5VFLT4_s35.log 406/V4_0001_RNA_0005_23H5VFLT4_s35.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/775d41e2e26a879ac2c078cd196c87/tih_rna_sample_00087_23H5VFLT4_s17_1_fastqc.zip 1145/tih_rna_sample_00087_23H5VFLT4_s17_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/b390df7aac256f80dc29d1f38aee6b/tih_rna_sample_00422_23H5VFLT4_s47_rseqc_extra_mqc.tsv 1636/tih_rna_sample_00422_23H5VFLT4_s47_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/1c8d0d955e4b01799175b10ef5ee7f/V4_0001_RNA_0005_23H5VFLT4_s12.log 478/V4_0001_RNA_0005_23H5VFLT4_s12.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/4f8c76a48fd4f7b15f2167f344753a/GM24385_0001_RNA_0001_23H5VFLT4_s16_2_fastqc.zip 1062/GM24385_0001_RNA_0001_23H5VFLT4_s16_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/84cad496b9235956b968475aab6479/tih_rna_sample_00096_23H5VFLT4_s11_2_fastqc.zip 1080/tih_rna_sample_00096_23H5VFLT4_s11_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/9742e61a26e0a0e2240988a287649e/HD789_0002_RNA_0008_23H5VFLT4_s19.read_distribution.txt 1792/HD789_0002_RNA_0008_23H5VFLT4_s19.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/b1ced52d2628b5cb9989a54b85b03e/V4_0001_RNA_0005_23H5VFLT4_s07_preseq_mqc.tsv 2233/V4_0001_RNA_0005_23H5VFLT4_s07_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/3a6f88d09eafd33ada607b1eed3c48/tih_rna_sample_00425_23H5VFLT4_s46.log 399/tih_rna_sample_00425_23H5VFLT4_s46.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/f0e805fd99822d2b12e4c87bc4fa2f/tih_rna_sample_00096_23H5VFLT4_s11.attempt1.command.log 2049/tih_rna_sample_00096_23H5VFLT4_s11.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/dc290cc6eeb908be7b55fcdf920af2/V4_0001_RNA_0005_23H5VFLT4_s41.infer_experiment.txt 905/V4_0001_RNA_0005_23H5VFLT4_s41.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/bb4647e2b149fc361b23e64a4c3d43/V4_0001_RNA_0005_23H5VFLT4_s39.junction_annotation.log 1381/V4_0001_RNA_0005_23H5VFLT4_s39.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/0459886926de14dcf9f493f5d6f17a/V4_0001_RNA_0005_23H5VFLT4_s25.inner_distance_freq.txt 838/V4_0001_RNA_0005_23H5VFLT4_s25.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/18c3e7c68df3972567a9032ca657cf/V4_0001_RNA_0005_23H5VFLT4_s17_contamination_mqc.tsv 1306/V4_0001_RNA_0005_23H5VFLT4_s17_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/1b01e1f7dee5f3648beb950f685ec6/tih_rna_sample_00414_23H5VFLT4_s40_seqtool_mqc.tsv 2009/tih_rna_sample_00414_23H5VFLT4_s40_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/47b281013d10e678315ba0a504c6b9/tih_rna_sample_00410_23H5VFLT4_s34.read_distribution.txt 1816/tih_rna_sample_00410_23H5VFLT4_s34.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/688e3fa403eb0c9f1bc2173cbef998/V4_0001_RNA_0005_23H5VFLT4_s02.junction_annotation.log 1386/V4_0001_RNA_0005_23H5VFLT4_s02.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/953c893dbb1fb913498658c663ea00/V4_0001_RNA_0005_23H5VFLT4_s47_preseq_mqc.tsv 2287/V4_0001_RNA_0005_23H5VFLT4_s47_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/82c2af7b97c5b46b51d8957ca584e8/GM24385_0001_RNA_0001_23H5VFLT4_s40.bam_stat.txt 1463/GM24385_0001_RNA_0001_23H5VFLT4_s40.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/c8f2eedcad923a657f413901d18cce/tih_rna_sample_00420_23H5VFLT4_s45_contamination_mqc.tsv 1258/tih_rna_sample_00420_23H5VFLT4_s45_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/7868e4b02333b4b0a8a2a5f137a9f9/tih_rna_sample_00261_23H5VFLT4_s06.read_distribution.txt 1819/tih_rna_sample_00261_23H5VFLT4_s06.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/bed56414fb27a298a80b2b75d808d7/V4_0001_RNA_0005_23H5VFLT4_s27.inner_distance_freq.txt 847/V4_0001_RNA_0005_23H5VFLT4_s27.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/43d8255d799688e804374b09bc6286/V4_0001_RNA_0005_23H5VFLT4_s42.fastp.html 127/V4_0001_RNA_0005_23H5VFLT4_s42.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/82e200944e8a5592151bbe147b5a1b/tih_rna_sample_00115_23H5VFLT4_s35_trimmed_2_fastqc.zip 226/tih_rna_sample_00115_23H5VFLT4_s35_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/21db1e5e326f90b4eef7b332cc6f8a/GM24385_0001_RNA_0001_23H5VFLT4_s48.attempt1.command.log 2032/GM24385_0001_RNA_0001_23H5VFLT4_s48.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/0b36803f3ebb5787f8dc72659321e3/tih_rna_sample_00414_23H5VFLT4_s40.fastp.json 53/tih_rna_sample_00414_23H5VFLT4_s40.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/3ed6c0b54eeed66772867b2faec595/tih_rna_sample_00111_23H5VFLT4_s30_1_fastqc.zip 969/tih_rna_sample_00111_23H5VFLT4_s30_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/acf6430f54de86e490d12a8f717d21/tih_rna_sample_00274_23H5VFLT4_s14.junction_annotation.log 1353/tih_rna_sample_00274_23H5VFLT4_s14.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/97/8ed98780b9b9297c4d51986ff4fdc3/tih_rna_sample_00104_23H5VFLT4_s20.log 397/tih_rna_sample_00104_23H5VFLT4_s20.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/57e61f72a2eddc4b7e325448a17233/tih_rna_sample_00419_23H5VFLT4_s44.bam_stat.txt 1480/tih_rna_sample_00419_23H5VFLT4_s44.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/8de8aa4f3506756f32b934326968f7/tih_rna_sample_00105_23H5VFLT4_s21.junctionSaturation_plot.r 1156/tih_rna_sample_00105_23H5VFLT4_s21.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/3ed6c0b54eeed66772867b2faec595/tih_rna_sample_00111_23H5VFLT4_s30_2_fastqc.zip 970/tih_rna_sample_00111_23H5VFLT4_s30_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/983c2bb73f0290d31067f5b5f8c398/V4_0001_RNA_0005_23H5VFLT4_s09.read_distribution.txt 1798/V4_0001_RNA_0005_23H5VFLT4_s09.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/c38b86a5817034aa67da99f574b7f4/tih_rna_sample_00252_23H5VFLT4_s04_preseq_mqc.tsv 2306/tih_rna_sample_00252_23H5VFLT4_s04_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/bd2cec30cd60797819b8678b715de2/V4_0001_RNA_0005_23H5VFLT4_s29_seqtool_mqc.tsv 1950/V4_0001_RNA_0005_23H5VFLT4_s29_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/0484e98bb0766cba0054f31d8e8477/tih_rna_sample_00426_23H5VFLT4_s48.ReadsPerGene.out.tab 757/tih_rna_sample_00426_23H5VFLT4_s48.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/438c35bc3add90e22bfc298e84c150/V4_0001_RNA_0005_23H5VFLT4_s17.read_distribution.txt 1812/V4_0001_RNA_0005_23H5VFLT4_s17.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/e5bed3b03c499fabf0496b2e4e5b92/V4_0001_RNA_0005_23H5VFLT4_s31.fastp.html 181/V4_0001_RNA_0005_23H5VFLT4_s31.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4d/73cc8d55523c2ced90515fdf226cfc/tih_rna_sample_00403_23H5VFLT4_s29.junctionSaturation_plot.r 1181/tih_rna_sample_00403_23H5VFLT4_s29.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/3a7b49a850a43100c077525aedee73/tih_rna_sample_00087_23H5VFLT4_s17.Log.final.out 665/tih_rna_sample_00087_23H5VFLT4_s17.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/43f079c83b9c25502e27c0c3fd9ece/V4_0001_RNA_0005_23H5VFLT4_s01.junction_annotation.log 1397/V4_0001_RNA_0005_23H5VFLT4_s01.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/067bacdd8b186b73f57bc08f2d530f/tih_rna_sample_00115_23H5VFLT4_s35_preseq_mqc.tsv 2222/tih_rna_sample_00115_23H5VFLT4_s35_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b8/6e3c3fc042185ab315833c0534090c/tih_rna_sample_00272_23H5VFLT4_s09.read_distribution.txt 1809/tih_rna_sample_00272_23H5VFLT4_s09.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/c6af1679655f9d09a459b7ff781199/tih_rna_sample_00116_23H5VFLT4_s36_trimmed_1_fastqc.zip 293/tih_rna_sample_00116_23H5VFLT4_s36_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/4d4b04557c7874cdf6b3ff11cc5241/tih_rna_sample_00425_23H5VFLT4_s46.attempt2.command.log 2089/tih_rna_sample_00425_23H5VFLT4_s46.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/e5828d19dcdd5f485751e05bcdb150/V4_0001_RNA_0005_23H5VFLT4_s01_seqtool_mqc.tsv 1994/V4_0001_RNA_0005_23H5VFLT4_s01_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/b161c7db45c0e694fd430ea5f9d8b6/V4_0001_RNA_0005_23H5VFLT4_s33_contamination_mqc.tsv 1334/V4_0001_RNA_0005_23H5VFLT4_s33_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/fb28008092a3b37d0ce7ef9dfaf05e/tih_rna_sample_00422_23H5VFLT4_s47_trimmed_2_fastqc.zip 200/tih_rna_sample_00422_23H5VFLT4_s47_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1a/91bf0f024fd1acce3b3946789a43b4/tih_rna_sample_00251_23H5VFLT4_s03.read_distribution.txt 1756/tih_rna_sample_00251_23H5VFLT4_s03.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/a13158e5c594f7a7a8a1bdcaf0b6cf/V4_0001_RNA_0005_23H5VFLT4_s25.log 443/V4_0001_RNA_0005_23H5VFLT4_s25.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/0484e98bb0766cba0054f31d8e8477/tih_rna_sample_00426_23H5VFLT4_s48.Log.final.out 661/tih_rna_sample_00426_23H5VFLT4_s48.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/a5255b7e4f7f98d0592c6cc955673e/tih_rna_sample_00220_23H5VFLT4_s16_contamination_mqc.tsv 1321/tih_rna_sample_00220_23H5VFLT4_s16_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f4/b8c8f10c6da3aaa572d1da908ebecc/tih_rna_sample_00400_23H5VFLT4_s27_trimmed_1_fastqc.zip 297/tih_rna_sample_00400_23H5VFLT4_s27_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/426a76d036a8e53778972232e50e61/V4_0001_RNA_0005_23H5VFLT4_s01_kallisto_mqc.tsv 577/V4_0001_RNA_0005_23H5VFLT4_s01_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/67207eb0844d7cc27322a52ffa0bda/V4_0001_RNA_0005_23H5VFLT4_s19_seqtool_mqc.tsv 1976/V4_0001_RNA_0005_23H5VFLT4_s19_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/b5ff89bf2493121f05272070d88be0/tih_rna_sample_00400_23H5VFLT4_s27_1_fastqc.zip 1105/tih_rna_sample_00400_23H5VFLT4_s27_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/889f7c3e6efec98d506c53ad2a33d4/V4_0001_RNA_0005_23H5VFLT4_s42.md.bam.metrics 1909/V4_0001_RNA_0005_23H5VFLT4_s42.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/9aa8be54d31ae434132117b6c161c2/tih_rna_sample_00088_23H5VFLT4_s02_trimmed_2_fastqc.zip 386/tih_rna_sample_00088_23H5VFLT4_s02_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/2d9770d382d525b85efeb52b34cd98/V4_0001_RNA_0005_23H5VFLT4_s05_trimmed_2_fastqc.zip 288/V4_0001_RNA_0005_23H5VFLT4_s05_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/fe484628ce8ea91c43b2401b440048/V4_0001_RNA_0005_23H5VFLT4_s04_preseq_mqc.tsv 2285/V4_0001_RNA_0005_23H5VFLT4_s04_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/a2b4c426efc3a8d2d62d6540c9901f/V4_0001_RNA_0005_23H5VFLT4_s36.inner_distance_freq.txt 811/V4_0001_RNA_0005_23H5VFLT4_s36.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/2f5b2cf073cb8f230c0f7088e20c9d/tih_rna_sample_00378_23H5VFLT4_s24.Log.final.out 582/tih_rna_sample_00378_23H5VFLT4_s24.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/10174e4e80142294223d80b61df424/tih_rna_sample_00118_23H5VFLT4_s38.read_distribution.txt 1804/tih_rna_sample_00118_23H5VFLT4_s38.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/fc9581ac77be6159b6951dbfba668e/V4_0001_RNA_0005_23H5VFLT4_s31_trimmed_2_fastqc.zip 306/V4_0001_RNA_0005_23H5VFLT4_s31_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/039160d57c029dd8dab05c0571475a/V4_0001_RNA_0005_23H5VFLT4_s17.fastp.html 141/V4_0001_RNA_0005_23H5VFLT4_s17.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/ae1d87ffdd9ff7f62a6c5ea3be9e02/V4_0001_RNA_0005_23H5VFLT4_s26.log 457/V4_0001_RNA_0005_23H5VFLT4_s26.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/43/24583eea36846ce3409a988760cff2/tih_rna_sample_00426_23H5VFLT4_s48_contamination_mqc.tsv 1320/tih_rna_sample_00426_23H5VFLT4_s48_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/e0244a0c760dce81937119f9bbe321/V4_0001_RNA_0005_23H5VFLT4_s42.log 435/V4_0001_RNA_0005_23H5VFLT4_s42.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/2cb7523ae050f8478a44559b4ea826/V4_0001_RNA_0005_23H5VFLT4_s45.junction_annotation.log 1415/V4_0001_RNA_0005_23H5VFLT4_s45.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/e5ec8bb44ca876784513175fddc393/tih_rna_sample_00403_23H5VFLT4_s29.lc_extrap.txt 2136/tih_rna_sample_00403_23H5VFLT4_s29.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fe/d99617ad1edc680f3049fc3f2d4dc7/V4_0001_RNA_0005_23H5VFLT4_s07_kallisto_mqc.tsv 516/V4_0001_RNA_0005_23H5VFLT4_s07_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/9f360434d964ea8768114c89ffb564/tih_rna_sample_00261_23H5VFLT4_s06_combined_fusions_arriba_visualisation.pdf 2398/tih_rna_sample_00261_23H5VFLT4_s06_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cb/b319c2b4345cfa4729db43cc323287/V4_0001_RNA_0005_23H5VFLT4_s15_trimmed_2_fastqc.zip 246/V4_0001_RNA_0005_23H5VFLT4_s15_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/03cfc4207eb002aeb18f46e1cc3627/GM24385_0001_RNA_0001_23H5VFLT4_s32.ReadsPerGene.out.tab 696/GM24385_0001_RNA_0001_23H5VFLT4_s32.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/ba1aef040f46cf34df0743fe082b4d/tih_rna_sample_00414_23H5VFLT4_s40_rseqc_extra_mqc.tsv 1714/tih_rna_sample_00414_23H5VFLT4_s40_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/1fa9c0d6df1b042f69b9ef839ad0b9/tih_rna_sample_00104_23H5VFLT4_s20.md.bam.metrics 1839/tih_rna_sample_00104_23H5VFLT4_s20.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/7066dcad4fc18b85e716c0f354c063/tih_rna_sample_00377_23H5VFLT4_s23.read_distribution.txt 1799/tih_rna_sample_00377_23H5VFLT4_s23.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/886683ee7c620ce9fe9b4804538db6/GM24385_0001_RNA_0001_23H5VFLT4_s48_preseq_mqc.tsv 2224/GM24385_0001_RNA_0001_23H5VFLT4_s48_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/aec2997288964d0c3dc4c6ebd47ade/tih_rna_sample_00420_23H5VFLT4_s45.infer_experiment.txt 875/tih_rna_sample_00420_23H5VFLT4_s45.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/84cad496b9235956b968475aab6479/tih_rna_sample_00096_23H5VFLT4_s11_1_fastqc.zip 1079/tih_rna_sample_00096_23H5VFLT4_s11_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/3650576f3ff30a43baa6ced0b65520/tih_rna_sample_00163_23H5VFLT4_s43.pos.DupRate.xls 1626/tih_rna_sample_00163_23H5VFLT4_s43.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/40edee0a785f72d4e3e815b5ca890f/tih_rna_sample_00261_23H5VFLT4_s06_trimmed_1_fastqc.zip 331/tih_rna_sample_00261_23H5VFLT4_s06_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/c9e9352635e0a5621458e4ac6e8879/V4_0001_RNA_0005_23H5VFLT4_s33.infer_experiment.txt 932/V4_0001_RNA_0005_23H5VFLT4_s33.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/180901b1517cd0c2e0273fa785dac9/tih_rna_sample_00407_23H5VFLT4_s33_kallisto_mqc.tsv 511/tih_rna_sample_00407_23H5VFLT4_s33_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/313328f6f0850b671f24b24b363b44/tih_rna_sample_00261_23H5VFLT4_s06_kallisto_mqc.tsv 549/tih_rna_sample_00261_23H5VFLT4_s06_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/63/202ec9e196eabb69c1c16a465d66ec/tih_rna_sample_00252_23H5VFLT4_s04.read_distribution.txt 1775/tih_rna_sample_00252_23H5VFLT4_s04.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/515ed953f94e712a0ae089498e04b1/tih_rna_sample_00087_23H5VFLT4_s17_seqtool_mqc.tsv 2012/tih_rna_sample_00087_23H5VFLT4_s17_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/22117fbce23e1874086ea1bc9928e4/tih_rna_sample_00419_23H5VFLT4_s44_1_fastqc.zip 1131/tih_rna_sample_00419_23H5VFLT4_s44_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a1/a5d79c65a73e8daf7401726685fb46/V4_0001_RNA_0005_23H5VFLT4_s27_contamination_mqc.tsv 1340/V4_0001_RNA_0005_23H5VFLT4_s27_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/930b34ec7548cc3d7fce8f5de1ac16/tih_rna_sample_00377_23H5VFLT4_s23.bam_stat.txt 1501/tih_rna_sample_00377_23H5VFLT4_s23.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/b3eff8f0ef918acc553d8443879cd0/tih_rna_sample_00218_23H5VFLT4_s10_combined_fusions_arriba_visualisation.pdf 2399/tih_rna_sample_00218_23H5VFLT4_s10_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/67/f213c0d46ea1d68c0e3b93770d129f/tih_rna_sample_00124_23H5VFLT4_s31.read_distribution.txt 1805/tih_rna_sample_00124_23H5VFLT4_s31.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/4fb418eceb4e794e1945a578fdd314/tih_rna_sample_00410_23H5VFLT4_s34.lc_extrap.txt 2176/tih_rna_sample_00410_23H5VFLT4_s34.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/e2e3175a1aff5a03c7ab8e7c2f24c2/V4_0001_RNA_0005_23H5VFLT4_s43.log 468/V4_0001_RNA_0005_23H5VFLT4_s43.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/ada67401bd28541bd2686db8132864/V4_0001_RNA_0005_23H5VFLT4_s36.junctionSaturation_plot.r 1189/V4_0001_RNA_0005_23H5VFLT4_s36.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/3c6c52aa6d857d64a045f7aa75e809/tih_rna_sample_00121_23H5VFLT4_s41.bam_stat.txt 1521/tih_rna_sample_00121_23H5VFLT4_s41.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/14/2a1fdd7da80a03f4befdf040628fe8/V4_0001_RNA_0005_23H5VFLT4_s11.lc_extrap.txt 2140/V4_0001_RNA_0005_23H5VFLT4_s11.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/0aece92009d2dc2d5ecf4998e4a04d/V4_0001_RNA_0005_23H5VFLT4_s29_trimmed_1_fastqc.zip 259/V4_0001_RNA_0005_23H5VFLT4_s29_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/d133d54d061b733f923fec2b8c8f1f/tih_rna_sample_00252_23H5VFLT4_s04_trimmed_1_fastqc.zip 333/tih_rna_sample_00252_23H5VFLT4_s04_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/52d8afff07107bbcf8a0bca4933675/V4_0001_RNA_0005_23H5VFLT4_s12_trimmed_2_fastqc.zip 364/V4_0001_RNA_0005_23H5VFLT4_s12_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/d25f01cf6d0aafa792e3408e67e870/tih_rna_sample_00097_23H5VFLT4_s12_1_fastqc.zip 1115/tih_rna_sample_00097_23H5VFLT4_s12_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/37fb26d418e3ae6f207b7111b70d0f/tih_rna_sample_00248_23H5VFLT4_s01_contamination_mqc.tsv 1309/tih_rna_sample_00248_23H5VFLT4_s01_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/f919b87b7f1d95d72f13c34c30d65e/V4_0001_RNA_0005_23H5VFLT4_s26.junction_annotation.log 1434/V4_0001_RNA_0005_23H5VFLT4_s26.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/febfe4e342a7cae1f89a44cef7ca66/V4_0001_RNA_0005_23H5VFLT4_s29.junctionSaturation_plot.r 1180/V4_0001_RNA_0005_23H5VFLT4_s29.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/0b97aee0b69f7f21eb9566adc1bc32/V4_0001_RNA_0005_23H5VFLT4_s18.log 427/V4_0001_RNA_0005_23H5VFLT4_s18.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/a81f839406b96adc2be585a3e1c0da/V4_0001_RNA_0005_23H5VFLT4_s12_1_fastqc.zip 1129/V4_0001_RNA_0005_23H5VFLT4_s12_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/02d8aa94e9d6d08c6c2acc10816631/tih_rna_sample_00105_23H5VFLT4_s21.junction_annotation.log 1349/tih_rna_sample_00105_23H5VFLT4_s21.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/90949cc2df4f1d0905d4591fc47a9d/V4_0001_RNA_0005_23H5VFLT4_s18.read_distribution.txt 1761/V4_0001_RNA_0005_23H5VFLT4_s18.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/ce814f7e347982c60e35fde94dd387/tih_rna_sample_00090_23H5VFLT4_s32.fastp.html 193/tih_rna_sample_00090_23H5VFLT4_s32.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/9834ad4e9f7f666ba69225389fff1a/V4_0001_RNA_0005_23H5VFLT4_s34_1_fastqc.zip 1037/V4_0001_RNA_0005_23H5VFLT4_s34_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/4d7c6d17b4811818dba52897f6e469/tih_rna_sample_00403_23H5VFLT4_s29.read_distribution.txt 1806/tih_rna_sample_00403_23H5VFLT4_s29.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/00e1322f2e5ff8184403fa4d59b99f/tih_rna_sample_00116_23H5VFLT4_s36_1_fastqc.zip 1039/tih_rna_sample_00116_23H5VFLT4_s36_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/0099251d8707c4de597e28bdf6805a/tih_rna_sample_00248_23H5VFLT4_s01.bam_stat.txt 1504/tih_rna_sample_00248_23H5VFLT4_s01.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/c09fac42cd716cb31d11e18e18496d/tih_rna_sample_00235_23H5VFLT4_s07.lc_extrap.txt 2144/tih_rna_sample_00235_23H5VFLT4_s07.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/946f4119459d3ecd08067040e0e361/V4_0001_RNA_0005_23H5VFLT4_s33_trimmed_2_fastqc.zip 308/V4_0001_RNA_0005_23H5VFLT4_s33_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/b6b29d8ceba76bef443ac1a3ff3fe9/V4_0001_RNA_0005_23H5VFLT4_s43_trimmed_2_fastqc.zip 278/V4_0001_RNA_0005_23H5VFLT4_s43_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/2e707e7e9e6e6b2453d9f40ae890c0/V4_0001_RNA_0005_23H5VFLT4_s35.ReadsPerGene.out.tab 694/V4_0001_RNA_0005_23H5VFLT4_s35.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/c8e5eba2c9ab5c767846f213b0ff0c/tih_rna_sample_00087_23H5VFLT4_s17_trimmed_2_fastqc.zip 384/tih_rna_sample_00087_23H5VFLT4_s17_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/076a61ee04696ace9ee2ad3177ecba/HD789_0002_RNA_0008_23H5VFLT4_s19.pos.DupRate.xls 1616/HD789_0002_RNA_0008_23H5VFLT4_s19.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/14/af732aa4b7ac9f1ad257c7ce501437/tih_rna_sample_00117_23H5VFLT4_s37.junctionSaturation_plot.r 1164/tih_rna_sample_00117_23H5VFLT4_s37.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/ec6538c6af9d54bc9affdd14f42a28/V4_0001_RNA_0005_23H5VFLT4_s35.pos.DupRate.xls 1555/V4_0001_RNA_0005_23H5VFLT4_s35.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3c/12f9d9ebf7d3c1f37852df7e05211e/V4_0001_RNA_0005_23H5VFLT4_s23.junction_annotation.log 1394/V4_0001_RNA_0005_23H5VFLT4_s23.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/6f556dc9d7a4efe723650cc5697f44/tih_rna_sample_00252_23H5VFLT4_s04.Log.final.out 645/tih_rna_sample_00252_23H5VFLT4_s04.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/d6a23bcd45bc8f5f78d239c59e3466/NTC_0001_0001_23H5VFLT4_s15.read_distribution.txt 1731/NTC_0001_0001_23H5VFLT4_s15.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/9b7b971b747deb0aa303386acbf9ad/GM24385_0001_RNA_0001_23H5VFLT4_s08_2_fastqc.zip 1060/GM24385_0001_RNA_0001_23H5VFLT4_s08_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/dd04caf4acdd7277e63dd5b4fc82eb/V4_0001_RNA_0005_23H5VFLT4_s46.fastp.json 48/V4_0001_RNA_0005_23H5VFLT4_s46.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/5fcc52b313a3e25b3dddf8045c574b/tih_rna_sample_00122_23H5VFLT4_s42.attempt1.command.log 2029/tih_rna_sample_00122_23H5VFLT4_s42.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/2e024f133fcf7bd12f868a4b50263c/V4_0001_RNA_0005_23H5VFLT4_s22.fastp.json 58/V4_0001_RNA_0005_23H5VFLT4_s22.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f/.command.run .command.run")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/acee1d11ac15aeae5078769f224eac/tih_rna_sample_00254_23H5VFLT4_s05_trimmed_2_fastqc.zip 314/tih_rna_sample_00254_23H5VFLT4_s05_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/c38e8fafcd0e0d81259ff2f91f05ac/tih_rna_sample_00163_23H5VFLT4_s43_2_fastqc.zip 1122/tih_rna_sample_00163_23H5VFLT4_s43_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/78a1d9c5317c8626effa4e48b9bcd3/V4_0001_RNA_0005_23H5VFLT4_s06.infer_experiment.txt 918/V4_0001_RNA_0005_23H5VFLT4_s06.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/a1bdfcaa02f82ec5f7b9701b9c48ec/tih_rna_sample_00127_23H5VFLT4_s08.Log.final.out 589/tih_rna_sample_00127_23H5VFLT4_s08.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/cf25f9a70c6ea3b76171721f84be61/tih_rna_sample_00274_23H5VFLT4_s14_seqtool_mqc.tsv 1929/tih_rna_sample_00274_23H5VFLT4_s14_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/e89ada6ca666200e669ba74b93ff7e/V4_0001_RNA_0005_23H5VFLT4_s04_1_fastqc.zip 1077/V4_0001_RNA_0005_23H5VFLT4_s04_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/c511d1309568ae4764a9ede9640316/V4_0001_RNA_0005_23H5VFLT4_s01.junctionSaturation_plot.r 1217/V4_0001_RNA_0005_23H5VFLT4_s01.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/2405b2f30f30347c5944a1dad1f992/tih_rna_sample_00220_23H5VFLT4_s16_seqtool_mqc.tsv 1970/tih_rna_sample_00220_23H5VFLT4_s16_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/dd4726765831ddd128c4944e9b9be7/tih_rna_sample_00105_23H5VFLT4_s21.lc_extrap.txt 2116/tih_rna_sample_00105_23H5VFLT4_s21.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/41/16826eabf0863a2d5fecf3a530993e/V4_0001_RNA_0005_23H5VFLT4_s31_contamination_mqc.tsv 1318/V4_0001_RNA_0005_23H5VFLT4_s31_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/a0c9283bb009a6ec53aa134092207b/V4_0001_RNA_0005_23H5VFLT4_s01.log 481/V4_0001_RNA_0005_23H5VFLT4_s01.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/80abf432a2c2e4810eee2f6ce58c05/tih_rna_sample_00252_23H5VFLT4_s04_rseqc_extra_mqc.tsv 1709/tih_rna_sample_00252_23H5VFLT4_s04_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/81096fd641383d9316e17b6e759dc7/V4_0001_RNA_0005_23H5VFLT4_s21.inner_distance_freq.txt 804/V4_0001_RNA_0005_23H5VFLT4_s21.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/128bfb68689fc74c5efc2d10f3b155/V4_0001_RNA_0005_23H5VFLT4_s31.junctionSaturation_plot.r 1226/V4_0001_RNA_0005_23H5VFLT4_s31.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/b2831809b83d380842d498cd4a0f60/V4_0001_RNA_0005_23H5VFLT4_s38.fastp.json 60/V4_0001_RNA_0005_23H5VFLT4_s38.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/4e1810ccd8d19a406d619763019ffb/tih_rna_sample_00403_23H5VFLT4_s29_rseqc_extra_mqc.tsv 1668/tih_rna_sample_00403_23H5VFLT4_s29_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/e93cc9b47a46a71c4ce146afebb95d/V4_0001_RNA_0005_23H5VFLT4_s42_2_fastqc.zip 1126/V4_0001_RNA_0005_23H5VFLT4_s42_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/73b8f4ad16b5fe966bcbcfa579d665/tih_rna_sample_00407_23H5VFLT4_s33_2_fastqc.zip 1002/tih_rna_sample_00407_23H5VFLT4_s33_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/2e33171ec6053f950ef3c3a6d2771c/V4_0001_RNA_0005_23H5VFLT4_s42_contamination_mqc.tsv 1291/V4_0001_RNA_0005_23H5VFLT4_s42_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/867a67e70fc176f16b117169ed0a82/V4_0001_RNA_0005_23H5VFLT4_s07_seqtool_mqc.tsv 1946/V4_0001_RNA_0005_23H5VFLT4_s07_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/b99797516da7750a35fa670a7206c3/V4_0001_RNA_0005_23H5VFLT4_s13_contamination_mqc.tsv 1341/V4_0001_RNA_0005_23H5VFLT4_s13_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/fbf369b9ff89da1d048b751e715927/V4_0001_RNA_0005_23H5VFLT4_s45_combined_fusions_arriba_visualisation.pdf 2366/V4_0001_RNA_0005_23H5VFLT4_s45_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/389e394bae1e611a4d9f85cda86243/tih_rna_sample_00272_23H5VFLT4_s09_kallisto_mqc.tsv 514/tih_rna_sample_00272_23H5VFLT4_s09_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/6426aeec67c8aaf544a54eebb1c6f8/tih_rna_sample_00121_23H5VFLT4_s41.read_distribution.txt 1821/tih_rna_sample_00121_23H5VFLT4_s41.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/7c30ea7e65c1dedbbbb8f74824902b/tih_rna_sample_00377_23H5VFLT4_s23.md.bam.metrics 1882/tih_rna_sample_00377_23H5VFLT4_s23.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/09543badb3c8717ddc39cd0cc73b58/V4_0001_RNA_0005_23H5VFLT4_s44.md.bam.metrics 1864/V4_0001_RNA_0005_23H5VFLT4_s44.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/b06456a0f258e040dcb3c678c6999d/tih_rna_sample_00396_23H5VFLT4_s26.md.bam.metrics 1890/tih_rna_sample_00396_23H5VFLT4_s26.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/174dd5833c0478c6c3f7d04727e647/V4_0001_RNA_0005_23H5VFLT4_s22_trimmed_2_fastqc.zip 248/V4_0001_RNA_0005_23H5VFLT4_s22_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/573f6e56a99ea03d85eb007838db97/V4_0001_RNA_0005_23H5VFLT4_s38_1_fastqc.zip 1017/V4_0001_RNA_0005_23H5VFLT4_s38_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/0e22ef23123d5ed230f80832cdd2cb/tih_rna_sample_00096_23H5VFLT4_s11.bam_stat.txt 1486/tih_rna_sample_00096_23H5VFLT4_s11.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/1051afe6cde8fb1e29f0c38b519493/tih_rna_sample_00088_23H5VFLT4_s02.attempt1.command.log 2064/tih_rna_sample_00088_23H5VFLT4_s02.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/dcbb17612ef719f6a970c0b03832bc/tih_rna_sample_00396_23H5VFLT4_s26.inner_distance_freq.txt 861/tih_rna_sample_00396_23H5VFLT4_s26.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/c52c33efa68bb49816f88fdd15e75e/V4_0001_RNA_0005_23H5VFLT4_s44.lc_extrap.txt 2164/V4_0001_RNA_0005_23H5VFLT4_s44.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/01f6bbd07f3287d935ea8ac255dcf1/tih_rna_sample_00388_23H5VFLT4_s22_2_fastqc.zip 1150/tih_rna_sample_00388_23H5VFLT4_s22_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/b9dbc54dd52aeff03b41f4fbeadcf0/V4_0001_RNA_0005_23H5VFLT4_s02_trimmed_1_fastqc.zip 359/V4_0001_RNA_0005_23H5VFLT4_s02_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/56911c72f8e8204b75ff05485ebc52/tih_rna_sample_00105_23H5VFLT4_s21_contamination_mqc.tsv 1253/tih_rna_sample_00105_23H5VFLT4_s21_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/3f9c92157958f0658fbc6d4f5168c7/V4_0001_RNA_0005_23H5VFLT4_s43_preseq_mqc.tsv 2284/V4_0001_RNA_0005_23H5VFLT4_s43_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/4e993878a53102abd87fcd945c4fb5/tih_rna_sample_00378_23H5VFLT4_s24.md.bam.metrics 1830/tih_rna_sample_00378_23H5VFLT4_s24.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/6b5f4d435436b16e632d278ea11e89/tih_rna_sample_00426_23H5VFLT4_s48.junction_annotation.log 1399/tih_rna_sample_00426_23H5VFLT4_s48.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/a26d513ac0c1f7995ed867c26920d4/tih_rna_sample_00218_23H5VFLT4_s10.fastp.html 145/tih_rna_sample_00218_23H5VFLT4_s10.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/350282391861e66bd1cee34412b53e/V4_0001_RNA_0005_23H5VFLT4_s23_contamination_mqc.tsv 1313/V4_0001_RNA_0005_23H5VFLT4_s23_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/c4c3338891d2f061f5ad4140662730/GM24385_0001_RNA_0001_23H5VFLT4_s40_contamination_mqc.tsv 1263/GM24385_0001_RNA_0001_23H5VFLT4_s40_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/27a6fc0069361cf0e95dc4f4c71fba/NTC_0001_0001_23H5VFLT4_s15_seqtool_mqc.tsv 1923/NTC_0001_0001_23H5VFLT4_s15_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/2ff76dae66fb42eb4c0bd2dedafec0/tih_rna_sample_00394_23H5VFLT4_s25.inner_distance_freq.txt 778/tih_rna_sample_00394_23H5VFLT4_s25.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b8/ad6721412da3fe8f1769865b031020/V4_0001_RNA_0005_23H5VFLT4_s37.infer_experiment.txt 899/V4_0001_RNA_0005_23H5VFLT4_s37.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/63/911fcf742f59c978f0863667cc3266/V4_0001_RNA_0005_23H5VFLT4_s03.md.bam.metrics 1906/V4_0001_RNA_0005_23H5VFLT4_s03.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/2830d3131213c7aebcc42f04b8e61a/V4_0001_RNA_0005_23H5VFLT4_s13.read_distribution.txt 1789/V4_0001_RNA_0005_23H5VFLT4_s13.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/d3af7535b726754422f44f5090e8bf/V4_0001_RNA_0005_23H5VFLT4_s21.lc_extrap.txt 2187/V4_0001_RNA_0005_23H5VFLT4_s21.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/d323dbe9f46765f14bd5a172791739/tih_rna_sample_00087_23H5VFLT4_s17.attempt1.command.log 2062/tih_rna_sample_00087_23H5VFLT4_s17.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/f5b7ff6cac81d0a0d8707a643aad63/V4_0001_RNA_0005_23H5VFLT4_s28.infer_experiment.txt 880/V4_0001_RNA_0005_23H5VFLT4_s28.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/5a13c186a113e7ca32b0e3d1a71875/tih_rna_sample_00121_23H5VFLT4_s41.junction_annotation.log 1439/tih_rna_sample_00121_23H5VFLT4_s41.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/166dbf8179467c42396276812ddef3/V4_0001_RNA_0005_23H5VFLT4_s25_preseq_mqc.tsv 2300/V4_0001_RNA_0005_23H5VFLT4_s25_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/f6e5561577d7ee63feebf7ff3010a1/V4_0001_RNA_0005_23H5VFLT4_s30_trimmed_1_fastqc.zip 233/V4_0001_RNA_0005_23H5VFLT4_s30_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/b83dffd3a79fee6dcc4aed29fb8fff/V4_0001_RNA_0005_23H5VFLT4_s29_kallisto_mqc.tsv 538/V4_0001_RNA_0005_23H5VFLT4_s29_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/4e9a8a8d0f8678db2683553bc2f6f9/V4_0001_RNA_0005_23H5VFLT4_s39.junctionSaturation_plot.r 1175/V4_0001_RNA_0005_23H5VFLT4_s39.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/5ba226421c95c8e06a0e2c3822f069/V4_0001_RNA_0005_23H5VFLT4_s41_1_fastqc.zip 1143/V4_0001_RNA_0005_23H5VFLT4_s41_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/d9bd24fc173b2cc6920f99aabbed67/tih_rna_sample_00396_23H5VFLT4_s26.pos.DupRate.xls 1634/tih_rna_sample_00396_23H5VFLT4_s26.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/bb89cd20a789b56e97f66cad0b8f31/tih_rna_sample_00121_23H5VFLT4_s41.fastp.json 35/tih_rna_sample_00121_23H5VFLT4_s41.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/4a7a66dfc48f6376b0c5a8af12faf4/V4_0001_RNA_0005_23H5VFLT4_s47_seqtool_mqc.tsv 1962/V4_0001_RNA_0005_23H5VFLT4_s47_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/43/570bf73b04a3e8f0c21cec00c4f744/tih_rna_sample_00410_23H5VFLT4_s34_kallisto_mqc.tsv 501/tih_rna_sample_00410_23H5VFLT4_s34_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/8178c0fa5da49d5246b962e76193c8/V4_0001_RNA_0005_23H5VFLT4_s34_trimmed_1_fastqc.zip 379/V4_0001_RNA_0005_23H5VFLT4_s34_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/bb0152a08384d95d38d5d75c00266a/V4_0001_RNA_0005_23H5VFLT4_s12.Log.final.out 636/V4_0001_RNA_0005_23H5VFLT4_s12.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/18cbb251a6459c603eb4a79a5c27b1/tih_rna_sample_00407_23H5VFLT4_s33_trimmed_1_fastqc.zip 263/tih_rna_sample_00407_23H5VFLT4_s33_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/29d88b31d0c9f1d408ff07eeaf66de/tih_rna_sample_00280_23H5VFLT4_s18.infer_experiment.txt 941/tih_rna_sample_00280_23H5VFLT4_s18.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/51/1bc0faa208b831240a06da77370180/tih_rna_sample_00252_23H5VFLT4_s04.inner_distance_freq.txt 835/tih_rna_sample_00252_23H5VFLT4_s04.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a1/4bb7eb8e949f7e4474414484f7f78c/V4_0001_RNA_0005_23H5VFLT4_s30_seqtool_mqc.tsv 1942/V4_0001_RNA_0005_23H5VFLT4_s30_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/ee780cbabfe7a6cf5c60ebfe2d641b/GM24385_0001_RNA_0001_23H5VFLT4_s08_seqtool_mqc.tsv 1964/GM24385_0001_RNA_0001_23H5VFLT4_s08_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/97445d66dff429499c92164d459136/V4_0001_RNA_0005_23H5VFLT4_s30.pos.DupRate.xls 1557/V4_0001_RNA_0005_23H5VFLT4_s30.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/20d8e1aba764cd26bb30f02f5dc1ce/tih_rna_sample_00089_23H5VFLT4_s39.junctionSaturation_plot.r 1250/tih_rna_sample_00089_23H5VFLT4_s39.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e7/415d510adfc590e1ce4886b4b44914/V4_0001_RNA_0005_23H5VFLT4_s07.lc_extrap.txt 2137/V4_0001_RNA_0005_23H5VFLT4_s07.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/2806131c1cb788013eb6019e9f3a4a/tih_rna_sample_00410_23H5VFLT4_s34_contamination_mqc.tsv 1278/tih_rna_sample_00410_23H5VFLT4_s34_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/51/be538c43e0c8f4bc01359e346178a9/V4_0001_RNA_0005_23H5VFLT4_s12.md.bam.metrics 1892/V4_0001_RNA_0005_23H5VFLT4_s12.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/8838d1775e332c4ced459ddc5ff729/GM24385_0001_RNA_0001_23H5VFLT4_s40_2_fastqc.zip 1024/GM24385_0001_RNA_0001_23H5VFLT4_s40_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/bc74f663ba561a278f54c6ab143c17/tih_rna_sample_00422_23H5VFLT4_s47.read_distribution.txt 1733/tih_rna_sample_00422_23H5VFLT4_s47.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d6/d54c137c1f8040985161e672773c79/tih_rna_sample_00426_23H5VFLT4_s48_rseqc_extra_mqc.tsv 1685/tih_rna_sample_00426_23H5VFLT4_s48_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/f12c3393f4413332269c1cf6a6bad9/tih_rna_sample_00280_23H5VFLT4_s18.attempt1.command.log 2065/tih_rna_sample_00280_23H5VFLT4_s18.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/a89e2f4528770940dd8bee5997ddc4/tih_rna_sample_00121_23H5VFLT4_s41_1_fastqc.zip 1019/tih_rna_sample_00121_23H5VFLT4_s41_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/52a34a5366feb4a6da90c087d12f40/tih_rna_sample_00274_23H5VFLT4_s14_contamination_mqc.tsv 1265/tih_rna_sample_00274_23H5VFLT4_s14_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/6d5d724dd8dd14020be16a89ea700a/tih_rna_sample_00403_23H5VFLT4_s29.md.bam.metrics 1854/tih_rna_sample_00403_23H5VFLT4_s29.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/f854827789787775b171bea558a4fa/V4_0001_RNA_0005_23H5VFLT4_s38_trimmed_1_fastqc.zip 271/V4_0001_RNA_0005_23H5VFLT4_s38_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/a77c33ca7c70a82132e1a1168ce47f/tih_rna_sample_00378_23H5VFLT4_s24_preseq_mqc.tsv 2214/tih_rna_sample_00378_23H5VFLT4_s24_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/a688b443ff751f4bf738e421bcf559/tih_rna_sample_00104_23H5VFLT4_s20.fastp.json 9/tih_rna_sample_00104_23H5VFLT4_s20.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/2c0ba19c371370e6781a785b23cd56/tih_rna_sample_00378_23H5VFLT4_s24.log 391/tih_rna_sample_00378_23H5VFLT4_s24.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/c915f44d2814e354c5d7a99756aed4/tih_rna_sample_00220_23H5VFLT4_s16.lc_extrap.txt 2147/tih_rna_sample_00220_23H5VFLT4_s16.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/e4c47b4cf49114a312b70bd1bb56a0/tih_rna_sample_00111_23H5VFLT4_s30.log 390/tih_rna_sample_00111_23H5VFLT4_s30.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/f542d2844be38647c3cdd2428ee3c3/V4_0001_RNA_0005_23H5VFLT4_s43.fastp.html 128/V4_0001_RNA_0005_23H5VFLT4_s43.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/dd04caf4acdd7277e63dd5b4fc82eb/V4_0001_RNA_0005_23H5VFLT4_s46.fastp.html 144/V4_0001_RNA_0005_23H5VFLT4_s46.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/604937739b5bf0cef8afcbfb88c50b/GM24385_0001_RNA_0001_23H5VFLT4_s16.fastp.json 55/GM24385_0001_RNA_0001_23H5VFLT4_s16.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/d404db4d8b0a7d0591edf39ea106c3/HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.html 161/HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/ab6c287eebac2e16062238e62b22ff/V4_0001_RNA_0005_23H5VFLT4_s34_kallisto_mqc.tsv 555/V4_0001_RNA_0005_23H5VFLT4_s34_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/2507c9143ee6c80965dd52a5080552/GM24385_0001_RNA_0001_23H5VFLT4_s24_1_fastqc.zip 999/GM24385_0001_RNA_0001_23H5VFLT4_s24_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f2/5b608b22e341162f97a4f8966103ae/V4_0001_RNA_0005_23H5VFLT4_s17.log 429/V4_0001_RNA_0005_23H5VFLT4_s17.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/f05c11c5791e21d6eaa0b390be0e64/V4_0001_RNA_0005_23H5VFLT4_s11.md.bam.metrics 1920/V4_0001_RNA_0005_23H5VFLT4_s11.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/922a63d4804919eeab32d001a7f80f/V4_0001_RNA_0005_23H5VFLT4_s18_2_fastqc.zip 1096/V4_0001_RNA_0005_23H5VFLT4_s18_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/47ea50679f5617e1e7d4e19aa0bd44/V4_0001_RNA_0005_23H5VFLT4_s43.ReadsPerGene.out.tab 704/V4_0001_RNA_0005_23H5VFLT4_s43.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/f09339d98e64c7fec287305c8c75a5/V4_0001_RNA_0005_23H5VFLT4_s11.read_distribution.txt 1808/V4_0001_RNA_0005_23H5VFLT4_s11.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cb/193507d7a22267db3d81684eec3fc1/V4_0001_RNA_0005_23H5VFLT4_s26.read_distribution.txt 1801/V4_0001_RNA_0005_23H5VFLT4_s26.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b7/fdd07e55da5d07373321392653344c/V4_0001_RNA_0005_23H5VFLT4_s36_contamination_mqc.tsv 1284/V4_0001_RNA_0005_23H5VFLT4_s36_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/ce814f7e347982c60e35fde94dd387/tih_rna_sample_00090_23H5VFLT4_s32.fastp.json 97/tih_rna_sample_00090_23H5VFLT4_s32.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/708828745aa92ea96e9a7231bb51c7/tih_rna_sample_00105_23H5VFLT4_s21.Log.final.out 581/tih_rna_sample_00105_23H5VFLT4_s21.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/40d12f6c935d3a84100add8a6d1524/V4_0001_RNA_0005_23H5VFLT4_s41_contamination_mqc.tsv 1295/V4_0001_RNA_0005_23H5VFLT4_s41_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e7/785a1a976cba391cb947484ab72956/tih_rna_sample_00218_23H5VFLT4_s10_kallisto_mqc.tsv 505/tih_rna_sample_00218_23H5VFLT4_s10_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/7434e716eccd1c9dfc023d6f945523/V4_0001_RNA_0005_23H5VFLT4_s17.ReadsPerGene.out.tab 717/V4_0001_RNA_0005_23H5VFLT4_s17.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/029502cbf31fede9bb8e778f605428/tih_rna_sample_00410_23H5VFLT4_s34.inner_distance_freq.txt 798/tih_rna_sample_00410_23H5VFLT4_s34.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/441eab4f4cb4251074516121ebe25e/V4_0001_RNA_0005_23H5VFLT4_s15_contamination_mqc.tsv 1275/V4_0001_RNA_0005_23H5VFLT4_s15_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/10ce69708c064724bf38eddd31d468/tih_rna_sample_00087_23H5VFLT4_s17.bam_stat.txt 1497/tih_rna_sample_00087_23H5VFLT4_s17.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/5660bded4566b0f4a78b136a3b23a8/tih_rna_sample_00251_23H5VFLT4_s03.log 447/tih_rna_sample_00251_23H5VFLT4_s03.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/ee5106075fc08348420bcb855e80bc/tih_rna_sample_00378_23H5VFLT4_s24.attempt1.command.log 2022/tih_rna_sample_00378_23H5VFLT4_s24.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/2766d8f13378219ca51ed5fdf16f2d/HD789_0002_RNA_0008_23H5VFLT4_s19_preseq_mqc.tsv 2288/HD789_0002_RNA_0008_23H5VFLT4_s19_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/2eccefb1da2653c050114a56203008/tih_rna_sample_00122_23H5VFLT4_s42_trimmed_2_fastqc.zip 214/tih_rna_sample_00122_23H5VFLT4_s42_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/c13b7460b722b2caa1df3f20bd62d3/GM24385_0001_RNA_0001_23H5VFLT4_s16.inner_distance_freq.txt 825/GM24385_0001_RNA_0001_23H5VFLT4_s16.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/50f30768e8a64252f55c11816277e3/V4_0001_RNA_0005_23H5VFLT4_s21_combined_fusions_arriba_visualisation.pdf 2370/V4_0001_RNA_0005_23H5VFLT4_s21_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/f8df3fd8be85d652f52eb0a049ce6d/GM24385_0001_RNA_0001_23H5VFLT4_s40.Log.final.out 594/GM24385_0001_RNA_0001_23H5VFLT4_s40.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/bb25dbef43f72b16fd4bc9048a1ca3/V4_0001_RNA_0005_23H5VFLT4_s21_contamination_mqc.tsv 1280/V4_0001_RNA_0005_23H5VFLT4_s21_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/23/3030ccbf783352d6c279d54d30ea67/tih_rna_sample_00121_23H5VFLT4_s41_kallisto_mqc.tsv 509/tih_rna_sample_00121_23H5VFLT4_s41_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/19012021dda0b5e95be310494abb86/tih_rna_sample_00118_23H5VFLT4_s38_kallisto_mqc.tsv 532/tih_rna_sample_00118_23H5VFLT4_s38_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/711c7a041a6102177799a7718ee96c/tih_rna_sample_00425_23H5VFLT4_s46.bam_stat.txt 1468/tih_rna_sample_00425_23H5VFLT4_s46.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/ba78c6f3b91990397efe3abfabfca4/V4_0001_RNA_0005_23H5VFLT4_s41.inner_distance_freq.txt 809/V4_0001_RNA_0005_23H5VFLT4_s41.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/aa4c3985d2851487c09c4e2f133c20/GM24385_0001_RNA_0001_23H5VFLT4_s32.fastp.html 117/GM24385_0001_RNA_0001_23H5VFLT4_s32.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/e7a8002a70b5563afd4117ea9fd0ff/V4_0001_RNA_0005_23H5VFLT4_s35.bam_stat.txt 1507/V4_0001_RNA_0005_23H5VFLT4_s35.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/2a8bf6068eb9af0763e17e0ce6d408/V4_0001_RNA_0005_23H5VFLT4_s22.infer_experiment.txt 892/V4_0001_RNA_0005_23H5VFLT4_s22.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/faff63db5bb2d36a7040351da9f4e3/tih_rna_sample_00090_23H5VFLT4_s32.lc_extrap.txt 2173/tih_rna_sample_00090_23H5VFLT4_s32.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/a26d513ac0c1f7995ed867c26920d4/tih_rna_sample_00218_23H5VFLT4_s10.fastp.json 49/tih_rna_sample_00218_23H5VFLT4_s10.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/dca66b3e0cc21164f10d7daca36cdb/V4_0001_RNA_0005_23H5VFLT4_s38.junction_annotation.log 1364/V4_0001_RNA_0005_23H5VFLT4_s38.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/bec567ebd15bd0be6a6f94acec1464/tih_rna_sample_00407_23H5VFLT4_s33.fastp.json 42/tih_rna_sample_00407_23H5VFLT4_s33.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/abf51f6a12c63970ae72e65980473d/V4_0001_RNA_0005_23H5VFLT4_s15_preseq_mqc.tsv 2276/V4_0001_RNA_0005_23H5VFLT4_s15_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/8db3b4cafd07858f866f4f201a6833/V4_0001_RNA_0005_23H5VFLT4_s41_trimmed_1_fastqc.zip 315/V4_0001_RNA_0005_23H5VFLT4_s41_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c3/e289e81c4808e3502ca4d5d8b2ff1a/tih_rna_sample_00402_23H5VFLT4_s28_preseq_mqc.tsv 2293/tih_rna_sample_00402_23H5VFLT4_s28_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fe/89e0e7bc5234ea4e7da1ef35e2752c/V4_0001_RNA_0005_23H5VFLT4_s43.md.bam.metrics 1855/V4_0001_RNA_0005_23H5VFLT4_s43.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/495a02c7f5b692d5cf0764d5984bc5/tih_rna_sample_00419_23H5VFLT4_s44.infer_experiment.txt 915/tih_rna_sample_00419_23H5VFLT4_s44.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/914bfdbf2f22430832c3c5df2c83f3/tih_rna_sample_00407_23H5VFLT4_s33_contamination_mqc.tsv 1303/tih_rna_sample_00407_23H5VFLT4_s33_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/e5bed3b03c499fabf0496b2e4e5b92/V4_0001_RNA_0005_23H5VFLT4_s31.fastp.json 85/V4_0001_RNA_0005_23H5VFLT4_s31.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/a4d5e65afa777ef9552f72f56c7524/GM24385_0001_RNA_0001_23H5VFLT4_s24_trimmed_1_fastqc.zip 243/GM24385_0001_RNA_0001_23H5VFLT4_s24_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/6db7e921c55459670ecb4e8bda9a4d/V4_0001_RNA_0005_23H5VFLT4_s03_trimmed_1_fastqc.zip 323/V4_0001_RNA_0005_23H5VFLT4_s03_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/1062810e0cfc3a0ed150e2425fc618/V4_0001_RNA_0005_23H5VFLT4_s18_trimmed_2_fastqc.zip 254/V4_0001_RNA_0005_23H5VFLT4_s18_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/4e6b4c433d5e36625bb09e552d346c/V4_0001_RNA_0005_23H5VFLT4_s41_combined_fusions_arriba_visualisation.pdf 2393/V4_0001_RNA_0005_23H5VFLT4_s41_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/bd104347a25d332d48677c4926849c/V4_0001_RNA_0005_23H5VFLT4_s27_kallisto_mqc.tsv 562/V4_0001_RNA_0005_23H5VFLT4_s27_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/9b96bd43ff54f1f85f7ed01e7b28a2/tih_rna_sample_00400_23H5VFLT4_s27.bam_stat.txt 1494/tih_rna_sample_00400_23H5VFLT4_s27.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/ab2436939e527467ec12832aa789e7/V4_0001_RNA_0005_23H5VFLT4_s46_contamination_mqc.tsv 1268/V4_0001_RNA_0005_23H5VFLT4_s46_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/5c7a674792e60865caeb7c8c5f330e/V4_0001_RNA_0005_23H5VFLT4_s42.inner_distance_freq.txt 805/V4_0001_RNA_0005_23H5VFLT4_s42.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/ad35e180a77aa0c0e67d7a1a23f87b/tih_rna_sample_00089_23H5VFLT4_s39_rseqc_extra_mqc.tsv 1725/tih_rna_sample_00089_23H5VFLT4_s39_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/9689e52dbdaac8dfbbab860e49e910/V4_0001_RNA_0005_23H5VFLT4_s31.ReadsPerGene.out.tab 763/V4_0001_RNA_0005_23H5VFLT4_s31.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/c7fc14c3b11373e0efe147549aacff/tih_rna_sample_00248_23H5VFLT4_s01.log 432/tih_rna_sample_00248_23H5VFLT4_s01.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/b90905de79ce417a31fe11996d40f2/tih_rna_sample_00122_23H5VFLT4_s42.pos.DupRate.xls 1545/tih_rna_sample_00122_23H5VFLT4_s42.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/8178c0fa5da49d5246b962e76193c8/V4_0001_RNA_0005_23H5VFLT4_s34_trimmed_2_fastqc.zip 380/V4_0001_RNA_0005_23H5VFLT4_s34_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/28dcfe280ec17d8bdb7580452fe0ee/GM24385_0001_RNA_0001_23H5VFLT4_s32_combined_fusions_arriba_visualisation.pdf 2320/GM24385_0001_RNA_0001_23H5VFLT4_s32_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/400a0e600cc5b305297b17dd84f5e5/V4_0001_RNA_0005_23H5VFLT4_s01.read_distribution.txt 1780/V4_0001_RNA_0005_23H5VFLT4_s01.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/6a4b92dfa08c117b4b39162a1feee2/V4_0001_RNA_0005_23H5VFLT4_s10.md.bam.metrics 1896/V4_0001_RNA_0005_23H5VFLT4_s10.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/201871addb35f1a16718f99a582ec8/GM24385_0001_RNA_0001_23H5VFLT4_s40.infer_experiment.txt 882/GM24385_0001_RNA_0001_23H5VFLT4_s40.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/ad801785a65823cb963d8ea17d6a45/tih_rna_sample_00087_23H5VFLT4_s17_rseqc_extra_mqc.tsv 1689/tih_rna_sample_00087_23H5VFLT4_s17_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/494f724ca4cee13f2ea6202dab489d/tih_rna_sample_00422_23H5VFLT4_s47_kallisto_mqc.tsv 485/tih_rna_sample_00422_23H5VFLT4_s47_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/9d8cab824ac10dea25783bc5ff4d61/V4_0001_RNA_0005_23H5VFLT4_s27_preseq_mqc.tsv 2297/V4_0001_RNA_0005_23H5VFLT4_s27_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/f11d9f462a98d475797f4dff88d1c0/V4_0001_RNA_0005_23H5VFLT4_s18.bam_stat.txt 1477/V4_0001_RNA_0005_23H5VFLT4_s18.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/6b3f69b080fecb908aac5282548b56/V4_0001_RNA_0005_23H5VFLT4_s23.attempt1.command.log 2083/V4_0001_RNA_0005_23H5VFLT4_s23.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/01f6bbd07f3287d935ea8ac255dcf1/tih_rna_sample_00388_23H5VFLT4_s22_1_fastqc.zip 1149/tih_rna_sample_00388_23H5VFLT4_s22_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/e17a0b2148293399aa4079e7fca3d4/V4_0001_RNA_0005_23H5VFLT4_s33.log 458/V4_0001_RNA_0005_23H5VFLT4_s33.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/dc2e05cad6c298df580677c82a5653/V4_0001_RNA_0005_23H5VFLT4_s10_kallisto_mqc.tsv 576/V4_0001_RNA_0005_23H5VFLT4_s10_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/75b781d925b7f7aaba8caffade0c87/tih_rna_sample_00426_23H5VFLT4_s48_2_fastqc.zip 1058/tih_rna_sample_00426_23H5VFLT4_s48_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/facc7021fa50aaf519070b14037d39/NTC_0001_0001_23H5VFLT4_s15_trimmed_2_fastqc.zip 196/NTC_0001_0001_23H5VFLT4_s15_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/096d40e68a112422e3ca7ab9c4cb44/tih_rna_sample_00097_23H5VFLT4_s12.infer_experiment.txt 912/tih_rna_sample_00097_23H5VFLT4_s12.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/1a64fa1ebaa96569e7197df533fed6/V4_0001_RNA_0005_23H5VFLT4_s15.lc_extrap.txt 2180/V4_0001_RNA_0005_23H5VFLT4_s15.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b4/3d44418b240d6c50dd4cd8df4c5347/V4_0001_RNA_0005_23H5VFLT4_s33_kallisto_mqc.tsv 554/V4_0001_RNA_0005_23H5VFLT4_s33_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/336b269005c7aa49ca38984dac12c2/V4_0001_RNA_0005_23H5VFLT4_s10.junctionSaturation_plot.r 1231/V4_0001_RNA_0005_23H5VFLT4_s10.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/97334f382f9f7bf8c2a8ef6aa8c3f2/V4_0001_RNA_0005_23H5VFLT4_s27.pos.DupRate.xls 1605/V4_0001_RNA_0005_23H5VFLT4_s27.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/d5002ee831265d7bf04fc7deb21772/tih_rna_sample_00254_23H5VFLT4_s05_2_fastqc.zip 1118/tih_rna_sample_00254_23H5VFLT4_s05_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/b3d4bb3a9aa40b4ea59d380c6a5f38/tih_rna_sample_00121_23H5VFLT4_s41_rseqc_extra_mqc.tsv 1713/tih_rna_sample_00121_23H5VFLT4_s41_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/867c933ec5e94261aa13ae33b1993e/V4_0001_RNA_0005_23H5VFLT4_s26.pos.DupRate.xls 1609/V4_0001_RNA_0005_23H5VFLT4_s26.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/eed95697de480763d86257f853b493/tih_rna_sample_00261_23H5VFLT4_s06_seqtool_mqc.tsv 1971/tih_rna_sample_00261_23H5VFLT4_s06_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/3c10ea845db1f04428250d9be93365/tih_rna_sample_00394_23H5VFLT4_s25.junction_annotation.log 1355/tih_rna_sample_00394_23H5VFLT4_s25.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/cb5c4b183349561367b746d2c6cdd5/GM24385_0001_RNA_0001_23H5VFLT4_s24.ReadsPerGene.out.tab 692/GM24385_0001_RNA_0001_23H5VFLT4_s24.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/d96f97ff76ffd9147d7b218dbd28d1/tih_rna_sample_00400_23H5VFLT4_s27.infer_experiment.txt 945/tih_rna_sample_00400_23H5VFLT4_s27.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/b10c2e8b226bb8c0ff677e2c86b563/tih_rna_sample_00402_23H5VFLT4_s28.inner_distance_freq.txt 828/tih_rna_sample_00402_23H5VFLT4_s28.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/40add5d1141b379946dd830645a4b6/GM24385_0001_RNA_0001_23H5VFLT4_s08.inner_distance_freq.txt 832/GM24385_0001_RNA_0001_23H5VFLT4_s08.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/3869b5b040ac19e4585648c358fd9f/HD789_0002_RNA_0008_23H5VFLT4_s19.md.bam.metrics 1897/HD789_0002_RNA_0008_23H5VFLT4_s19.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/bd13e5f26f03c0e5ca2251eb79056b/tih_rna_sample_00104_23H5VFLT4_s20_trimmed_1_fastqc.zip 217/tih_rna_sample_00104_23H5VFLT4_s20_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/55233ec824ddd50bde906e582ddd8e/V4_0001_RNA_0005_23H5VFLT4_s36_trimmed_1_fastqc.zip 321/V4_0001_RNA_0005_23H5VFLT4_s36_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/84026c3015b7c05033ee3d023fe188/tih_rna_sample_00280_23H5VFLT4_s18_kallisto_mqc.tsv 521/tih_rna_sample_00280_23H5VFLT4_s18_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/5d74503403fc25c0ca273130ac44d0/V4_0001_RNA_0005_23H5VFLT4_s29.pos.DupRate.xls 1561/V4_0001_RNA_0005_23H5VFLT4_s29.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/37075f2a728224df58a889d75bf186/tih_rna_sample_00127_23H5VFLT4_s08_seqtool_mqc.tsv 1934/tih_rna_sample_00127_23H5VFLT4_s08_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/d8a6de109f8e121d40e8c3f8786ee1/V4_0001_RNA_0005_23H5VFLT4_s27.junctionSaturation_plot.r 1218/V4_0001_RNA_0005_23H5VFLT4_s27.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/8adfc669ae379e898ee9f1442903b3/tih_rna_sample_00087_23H5VFLT4_s17.pos.DupRate.xls 1622/tih_rna_sample_00087_23H5VFLT4_s17.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/bb89cd20a789b56e97f66cad0b8f31/tih_rna_sample_00121_23H5VFLT4_s41.fastp.html 131/tih_rna_sample_00121_23H5VFLT4_s41.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/f28862fff1fe010d3b4e05576c500f/tih_rna_sample_00394_23H5VFLT4_s25_rseqc_extra_mqc.tsv 1641/tih_rna_sample_00394_23H5VFLT4_s25_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/fcd9841c4d1c8ba244781ce63ca049/V4_0001_RNA_0005_23H5VFLT4_s44.log 439/V4_0001_RNA_0005_23H5VFLT4_s44.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/f01eb4ded3ae324f5c05d5acc81e01/V4_0001_RNA_0005_23H5VFLT4_s33.junctionSaturation_plot.r 1242/V4_0001_RNA_0005_23H5VFLT4_s33.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/fb8b63c959e707cd176ed0cb66dbf1/V4_0001_RNA_0005_23H5VFLT4_s07_1_fastqc.zip 1007/V4_0001_RNA_0005_23H5VFLT4_s07_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/8bc3bd84fd0cefff8a6809fb83592f/tih_rna_sample_00252_23H5VFLT4_s04_2_fastqc.zip 1082/tih_rna_sample_00252_23H5VFLT4_s04_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/ebbe586105cc252a6b68e3d48aa48d/tih_rna_sample_00396_23H5VFLT4_s26_kallisto_mqc.tsv 557/tih_rna_sample_00396_23H5VFLT4_s26_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/4a25f9150d603bd5ce4c063c2d1176/tih_rna_sample_00087_23H5VFLT4_s17.infer_experiment.txt 951/tih_rna_sample_00087_23H5VFLT4_s17.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/2a4f976cba5827d47f496a3daeacd6/tih_rna_sample_00377_23H5VFLT4_s23_preseq_mqc.tsv 2286/tih_rna_sample_00377_23H5VFLT4_s23_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/389c7f2bb4f8aeec89f86181848293/V4_0001_RNA_0005_23H5VFLT4_s37_contamination_mqc.tsv 1279/V4_0001_RNA_0005_23H5VFLT4_s37_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/e75591f3bf31b48a371fd795c592d3/tih_rna_sample_00235_23H5VFLT4_s07.inner_distance_freq.txt 802/tih_rna_sample_00235_23H5VFLT4_s07.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/0a9efcdae6d212bed6ce238b35c749/tih_rna_sample_00378_23H5VFLT4_s24.bam_stat.txt 1446/tih_rna_sample_00378_23H5VFLT4_s24.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/4bb324ef0dc1b8edb40a2bcf9d8328/V4_0001_RNA_0005_23H5VFLT4_s29.log 442/V4_0001_RNA_0005_23H5VFLT4_s29.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/fc721285b81935c9a88e7d2c691829/tih_rna_sample_00272_23H5VFLT4_s09.junction_annotation.log 1421/tih_rna_sample_00272_23H5VFLT4_s09.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/0628416d0142f161bbfe163dfae46d/tih_rna_sample_00220_23H5VFLT4_s16_trimmed_1_fastqc.zip 269/tih_rna_sample_00220_23H5VFLT4_s16_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/260416739e637468d464bdf5d49215/V4_0001_RNA_0005_23H5VFLT4_s30.log 421/V4_0001_RNA_0005_23H5VFLT4_s30.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/e29a4dcc67dc5d87d37173a01ca2c5/V4_0001_RNA_0005_23H5VFLT4_s10.bam_stat.txt 1529/V4_0001_RNA_0005_23H5VFLT4_s10.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/7804bd326bef16b4eda5ebd0c20730/tih_rna_sample_00163_23H5VFLT4_s43.attempt1.command.log 2067/tih_rna_sample_00163_23H5VFLT4_s43.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/ed192c66feac41815b478ce5a12b20/tih_rna_sample_00096_23H5VFLT4_s11.infer_experiment.txt 931/tih_rna_sample_00096_23H5VFLT4_s11.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/3ae659efdaeb7499f3eab07682beae/V4_0001_RNA_0005_23H5VFLT4_s22.attempt1.command.log 2053/V4_0001_RNA_0005_23H5VFLT4_s22.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/835a9ddafc6f0970b89a8fc2f52eb0/V4_0001_RNA_0005_23H5VFLT4_s20_trimmed_1_fastqc.zip 249/V4_0001_RNA_0005_23H5VFLT4_s20_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/5f3393ce5b6d0acb95fcafe5932efb/V4_0001_RNA_0005_23H5VFLT4_s27.fastp.json 84/V4_0001_RNA_0005_23H5VFLT4_s27.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/20720022bbbeb84ae7e7bc02bbfdb2/V4_0001_RNA_0005_23H5VFLT4_s05.log 451/V4_0001_RNA_0005_23H5VFLT4_s05.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a1/50c03491db0084325ad7763a68f5d2/V4_0001_RNA_0005_23H5VFLT4_s44_kallisto_mqc.tsv 535/V4_0001_RNA_0005_23H5VFLT4_s44_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/7f6bda1da2962d10e01815ad4d5c4e/V4_0001_RNA_0005_23H5VFLT4_s12_kallisto_mqc.tsv 574/V4_0001_RNA_0005_23H5VFLT4_s12_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/2d9770d382d525b85efeb52b34cd98/V4_0001_RNA_0005_23H5VFLT4_s05_trimmed_1_fastqc.zip 287/V4_0001_RNA_0005_23H5VFLT4_s05_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f4/215116db9e2bd44a5ff998ba017feb/tih_rna_sample_00394_23H5VFLT4_s25.infer_experiment.txt 874/tih_rna_sample_00394_23H5VFLT4_s25.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/c915f44d2814e354c5d7a99756aed4/tih_rna_sample_00220_23H5VFLT4_s16.attempt1.command.log 2051/tih_rna_sample_00220_23H5VFLT4_s16.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/1220d8d58be660f847fd1a7af097bb/tih_rna_sample_00117_23H5VFLT4_s37_2_fastqc.zip 980/tih_rna_sample_00117_23H5VFLT4_s37_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/776743e00e21022e3fee98967bd844/V4_0001_RNA_0005_23H5VFLT4_s46.md.bam.metrics 1842/V4_0001_RNA_0005_23H5VFLT4_s46.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/7616d9c2a51fcbec296cb2594f6199/tih_rna_sample_00163_23H5VFLT4_s43.infer_experiment.txt 960/tih_rna_sample_00163_23H5VFLT4_s43.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/5f951a6eed9281ee874998a275f26e/V4_0001_RNA_0005_23H5VFLT4_s38_seqtool_mqc.tsv 1944/V4_0001_RNA_0005_23H5VFLT4_s38_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/a3006401ab211bae177b624b1af48c/V4_0001_RNA_0005_23H5VFLT4_s19_preseq_mqc.tsv 2279/V4_0001_RNA_0005_23H5VFLT4_s19_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/a6570e529e4b9d77c4f45d3373b253/V4_0001_RNA_0005_23H5VFLT4_s17_2_fastqc.zip 1142/V4_0001_RNA_0005_23H5VFLT4_s17_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/c0f9d3d870c254f451de0a8dc9dd9f/V4_0001_RNA_0005_23H5VFLT4_s37.attempt1.command.log 2038/V4_0001_RNA_0005_23H5VFLT4_s37.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/67/1579e7a94fba5c36e3694777b3ffd6/V4_0001_RNA_0005_23H5VFLT4_s04.inner_distance_freq.txt 821/V4_0001_RNA_0005_23H5VFLT4_s04.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/9b41c0ac3053136c788aea75313f04/V4_0001_RNA_0005_23H5VFLT4_s04.fastp.json 68/V4_0001_RNA_0005_23H5VFLT4_s04.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/de/625b954d83221d7aa9799d0e7376bb/tih_rna_sample_00235_23H5VFLT4_s07.log 410/tih_rna_sample_00235_23H5VFLT4_s07.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/4f58d0cc7ae863b6cee3ed8f099bf6/V4_0001_RNA_0005_23H5VFLT4_s37.log 430/V4_0001_RNA_0005_23H5VFLT4_s37.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/f17f646982f0c01998919a43f2887a/GM24385_0001_RNA_0001_23H5VFLT4_s24.inner_distance_freq.txt 789/GM24385_0001_RNA_0001_23H5VFLT4_s24.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/ff2e2a2464f6f88e7376b430ab93a5/tih_rna_sample_00235_23H5VFLT4_s07_combined_fusions_arriba_visualisation.pdf 2388/tih_rna_sample_00235_23H5VFLT4_s07_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/78803d5b7e40abec6cc09b94785cb3/V4_0001_RNA_0005_23H5VFLT4_s47_trimmed_1_fastqc.zip 369/V4_0001_RNA_0005_23H5VFLT4_s47_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/fc30d2d0f3f1143a8dc71be8a42884/tih_rna_sample_00403_23H5VFLT4_s29.inner_distance_freq.txt 801/tih_rna_sample_00403_23H5VFLT4_s29.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/b28eacd79728d1474059ec55a90051/V4_0001_RNA_0005_23H5VFLT4_s35_2_fastqc.zip 996/V4_0001_RNA_0005_23H5VFLT4_s35_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/6bbc8e4f9e7e06f04b3ceb53cc2afb/V4_0001_RNA_0005_23H5VFLT4_s23.infer_experiment.txt 929/V4_0001_RNA_0005_23H5VFLT4_s23.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/66c31485a64681fbd8752880e65a54/V4_0001_RNA_0005_23H5VFLT4_s12.fastp.html 167/V4_0001_RNA_0005_23H5VFLT4_s12.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/038fbd9601b87a5772741bcd365cf9/tih_rna_sample_00394_23H5VFLT4_s25_kallisto_mqc.tsv 489/tih_rna_sample_00394_23H5VFLT4_s25_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7f/abb7d4df7f139501dbd1d09557a2d4/V4_0001_RNA_0005_23H5VFLT4_s20_seqtool_mqc.tsv 2006/V4_0001_RNA_0005_23H5VFLT4_s20_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/0d56b2e97188fe9c4dfde528f779da/V4_0001_RNA_0005_23H5VFLT4_s46.pos.DupRate.xls 1553/V4_0001_RNA_0005_23H5VFLT4_s46.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e7/8b033f7412d8a80b1615e7a476c445/V4_0001_RNA_0005_23H5VFLT4_s17_seqtool_mqc.tsv 2004/V4_0001_RNA_0005_23H5VFLT4_s17_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/b2c65250b2ea12c1b0026fe176108d/tih_rna_sample_00425_23H5VFLT4_s46.junction_annotation.log 1401/tih_rna_sample_00425_23H5VFLT4_s46.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/41/8ddb44e4ba93f40541936c1b0240a6/tih_rna_sample_00402_23H5VFLT4_s28.bam_stat.txt 1537/tih_rna_sample_00402_23H5VFLT4_s28.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/84186a231af094a1a5effc213940f3/tih_rna_sample_00087_23H5VFLT4_s17.junctionSaturation_plot.r 1227/tih_rna_sample_00087_23H5VFLT4_s17.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/5afc4bcb3b5c4cdf06aa0bce0cbeb2/V4_0001_RNA_0005_23H5VFLT4_s21.junction_annotation.log 1376/V4_0001_RNA_0005_23H5VFLT4_s21.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/f6b97ab945383a62a405b10b1d7cb2/V4_0001_RNA_0005_23H5VFLT4_s43_1_fastqc.zip 1053/V4_0001_RNA_0005_23H5VFLT4_s43_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/41/7d0603be52058e1555030782932a15/NTC_0001_0001_23H5VFLT4_s15.infer_experiment.txt 867/NTC_0001_0001_23H5VFLT4_s15.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/41c437f22034e23683e608f0cecf21/GM24385_0001_RNA_0001_23H5VFLT4_s24.read_distribution.txt 1769/GM24385_0001_RNA_0001_23H5VFLT4_s24.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/5151afdf6e0d5fb527a29e80b9960f/V4_0001_RNA_0005_23H5VFLT4_s18_combined_fusions_arriba_visualisation.pdf 2343/V4_0001_RNA_0005_23H5VFLT4_s18_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/2668b0cd35a44992c3d7472581d549/tih_rna_sample_00235_23H5VFLT4_s07_contamination_mqc.tsv 1283/tih_rna_sample_00235_23H5VFLT4_s07_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/58cfe82c40c017b0e09e91453c2ddf/tih_rna_sample_00378_23H5VFLT4_s24.inner_distance_freq.txt 774/tih_rna_sample_00378_23H5VFLT4_s24.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a8/f7564ef62a67cf5948c8e125ddb61d/V4_0001_RNA_0005_23H5VFLT4_s17.junctionSaturation_plot.r 1235/V4_0001_RNA_0005_23H5VFLT4_s17.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/c78bd589324efd82b2c9ad333d5934/V4_0001_RNA_0005_23H5VFLT4_s01_contamination_mqc.tsv 1314/V4_0001_RNA_0005_23H5VFLT4_s01_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/cb5c4b183349561367b746d2c6cdd5/GM24385_0001_RNA_0001_23H5VFLT4_s24.Log.final.out 596/GM24385_0001_RNA_0001_23H5VFLT4_s24.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/05/a5b94532925cab12b8078d646ba0d9/tih_rna_sample_00377_23H5VFLT4_s23_contamination_mqc.tsv 1326/tih_rna_sample_00377_23H5VFLT4_s23_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/4bfbbcad9c961db7bd56dacfdcd55d/V4_0001_RNA_0005_23H5VFLT4_s13.bam_stat.txt 1526/V4_0001_RNA_0005_23H5VFLT4_s13.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/71c44c5b73dd346b8611d72857dafa/tih_rna_sample_00088_23H5VFLT4_s02_seqtool_mqc.tsv 1989/tih_rna_sample_00088_23H5VFLT4_s02_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/6743a078fa85e8fbfb00af1a208ceb/GM24385_0001_RNA_0001_23H5VFLT4_s48_contamination_mqc.tsv 1259/GM24385_0001_RNA_0001_23H5VFLT4_s48_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/ffaa35ce383ed54dafee2a2379fbdb/tih_rna_sample_00407_23H5VFLT4_s33.inner_distance_freq.txt 806/tih_rna_sample_00407_23H5VFLT4_s33.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/7e6d79206f13391a34ba9ad511c3a0/tih_rna_sample_00105_23H5VFLT4_s21_trimmed_1_fastqc.zip 197/tih_rna_sample_00105_23H5VFLT4_s21_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/1a567cb03d2ed6180fad016e38a016/V4_0001_RNA_0005_23H5VFLT4_s13_trimmed_2_fastqc.zip 378/V4_0001_RNA_0005_23H5VFLT4_s13_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/06a78c0f18902db5fab9846aa5c0b3/tih_rna_sample_00121_23H5VFLT4_s41.lc_extrap.txt 2186/tih_rna_sample_00121_23H5VFLT4_s41.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/fef55f929f8e23e3826ea50ef61711/V4_0001_RNA_0005_23H5VFLT4_s27.infer_experiment.txt 943/V4_0001_RNA_0005_23H5VFLT4_s27.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/51/a9fcee53d209e229d8cb33366b4e57/tih_rna_sample_00377_23H5VFLT4_s23.junctionSaturation_plot.r 1215/tih_rna_sample_00377_23H5VFLT4_s23.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bc/3c9d808e1d5758ce037d60bb741ecc/V4_0001_RNA_0005_23H5VFLT4_s23_2_fastqc.zip 1046/V4_0001_RNA_0005_23H5VFLT4_s23_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/082523a018989e8853476b54626fdc/tih_rna_sample_00419_23H5VFLT4_s44.lc_extrap.txt 2205/tih_rna_sample_00419_23H5VFLT4_s44.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/fa66c6c6fe96419d6cf19f2e27638e/V4_0001_RNA_0005_23H5VFLT4_s28_trimmed_2_fastqc.zip 224/V4_0001_RNA_0005_23H5VFLT4_s28_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/7d17e59cc10fad29b06b9358aad1ba/V4_0001_RNA_0005_23H5VFLT4_s28_seqtool_mqc.tsv 1939/V4_0001_RNA_0005_23H5VFLT4_s28_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/1e746c0076deb35c7307cea8ac0e5b/V4_0001_RNA_0005_23H5VFLT4_s35_combined_fusions_arriba_visualisation.pdf 2325/V4_0001_RNA_0005_23H5VFLT4_s35_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/36d268352b51d1dd8fc6bd9bb04524/tih_rna_sample_00116_23H5VFLT4_s36_kallisto_mqc.tsv 503/tih_rna_sample_00116_23H5VFLT4_s36_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/15f3bec67f34f3eaf09fdbac1cb6cf/V4_0001_RNA_0005_23H5VFLT4_s33_1_fastqc.zip 1111/V4_0001_RNA_0005_23H5VFLT4_s33_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/fdee144523a4b3998a5e029e8cf7c1/V4_0001_RNA_0005_23H5VFLT4_s01.pos.DupRate.xls 1608/V4_0001_RNA_0005_23H5VFLT4_s01.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/51/e859cf08466d82a6bce1d8ff937213/tih_rna_sample_00088_23H5VFLT4_s02.read_distribution.txt 1824/tih_rna_sample_00088_23H5VFLT4_s02.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/ba2ebf3ee483dc4db92cc48783dfbc/V4_0001_RNA_0005_23H5VFLT4_s46_trimmed_1_fastqc.zip 231/V4_0001_RNA_0005_23H5VFLT4_s46_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/450c278d668d1168bf34a1a32731d8/tih_rna_sample_00420_23H5VFLT4_s45.Log.final.out 587/tih_rna_sample_00420_23H5VFLT4_s45.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/1875829e7558711bc939e5a2c34114/V4_0001_RNA_0005_23H5VFLT4_s10.junction_annotation.log 1398/V4_0001_RNA_0005_23H5VFLT4_s10.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/de5cb255b695b72d2ede64d15d9861/V4_0001_RNA_0005_23H5VFLT4_s46.infer_experiment.txt 883/V4_0001_RNA_0005_23H5VFLT4_s46.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2b/c8dd4e2a21ba895c0cec15014723b9/tih_rna_sample_00127_23H5VFLT4_s08.bam_stat.txt 1452/tih_rna_sample_00127_23H5VFLT4_s08.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/c52c33efa68bb49816f88fdd15e75e/V4_0001_RNA_0005_23H5VFLT4_s44.attempt1.command.log 2068/V4_0001_RNA_0005_23H5VFLT4_s44.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/60d7130faca44febb1fc6c6816baf3/tih_rna_sample_00097_23H5VFLT4_s12.junction_annotation.log 1404/tih_rna_sample_00097_23H5VFLT4_s12.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/c8389b39fbbc31c65a92ca6d74b2af/V4_0001_RNA_0005_23H5VFLT4_s11_2_fastqc.zip 1044/V4_0001_RNA_0005_23H5VFLT4_s11_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/254b8e8a2141e222f3e562d7adc34a/tih_rna_sample_00097_23H5VFLT4_s12.log 464/tih_rna_sample_00097_23H5VFLT4_s12.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/a8aa5513f9b6dee6f6325ec8bedb6a/V4_0001_RNA_0005_23H5VFLT4_s41.attempt1.command.log 2107/V4_0001_RNA_0005_23H5VFLT4_s41.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/6475015e0bd2f251b8b0a3e77df42a/tih_rna_sample_00118_23H5VFLT4_s38_trimmed_2_fastqc.zip 266/tih_rna_sample_00118_23H5VFLT4_s38_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/3a47890796b86e6ec8f5160a1dfaf3/V4_0001_RNA_0005_23H5VFLT4_s03.fastp.html 174/V4_0001_RNA_0005_23H5VFLT4_s03.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/8640d6f9af14ada2286262d0bbb5c2/tih_rna_sample_00403_23H5VFLT4_s29_preseq_mqc.tsv 2232/tih_rna_sample_00403_23H5VFLT4_s29_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/6d5db3aae186fec85e42318f8e0a16/V4_0001_RNA_0005_23H5VFLT4_s13.junction_annotation.log 1438/V4_0001_RNA_0005_23H5VFLT4_s13.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/adc8a72df1c655bda31915a71d5100/V4_0001_RNA_0005_23H5VFLT4_s41_rseqc_extra_mqc.tsv 1664/V4_0001_RNA_0005_23H5VFLT4_s41_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/8b5af65c9c35848b17f8d2c9ac1fff/tih_rna_sample_00272_23H5VFLT4_s09.fastp.html 170/tih_rna_sample_00272_23H5VFLT4_s09.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/3fc603f1b9371aacee71b04891a74b/tih_rna_sample_00280_23H5VFLT4_s18.fastp.html 171/tih_rna_sample_00280_23H5VFLT4_s18.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/f59fa754fa8f3b1228a07554b3aadc/V4_0001_RNA_0005_23H5VFLT4_s06_rseqc_extra_mqc.tsv 1679/V4_0001_RNA_0005_23H5VFLT4_s06_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/591f6a8acc6f6f9031774b0eebb381/V4_0001_RNA_0005_23H5VFLT4_s38.infer_experiment.txt 890/V4_0001_RNA_0005_23H5VFLT4_s38.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/10d200a9144d385c34ffc792123899/tih_rna_sample_00396_23H5VFLT4_s26.fastp.json 63/tih_rna_sample_00396_23H5VFLT4_s26.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/b6b29d8ceba76bef443ac1a3ff3fe9/V4_0001_RNA_0005_23H5VFLT4_s43_trimmed_1_fastqc.zip 277/V4_0001_RNA_0005_23H5VFLT4_s43_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/c4d412e88262db1e321b182b4a7c91/V4_0001_RNA_0005_23H5VFLT4_s30.junctionSaturation_plot.r 1173/V4_0001_RNA_0005_23H5VFLT4_s30.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/96f875a81f17ed84bc9144e8887b2b/tih_rna_sample_00124_23H5VFLT4_s31_rseqc_extra_mqc.tsv 1717/tih_rna_sample_00124_23H5VFLT4_s31_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/dcf32795dd7a413a2e421829b6d22e/V4_0001_RNA_0005_23H5VFLT4_s05_2_fastqc.zip 1042/V4_0001_RNA_0005_23H5VFLT4_s05_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/9f1ca8cb416d50b610896a4057d201/tih_rna_sample_00127_23H5VFLT4_s08.infer_experiment.txt 877/tih_rna_sample_00127_23H5VFLT4_s08.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/b75f80e81eb96ba1b97dc4123940dc/tih_rna_sample_00118_23H5VFLT4_s38.md.bam.metrics 1910/tih_rna_sample_00118_23H5VFLT4_s38.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/8a0173ef4a1082960d875ea4553b36/V4_0001_RNA_0005_23H5VFLT4_s13_2_fastqc.zip 1086/V4_0001_RNA_0005_23H5VFLT4_s13_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/bbbc7e59c972bd23b0fa210825b5ff/V4_0001_RNA_0005_23H5VFLT4_s38.read_distribution.txt 1749/V4_0001_RNA_0005_23H5VFLT4_s38.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/6f5f66c3f73ffa09507d11dfb88aea/tih_rna_sample_00089_23H5VFLT4_s39_1_fastqc.zip 1133/tih_rna_sample_00089_23H5VFLT4_s39_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/c7b108cabf614165afb522ee2143c3/NTC_0001_0001_23H5VFLT4_s15.lc_extrap.txt 2115/NTC_0001_0001_23H5VFLT4_s15.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/52e3426c7c9b496622af3133fe8986/V4_0001_RNA_0005_23H5VFLT4_s23.inner_distance_freq.txt 833/V4_0001_RNA_0005_23H5VFLT4_s23.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/14c43138110950ca8fd3d43ca8fe7f/V4_0001_RNA_0005_23H5VFLT4_s23.read_distribution.txt 1774/V4_0001_RNA_0005_23H5VFLT4_s23.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/05afbc55b3c942bfba67aaf818c94b/V4_0001_RNA_0005_23H5VFLT4_s35.fastp.json 47/V4_0001_RNA_0005_23H5VFLT4_s35.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/985c84c4926093cc5c33c595877785/V4_0001_RNA_0005_23H5VFLT4_s26_rseqc_extra_mqc.tsv 1690/V4_0001_RNA_0005_23H5VFLT4_s26_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/1360fafc7957ed16eb1b19f9e4ed71/V4_0001_RNA_0005_23H5VFLT4_s23.log 465/V4_0001_RNA_0005_23H5VFLT4_s23.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f1/5a8bff286952d230497cd114d87aa8/tih_rna_sample_00425_23H5VFLT4_s46_1_fastqc.zip 1003/tih_rna_sample_00425_23H5VFLT4_s46_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/12ab55181987e25556dce37dea93ad/tih_rna_sample_00425_23H5VFLT4_s46.fastp.json 23/tih_rna_sample_00425_23H5VFLT4_s46.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/b475bf8e5dad1784fe32b0f943dbf7/tih_rna_sample_00388_23H5VFLT4_s22.infer_experiment.txt 962/tih_rna_sample_00388_23H5VFLT4_s22.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/66c31485a64681fbd8752880e65a54/V4_0001_RNA_0005_23H5VFLT4_s12.fastp.json 71/V4_0001_RNA_0005_23H5VFLT4_s12.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/7377f810b57b86a9155a446f0929cf/GM24385_0001_RNA_0001_23H5VFLT4_s40_rseqc_extra_mqc.tsv 1655/GM24385_0001_RNA_0001_23H5VFLT4_s40_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/91c2f3519e269b38e5661b1c0c4aa1/tih_rna_sample_00248_23H5VFLT4_s01_rseqc_extra_mqc.tsv 1696/tih_rna_sample_00248_23H5VFLT4_s01_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/8b209e03512978f99ffedbbcad1caa/tih_rna_sample_00426_23H5VFLT4_s48.fastp.html 172/tih_rna_sample_00426_23H5VFLT4_s48.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/c7b108cabf614165afb522ee2143c3/NTC_0001_0001_23H5VFLT4_s15.attempt1.command.log 2019/NTC_0001_0001_23H5VFLT4_s15.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/40ccc9a49f3f3a3a7e0a38becc1868/V4_0001_RNA_0005_23H5VFLT4_s10.infer_experiment.txt 942/V4_0001_RNA_0005_23H5VFLT4_s10.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/94a34a36b06b187512aaf8766b3d11/V4_0001_RNA_0005_23H5VFLT4_s39.Log.final.out 599/V4_0001_RNA_0005_23H5VFLT4_s39.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/8faab95debb2d5e8c4cff2bf8c4647/V4_0001_RNA_0005_23H5VFLT4_s28.attempt1.command.log 2037/V4_0001_RNA_0005_23H5VFLT4_s28.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/8bbd285fab9ccbfb8e429112096f23/NTC_0001_0001_23H5VFLT4_s15.junction_annotation.log 1347/NTC_0001_0001_23H5VFLT4_s15.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/4e4cf180d1346b4ab6a60b916fd0a4/GM24385_0001_RNA_0001_23H5VFLT4_s16.lc_extrap.txt 2169/GM24385_0001_RNA_0001_23H5VFLT4_s16.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/dc2420d2c3ed7537979ce005da17e1/V4_0001_RNA_0005_23H5VFLT4_s43.lc_extrap.txt 2188/V4_0001_RNA_0005_23H5VFLT4_s43.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/e47a9e4189e8ce8b6e0bec7fb0a30d/tih_rna_sample_00220_23H5VFLT4_s16.log 417/tih_rna_sample_00220_23H5VFLT4_s16.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/63ad65454e62f0669ec2adbf7f3c81/tih_rna_sample_00419_23H5VFLT4_s44.junction_annotation.log 1428/tih_rna_sample_00419_23H5VFLT4_s44.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/68136f2647312cb2a12aa4769a7f09/V4_0001_RNA_0005_23H5VFLT4_s28_contamination_mqc.tsv 1262/V4_0001_RNA_0005_23H5VFLT4_s28_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/470d6aa574d9abb0f5e860a078143f/V4_0001_RNA_0005_23H5VFLT4_s14_rseqc_extra_mqc.tsv 1675/V4_0001_RNA_0005_23H5VFLT4_s14_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/ae6be166ceba546edc0af861984d54/V4_0001_RNA_0005_23H5VFLT4_s39.log 404/V4_0001_RNA_0005_23H5VFLT4_s39.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1f/417c5d6fb843e5c51e3399a35900e8/V4_0001_RNA_0005_23H5VFLT4_s01.Log.final.out 652/V4_0001_RNA_0005_23H5VFLT4_s01.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/41/0cbf4de401d470e3957a3dedf39f25/V4_0001_RNA_0005_23H5VFLT4_s46.log 408/V4_0001_RNA_0005_23H5VFLT4_s46.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/20430d27fb27d799a5200d7b449f9a/tih_rna_sample_00087_23H5VFLT4_s17_preseq_mqc.tsv 2254/tih_rna_sample_00087_23H5VFLT4_s17_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/b48183b60968b900336cd0cf3bc50d/GM24385_0001_RNA_0001_23H5VFLT4_s16.infer_experiment.txt 921/GM24385_0001_RNA_0001_23H5VFLT4_s16.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/c519c595e9230c05262630067690db/V4_0001_RNA_0005_23H5VFLT4_s15.bam_stat.txt 1464/V4_0001_RNA_0005_23H5VFLT4_s15.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/174dd5833c0478c6c3f7d04727e647/V4_0001_RNA_0005_23H5VFLT4_s22_trimmed_1_fastqc.zip 247/V4_0001_RNA_0005_23H5VFLT4_s22_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/ef9d2891b336a171bb5d868314da36/tih_rna_sample_00218_23H5VFLT4_s10_2_fastqc.zip 1070/tih_rna_sample_00218_23H5VFLT4_s10_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/4bcfa0d998e42616f7a1e1bd6005bb/tih_rna_sample_00394_23H5VFLT4_s25.fastp.html 110/tih_rna_sample_00394_23H5VFLT4_s25.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/ee264dc92c7f5e064b71957e36e1a9/GM24385_0001_RNA_0001_23H5VFLT4_s40.pos.DupRate.xls 1552/GM24385_0001_RNA_0001_23H5VFLT4_s40.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/df/d09ec0e50199d2955c411d29bbd7cf/GM24385_0001_RNA_0001_23H5VFLT4_s16_trimmed_1_fastqc.zip 337/GM24385_0001_RNA_0001_23H5VFLT4_s16_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/7fb4751d60b45031fa3852e0cb34ab/V4_0001_RNA_0005_23H5VFLT4_s04_contamination_mqc.tsv 1288/V4_0001_RNA_0005_23H5VFLT4_s04_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/e900f7ffba711941591ec681ea0dea/tih_rna_sample_00235_23H5VFLT4_s07.pos.DupRate.xls 1571/tih_rna_sample_00235_23H5VFLT4_s07.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/643a34b39dd424b7c94f089b9df277/V4_0001_RNA_0005_23H5VFLT4_s03.Log.final.out 662/V4_0001_RNA_0005_23H5VFLT4_s03.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/0ae67efa6944a95862f8b4f8d13bed/V4_0001_RNA_0005_23H5VFLT4_s12.bam_stat.txt 1527/V4_0001_RNA_0005_23H5VFLT4_s12.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/3a8fffb6d2515c3baa465ed6d2dd10/V4_0001_RNA_0005_23H5VFLT4_s19.fastp.html 123/V4_0001_RNA_0005_23H5VFLT4_s19.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/35d8aa612f3cd735eb29058c01cd80/tih_rna_sample_00117_23H5VFLT4_s37.lc_extrap.txt 2130/tih_rna_sample_00117_23H5VFLT4_s37.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/58/81456d184595c47fa600961731a3d8/tih_rna_sample_00124_23H5VFLT4_s31.infer_experiment.txt 954/tih_rna_sample_00124_23H5VFLT4_s31.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/f98c80b510d6f1aa0a10521e4bd72a/tih_rna_sample_00115_23H5VFLT4_s35_rseqc_extra_mqc.tsv 1650/tih_rna_sample_00115_23H5VFLT4_s35_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/d44faa90c229d0d4274ea97e4ab880/V4_0001_RNA_0005_23H5VFLT4_s36.fastp.json 72/V4_0001_RNA_0005_23H5VFLT4_s36.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/04a14982cf2f0c85e43b645c58e70c/tih_rna_sample_00402_23H5VFLT4_s28.attempt1.command.log 2101/tih_rna_sample_00402_23H5VFLT4_s28.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/7a0fb50e3cf90e289a94b8eea85b6e/V4_0001_RNA_0005_23H5VFLT4_s30_combined_fusions_arriba_visualisation.pdf 2326/V4_0001_RNA_0005_23H5VFLT4_s30_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/b0a80a823aabceaaa6b21931e739c2/tih_rna_sample_00090_23H5VFLT4_s32_1_fastqc.zip 1113/tih_rna_sample_00090_23H5VFLT4_s32_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/0bb6b51eb668bd56d0941cea693599/tih_rna_sample_00402_23H5VFLT4_s28.junction_annotation.log 1389/tih_rna_sample_00402_23H5VFLT4_s28.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/d591475222377ca6892c8fc0d8d67f/GM24385_0001_RNA_0001_23H5VFLT4_s32.lc_extrap.txt 2139/GM24385_0001_RNA_0001_23H5VFLT4_s32.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dc/cf9d5a2387c7f4d431894bcd2b5aca/V4_0001_RNA_0005_23H5VFLT4_s15_combined_fusions_arriba_visualisation.pdf 2331/V4_0001_RNA_0005_23H5VFLT4_s15_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/ced7d2f2c583c375645eefdfd9bf66/tih_rna_sample_00088_23H5VFLT4_s02_1_fastqc.zip 1139/tih_rna_sample_00088_23H5VFLT4_s02_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/0c4f834402f9f0e05bbd76b8d3f79f/V4_0001_RNA_0005_23H5VFLT4_s34.pos.DupRate.xls 1604/V4_0001_RNA_0005_23H5VFLT4_s34.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/a6e046b020dca8a1b31360b5ea370f/tih_rna_sample_00220_23H5VFLT4_s16.md.bam.metrics 1877/tih_rna_sample_00220_23H5VFLT4_s16.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/d44faa90c229d0d4274ea97e4ab880/V4_0001_RNA_0005_23H5VFLT4_s36.fastp.html 168/V4_0001_RNA_0005_23H5VFLT4_s36.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/5fbc51a805066aeb16dbc3810c27aa/GM24385_0001_RNA_0001_23H5VFLT4_s16.Log.final.out 633/GM24385_0001_RNA_0001_23H5VFLT4_s16.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/22504b6c3a86ad5d4b3805e075a867/V4_0001_RNA_0005_23H5VFLT4_s47.bam_stat.txt 1520/V4_0001_RNA_0005_23H5VFLT4_s47.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/77bc9fbe086b5f96aead23d671d97b/tih_rna_sample_00090_23H5VFLT4_s32.Log.final.out 650/tih_rna_sample_00090_23H5VFLT4_s32.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/ba533d0362afe666e877baf57ab9e2/V4_0001_RNA_0005_23H5VFLT4_s19.md.bam.metrics 1886/V4_0001_RNA_0005_23H5VFLT4_s19.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/016f4d9ad2a3ff1ba65eba11df183a/GM24385_0001_RNA_0001_23H5VFLT4_s48.fastp.html 111/GM24385_0001_RNA_0001_23H5VFLT4_s48.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/65c4850973c2548f6ae6a825ec6a60/V4_0001_RNA_0005_23H5VFLT4_s39_rseqc_extra_mqc.tsv 1694/V4_0001_RNA_0005_23H5VFLT4_s39_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/eafffe42eeccaae5cc7aea5183271c/V4_0001_RNA_0005_23H5VFLT4_s12_combined_fusions_arriba_visualisation.pdf 2386/V4_0001_RNA_0005_23H5VFLT4_s12_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/819e42f7eee0e8a4d94dafb2050cf4/tih_rna_sample_00118_23H5VFLT4_s38.junction_annotation.log 1382/tih_rna_sample_00118_23H5VFLT4_s38.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/12e91d09f07afb4af648fa07898664/tih_rna_sample_00394_23H5VFLT4_s25.bam_stat.txt 1449/tih_rna_sample_00394_23H5VFLT4_s25.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/8b534c342cd139129fa1855b7b3ecc/V4_0001_RNA_0005_23H5VFLT4_s14.lc_extrap.txt 2195/V4_0001_RNA_0005_23H5VFLT4_s14.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/d255a83425d153220d4da674045048/GM24385_0001_RNA_0001_23H5VFLT4_s24.fastp.html 116/GM24385_0001_RNA_0001_23H5VFLT4_s24.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/a5273756f1743ac1cb9b5a4570fc4c/tih_rna_sample_00419_23H5VFLT4_s44_trimmed_1_fastqc.zip 299/tih_rna_sample_00419_23H5VFLT4_s44_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/3eaff7665e576dd216e59564783c63/GM24385_0001_RNA_0001_23H5VFLT4_s32.inner_distance_freq.txt 792/GM24385_0001_RNA_0001_23H5VFLT4_s32.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/3486a696fb9c26ab73e061d272d527/V4_0001_RNA_0005_23H5VFLT4_s12.read_distribution.txt 1823/V4_0001_RNA_0005_23H5VFLT4_s12.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/97/84e6d8599505d1ced3dc9fead79837/V4_0001_RNA_0005_23H5VFLT4_s04.pos.DupRate.xls 1587/V4_0001_RNA_0005_23H5VFLT4_s04.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/6ae160316b17baacaa38129101c7b1/tih_rna_sample_00116_23H5VFLT4_s36_contamination_mqc.tsv 1311/tih_rna_sample_00116_23H5VFLT4_s36_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/762478e38bf29aa87f57df4309a796/tih_rna_sample_00104_23H5VFLT4_s20_1_fastqc.zip 985/tih_rna_sample_00104_23H5VFLT4_s20_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/bdb12725b2a5bce86a7732f220d11f/tih_rna_sample_00087_23H5VFLT4_s17.log 460/tih_rna_sample_00087_23H5VFLT4_s17.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/1a64fa1ebaa96569e7197df533fed6/V4_0001_RNA_0005_23H5VFLT4_s15.attempt1.command.log 2084/V4_0001_RNA_0005_23H5VFLT4_s15.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d6/0bf754f6eed02706a8b0e3c957c310/tih_rna_sample_00394_23H5VFLT4_s25_preseq_mqc.tsv 2219/tih_rna_sample_00394_23H5VFLT4_s25_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/f6920ceb5f2c3045204632cacc16c0/V4_0001_RNA_0005_23H5VFLT4_s45_trimmed_2_fastqc.zip 368/V4_0001_RNA_0005_23H5VFLT4_s45_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/4f7087f04893f1195377c3fc1e3985/tih_rna_sample_00116_23H5VFLT4_s36.log 407/tih_rna_sample_00116_23H5VFLT4_s36.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fe/a68a8424a6d29ef6b2ae878e6eb71a/tih_rna_sample_00105_23H5VFLT4_s21.log 388/tih_rna_sample_00105_23H5VFLT4_s21.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/b7c344022f8043c63ec00e9cfe4b55/V4_0001_RNA_0005_23H5VFLT4_s45_1_fastqc.zip 1055/V4_0001_RNA_0005_23H5VFLT4_s45_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/ae1901df813e810076f9283a58181d/V4_0001_RNA_0005_23H5VFLT4_s20.attempt1.command.log 2082/V4_0001_RNA_0005_23H5VFLT4_s20.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/tmp/4c/53d6ca7590fce4a022c715adc0b7f4/workflow_summary_mqc.yaml 2/workflow_summary_mqc.yaml")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/8f63912f6f6f3801a3fda6e598353c/V4_0001_RNA_0005_23H5VFLT4_s17.bam_stat.txt 1485/V4_0001_RNA_0005_23H5VFLT4_s17.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/8a644cf665c797c1229a4e18cbeda4/tih_rna_sample_00118_23H5VFLT4_s38.lc_extrap.txt 2142/tih_rna_sample_00118_23H5VFLT4_s38.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/c401763e9e4326e4bee3127cd54e62/tih_rna_sample_00248_23H5VFLT4_s01_kallisto_mqc.tsv 528/tih_rna_sample_00248_23H5VFLT4_s01_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/a6ef0212d8efc8e1a6f8ffe82574ca/tih_rna_sample_00414_23H5VFLT4_s40.log 448/tih_rna_sample_00414_23H5VFLT4_s40.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/10/bae2abeb17c9bd59752966af88dae1/V4_0001_RNA_0005_23H5VFLT4_s34.infer_experiment.txt 937/V4_0001_RNA_0005_23H5VFLT4_s34.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/6ccf4113d0c686720dec5439f84c47/tih_rna_sample_00111_23H5VFLT4_s30.junction_annotation.log 1351/tih_rna_sample_00111_23H5VFLT4_s30.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/755d0391b771b1d0588b422be7b202/tih_rna_sample_00115_23H5VFLT4_s35_combined_fusions_arriba_visualisation.pdf 2395/tih_rna_sample_00115_23H5VFLT4_s35_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/eb60a5272b3585e5a4a4a2d613da52/tih_rna_sample_00127_23H5VFLT4_s08_preseq_mqc.tsv 2217/tih_rna_sample_00127_23H5VFLT4_s08_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/4002265717d09a19b5c19527e3219c/tih_rna_sample_00425_23H5VFLT4_s46.inner_distance_freq.txt 823/tih_rna_sample_00425_23H5VFLT4_s46.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/9e83a5b6ae38d3b0194e4b4432f58c/V4_0001_RNA_0005_23H5VFLT4_s25.fastp.html 178/V4_0001_RNA_0005_23H5VFLT4_s25.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/f3da565c0d3f8d2e5576b23f3c1874/tih_rna_sample_00116_23H5VFLT4_s36.fastp.html 129/tih_rna_sample_00116_23H5VFLT4_s36.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/553acc719a320953a0a00770ed4f41/tih_rna_sample_00252_23H5VFLT4_s04_contamination_mqc.tsv 1315/tih_rna_sample_00252_23H5VFLT4_s04_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/9f6563660665d7b06533480d54147a/V4_0001_RNA_0005_23H5VFLT4_s11.junction_annotation.log 1393/V4_0001_RNA_0005_23H5VFLT4_s11.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/97/e02e875ae5ee71818c2471ad1113af/GM24385_0001_RNA_0001_23H5VFLT4_s16.pos.DupRate.xls 1633/GM24385_0001_RNA_0001_23H5VFLT4_s16.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/80/2cec76c1ef8bc80066658cf10b6723/V4_0001_RNA_0005_23H5VFLT4_s05_seqtool_mqc.tsv 1983/V4_0001_RNA_0005_23H5VFLT4_s05_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/73b5021326a8cf2893927e863f15de/V4_0001_RNA_0005_23H5VFLT4_s11.fastp.json 57/V4_0001_RNA_0005_23H5VFLT4_s11.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/22b464ac0e31c0f81977f6af6c57e6/tih_rna_sample_00425_23H5VFLT4_s46.ReadsPerGene.out.tab 727/tih_rna_sample_00425_23H5VFLT4_s46.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3c/1f4ae5ae908ee25563b93511d05bcf/tih_rna_sample_00254_23H5VFLT4_s05.pos.DupRate.xls 1619/tih_rna_sample_00254_23H5VFLT4_s05.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/b8385ed15ea2e3ca58eebf78703e07/tih_rna_sample_00235_23H5VFLT4_s07.bam_stat.txt 1469/tih_rna_sample_00235_23H5VFLT4_s07.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/80/fd794a1dc0802c6c02c595520ff330/tih_rna_sample_00410_23H5VFLT4_s34_seqtool_mqc.tsv 1947/tih_rna_sample_00410_23H5VFLT4_s34_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/67c5dfdd53f32c85bf84962e45b602/tih_rna_sample_00118_23H5VFLT4_s38_combined_fusions_arriba_visualisation.pdf 2338/tih_rna_sample_00118_23H5VFLT4_s38_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/e841a9777d9e0df5089896e19eef98/V4_0001_RNA_0005_23H5VFLT4_s20.junction_annotation.log 1380/V4_0001_RNA_0005_23H5VFLT4_s20.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/c3153999206ca25bea600e4c059ce0/V4_0001_RNA_0005_23H5VFLT4_s09.fastp.json 70/V4_0001_RNA_0005_23H5VFLT4_s09.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/03904afd0cc3b78cfd8a9bea5ffa86/tih_rna_sample_00090_23H5VFLT4_s32_seqtool_mqc.tsv 1975/tih_rna_sample_00090_23H5VFLT4_s32_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/b62cea95ab6ac35dec43765fe1bac6/tih_rna_sample_00248_23H5VFLT4_s01.read_distribution.txt 1800/tih_rna_sample_00248_23H5VFLT4_s01.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/faff63db5bb2d36a7040351da9f4e3/tih_rna_sample_00090_23H5VFLT4_s32.attempt1.command.log 2077/tih_rna_sample_00090_23H5VFLT4_s32.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/fdf341ea3a1c8583b1b03e048ac86f/V4_0001_RNA_0005_23H5VFLT4_s30.fastp.json 29/V4_0001_RNA_0005_23H5VFLT4_s30.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1a/a1906303d7d8c6664a2525aba1fa73/V4_0001_RNA_0005_23H5VFLT4_s28_combined_fusions_arriba_visualisation.pdf 2315/V4_0001_RNA_0005_23H5VFLT4_s28_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/a52318f8d47bf50a0c9f4ab569fc72/V4_0001_RNA_0005_23H5VFLT4_s45_rseqc_extra_mqc.tsv 1708/V4_0001_RNA_0005_23H5VFLT4_s45_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/e43671fbf5dff772e9ed7f5fd69fd3/V4_0001_RNA_0005_23H5VFLT4_s27.log 466/V4_0001_RNA_0005_23H5VFLT4_s27.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/8d2f326dcef5266a4c3c9a8b2b44a3/tih_rna_sample_00420_23H5VFLT4_s45_trimmed_1_fastqc.zip 211/tih_rna_sample_00420_23H5VFLT4_s45_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/08b708cd4f6f65a89d64e888660481/V4_0001_RNA_0005_23H5VFLT4_s26.Log.final.out 663/V4_0001_RNA_0005_23H5VFLT4_s26.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/f619406f93ead515e4d7d6e79670a1/V4_0001_RNA_0005_23H5VFLT4_s05.inner_distance_freq.txt 826/V4_0001_RNA_0005_23H5VFLT4_s05.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/7a3538bb4d21412ac9a231efb82622/tih_rna_sample_00122_23H5VFLT4_s42_1_fastqc.zip 973/tih_rna_sample_00122_23H5VFLT4_s42_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/1f8a7bc3fc96e39f49caa14fe317cb/V4_0001_RNA_0005_23H5VFLT4_s05.lc_extrap.txt 2200/V4_0001_RNA_0005_23H5VFLT4_s05.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/0e7626460edd3194e8a174b351e98d/tih_rna_sample_00122_23H5VFLT4_s42.fastp.html 107/tih_rna_sample_00122_23H5VFLT4_s42.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/8faab95debb2d5e8c4cff2bf8c4647/V4_0001_RNA_0005_23H5VFLT4_s28.lc_extrap.txt 2133/V4_0001_RNA_0005_23H5VFLT4_s28.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/697336f2149322117fee10fb53d950/V4_0001_RNA_0005_23H5VFLT4_s45.lc_extrap.txt 2141/V4_0001_RNA_0005_23H5VFLT4_s45.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/6f2df59a86526bb4010cd668be1efc/NTC_0001_0001_23H5VFLT4_s15.inner_distance_freq.txt 771/NTC_0001_0001_23H5VFLT4_s15.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/bdf91a2fc1f4edd2a1e186e272afea/V4_0001_RNA_0005_23H5VFLT4_s15.junctionSaturation_plot.r 1190/V4_0001_RNA_0005_23H5VFLT4_s15.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/e0365a19dd68f3bde2ce1d4ed252e9/tih_rna_sample_00378_23H5VFLT4_s24_combined_fusions_arriba_visualisation.pdf 2309/tih_rna_sample_00378_23H5VFLT4_s24_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/cc540a66e61029e313758f39734ebc/tih_rna_sample_00400_23H5VFLT4_s27_preseq_mqc.tsv 2255/tih_rna_sample_00400_23H5VFLT4_s27_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3e/b58d475e8c4e42c8c8d092632c6247/V4_0001_RNA_0005_23H5VFLT4_s45.junctionSaturation_plot.r 1205/V4_0001_RNA_0005_23H5VFLT4_s45.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/e5d2f21732730e271a04344a9fc2ea/tih_rna_sample_00410_23H5VFLT4_s34.log 405/tih_rna_sample_00410_23H5VFLT4_s34.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/e5db79936578bf675174ecb863f02b/tih_rna_sample_00121_23H5VFLT4_s41_combined_fusions_arriba_visualisation.pdf 2397/tih_rna_sample_00121_23H5VFLT4_s41_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/1a552647d6d76ebc11191cd2e31327/tih_rna_sample_00118_23H5VFLT4_s38.inner_distance_freq.txt 813/tih_rna_sample_00118_23H5VFLT4_s38.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ba/413663d93f325653483ecedd7133a4/tih_rna_sample_00394_23H5VFLT4_s25.log 393/tih_rna_sample_00394_23H5VFLT4_s25.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/05/0946e0f3d12a289a1e79fd96d93b17/tih_rna_sample_00122_23H5VFLT4_s42.junction_annotation.log 1352/tih_rna_sample_00122_23H5VFLT4_s42.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/2e77c48ed61f73650b185e74ef87e7/V4_0001_RNA_0005_23H5VFLT4_s20.md.bam.metrics 1916/V4_0001_RNA_0005_23H5VFLT4_s20.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/441ad62f8969a23505fa9bb5d687d2/tih_rna_sample_00097_23H5VFLT4_s12_seqtool_mqc.tsv 2005/tih_rna_sample_00097_23H5VFLT4_s12_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/b58ce370eb6fdc8a0b186cd9fd720f/V4_0001_RNA_0005_23H5VFLT4_s07_rseqc_extra_mqc.tsv 1666/V4_0001_RNA_0005_23H5VFLT4_s07_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e5773ad33c682f3eed02bbfcf1bc5c/V4_0001_RNA_0005_23H5VFLT4_s36.attempt2.command.log 2113/V4_0001_RNA_0005_23H5VFLT4_s36.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/23/ec873cd96eac7ed615f2b3fa2ccd78/V4_0001_RNA_0005_23H5VFLT4_s18_seqtool_mqc.tsv 2011/V4_0001_RNA_0005_23H5VFLT4_s18_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/48273b1c67b1ec160217955917ae56/tih_rna_sample_00280_23H5VFLT4_s18.bam_stat.txt 1538/tih_rna_sample_00280_23H5VFLT4_s18.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/810927d9779c25ccbfc9adf31fc005/V4_0001_RNA_0005_23H5VFLT4_s09_preseq_mqc.tsv 2277/V4_0001_RNA_0005_23H5VFLT4_s09_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/97/4dd8ef3b71e644a9e018a4e4a74d5d/tih_rna_sample_00422_23H5VFLT4_s47_contamination_mqc.tsv 1252/tih_rna_sample_00422_23H5VFLT4_s47_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/aabd2bb31771b014df41a63b900ec8/tih_rna_sample_00235_23H5VFLT4_s07.fastp.json 51/tih_rna_sample_00235_23H5VFLT4_s07.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a1/a5fb7f456896d4d426437ff0b943fb/tih_rna_sample_00115_23H5VFLT4_s35.bam_stat.txt 1458/tih_rna_sample_00115_23H5VFLT4_s35.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/97a7af53fb4f3a47db4bfd48e01106/V4_0001_RNA_0005_23H5VFLT4_s11.inner_distance_freq.txt 827/V4_0001_RNA_0005_23H5VFLT4_s11.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f2/de773c3bd08d50536e135e08aec494/V4_0001_RNA_0005_23H5VFLT4_s15.junction_annotation.log 1366/V4_0001_RNA_0005_23H5VFLT4_s15.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/bcb7e928c7a6add156be1788d4ecd1/tih_rna_sample_00402_23H5VFLT4_s28.fastp.html 136/tih_rna_sample_00402_23H5VFLT4_s28.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/cd06ac4a5abf5791421d28844d104a/tih_rna_sample_00422_23H5VFLT4_s47_preseq_mqc.tsv 2213/tih_rna_sample_00422_23H5VFLT4_s47_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/c0d077a6333f2014e7786bcbd15fcd/tih_rna_sample_00254_23H5VFLT4_s05.junction_annotation.log 1433/tih_rna_sample_00254_23H5VFLT4_s05.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/b5972e48bf872792ba6d3a7916438a/tih_rna_sample_00274_23H5VFLT4_s14_1_fastqc.zip 981/tih_rna_sample_00274_23H5VFLT4_s14_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/58/5dc0f75908f060bc7ee26434a856e9/V4_0001_RNA_0005_23H5VFLT4_s12.junction_annotation.log 1441/V4_0001_RNA_0005_23H5VFLT4_s12.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/f6920ceb5f2c3045204632cacc16c0/V4_0001_RNA_0005_23H5VFLT4_s45_trimmed_1_fastqc.zip 367/V4_0001_RNA_0005_23H5VFLT4_s45_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/37c47241f4752fde0a8e633a91c579/tih_rna_sample_00121_23H5VFLT4_s41_preseq_mqc.tsv 2282/tih_rna_sample_00121_23H5VFLT4_s41_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6f/aa0c8d1841b705a35fe81e69a3fd18/tih_rna_sample_00420_23H5VFLT4_s45_combined_fusions_arriba_visualisation.pdf 2310/tih_rna_sample_00420_23H5VFLT4_s45_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/7c558ccf1ae728b9f248d85d27e37b/V4_0001_RNA_0005_23H5VFLT4_s38.md.bam.metrics 1849/V4_0001_RNA_0005_23H5VFLT4_s38.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/5d96746e1c3fd973954ac88caa84c4/tih_rna_sample_00218_23H5VFLT4_s10.bam_stat.txt 1512/tih_rna_sample_00218_23H5VFLT4_s10.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/41/3d471bd0091e3627f36f8d1a75a687/V4_0001_RNA_0005_23H5VFLT4_s18_rseqc_extra_mqc.tsv 1669/V4_0001_RNA_0005_23H5VFLT4_s18_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/fe75ed5ea6b8ee018badb289db9c08/V4_0001_RNA_0005_23H5VFLT4_s47.log 476/V4_0001_RNA_0005_23H5VFLT4_s47.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/7cd2061c1c16e215b06cb192370845/tih_rna_sample_00115_23H5VFLT4_s35.Log.final.out 593/tih_rna_sample_00115_23H5VFLT4_s35.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/bef2567118ed9a01444a9fc745cf1d/V4_0001_RNA_0005_23H5VFLT4_s18_kallisto_mqc.tsv 523/V4_0001_RNA_0005_23H5VFLT4_s18_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/4cb30df4602a46b60ef0b062b8c0e0/tih_rna_sample_00116_23H5VFLT4_s36.infer_experiment.txt 920/tih_rna_sample_00116_23H5VFLT4_s36.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/7a5fd047114d33fbaa4be66d00eee1/V4_0001_RNA_0005_23H5VFLT4_s29.Log.final.out 604/V4_0001_RNA_0005_23H5VFLT4_s29.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/f8df3fd8be85d652f52eb0a049ce6d/GM24385_0001_RNA_0001_23H5VFLT4_s40.ReadsPerGene.out.tab 690/GM24385_0001_RNA_0001_23H5VFLT4_s40.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/1d31d66905f15bca061781224993a0/V4_0001_RNA_0005_23H5VFLT4_s44_rseqc_extra_mqc.tsv 1674/V4_0001_RNA_0005_23H5VFLT4_s44_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/b85037c32c25baead1b48f400c27ac/tih_rna_sample_00396_23H5VFLT4_s26.ReadsPerGene.out.tab 762/tih_rna_sample_00396_23H5VFLT4_s26.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/b98cd8de4ac3f85aec750fa101caff/GM24385_0001_RNA_0001_23H5VFLT4_s40_kallisto_mqc.tsv 508/GM24385_0001_RNA_0001_23H5VFLT4_s40_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/c5ba28e55f1e1308b21fb7e02ae284/V4_0001_RNA_0005_23H5VFLT4_s04_kallisto_mqc.tsv 575/V4_0001_RNA_0005_23H5VFLT4_s04_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/3238479c7c64f255e974440aac3503/tih_rna_sample_00414_23H5VFLT4_s40.ReadsPerGene.out.tab 722/tih_rna_sample_00414_23H5VFLT4_s40.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/a5c9cbcedec43e05327e037d4b04cf/tih_rna_sample_00396_23H5VFLT4_s26.bam_stat.txt 1532/tih_rna_sample_00396_23H5VFLT4_s26.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/8ea250d7191e1a7e6175f5e72d22b7/tih_rna_sample_00414_23H5VFLT4_s40.read_distribution.txt 1813/tih_rna_sample_00414_23H5VFLT4_s40.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/e13c2951e8748aa49c8088b4ff804b/V4_0001_RNA_0005_23H5VFLT4_s19.ReadsPerGene.out.tab 721/V4_0001_RNA_0005_23H5VFLT4_s19.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/34079b33231d7fd5604b2bacd85b73/NTC_0001_0001_23H5VFLT4_s15.fastp.json 3/NTC_0001_0001_23H5VFLT4_s15.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/df1e91ceaa71929f50d35e1b704823/tih_rna_sample_00422_23H5VFLT4_s47.attempt1.command.log 2021/tih_rna_sample_00422_23H5VFLT4_s47.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c3/0eba5cb63249bac721f46bffbc55b2/tih_rna_sample_00402_23H5VFLT4_s28.md.bam.metrics 1872/tih_rna_sample_00402_23H5VFLT4_s28.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/084e1212dea19b585ff4f3e3b5ff3c/tih_rna_sample_00218_23H5VFLT4_s10.Log.final.out 616/tih_rna_sample_00218_23H5VFLT4_s10.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/95e8e7869a932af46eeceea0324c8b/V4_0001_RNA_0005_23H5VFLT4_s14_contamination_mqc.tsv 1276/V4_0001_RNA_0005_23H5VFLT4_s14_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/1438b13b51d82261fd7c3158a05717/V4_0001_RNA_0005_23H5VFLT4_s42_trimmed_2_fastqc.zip 336/V4_0001_RNA_0005_23H5VFLT4_s42_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/02308e62dcfc9fbc0d6d9d9ba410a2/V4_0001_RNA_0005_23H5VFLT4_s11.junctionSaturation_plot.r 1196/V4_0001_RNA_0005_23H5VFLT4_s11.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-platform-sandbox/pipeline-outputs/cgp_runs/nextflow/dev_rna_exp0001_exp0003/B23H5VFLT4/nfcore_rnafusion__73d51683--20260607-225254/pipeline_info/nf_core_pipeline_software_mqc_versions.yml 2401/nf_core_pipeline_software_mqc_versions.yml")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/67ddf006fc04bc8d2023b2e20910c5/GM24385_0001_RNA_0001_23H5VFLT4_s16_combined_fusions_arriba_visualisation.pdf 2332/GM24385_0001_RNA_0001_23H5VFLT4_s16_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/9d83ec513ae19da8f8dfe36ba5274b/GM24385_0001_RNA_0001_23H5VFLT4_s48.ReadsPerGene.out.tab 686/GM24385_0001_RNA_0001_23H5VFLT4_s48.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/cfdc081d7142df60aaef117904dc6f/V4_0001_RNA_0005_23H5VFLT4_s47.fastp.html 186/V4_0001_RNA_0005_23H5VFLT4_s47.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/9a0177217391c0e9c9cc940445a62e/tih_rna_sample_00261_23H5VFLT4_s06.md.bam.metrics 1879/tih_rna_sample_00261_23H5VFLT4_s06.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/849a109c4af5885997d1f78eaf1332/V4_0001_RNA_0005_23H5VFLT4_s20_combined_fusions_arriba_visualisation.pdf 2374/V4_0001_RNA_0005_23H5VFLT4_s20_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/ac630188a12d9c93c64a985251b4ee/V4_0001_RNA_0005_23H5VFLT4_s34.bam_stat.txt 1523/V4_0001_RNA_0005_23H5VFLT4_s34.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/4229d332a45e70b9474aec44c47787/V4_0001_RNA_0005_23H5VFLT4_s01_trimmed_2_fastqc.zip 376/V4_0001_RNA_0005_23H5VFLT4_s01_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/a280691cb9ffa3e44b0b81f7a623e5/tih_rna_sample_00410_23H5VFLT4_s34_combined_fusions_arriba_visualisation.pdf 2329/tih_rna_sample_00410_23H5VFLT4_s34_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/aae5b2ea61173e215c368c61d0f993/GM24385_0001_RNA_0001_23H5VFLT4_s48_1_fastqc.zip 987/GM24385_0001_RNA_0001_23H5VFLT4_s48_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/7280f925107b63befc9342eb61da57/tih_rna_sample_00425_23H5VFLT4_s46.junctionSaturation_plot.r 1184/tih_rna_sample_00425_23H5VFLT4_s46.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/ec763e3c369c1e4ae878226fef3039/tih_rna_sample_00252_23H5VFLT4_s04.infer_experiment.txt 930/tih_rna_sample_00252_23H5VFLT4_s04.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/4b70455b4727c75906ee6cfb9839b8/V4_0001_RNA_0005_23H5VFLT4_s10.attempt1.command.log 2100/V4_0001_RNA_0005_23H5VFLT4_s10.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/286cc0a532534cf35dcdb24e2a133c/V4_0001_RNA_0005_23H5VFLT4_s26_1_fastqc.zip 1137/V4_0001_RNA_0005_23H5VFLT4_s26_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4d/e50ad278d415966427f3b88ce676e1/tih_rna_sample_00394_23H5VFLT4_s25_contamination_mqc.tsv 1257/tih_rna_sample_00394_23H5VFLT4_s25_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/915b3dcaa925ac01dc39b26aaa4270/tih_rna_sample_00111_23H5VFLT4_s30.lc_extrap.txt 2120/tih_rna_sample_00111_23H5VFLT4_s30.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/cd4812b6450420e95071e7188e4c35/V4_0001_RNA_0005_23H5VFLT4_s09.bam_stat.txt 1515/V4_0001_RNA_0005_23H5VFLT4_s09.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/5e585e7eebad5a611544652ba4fdd3/V4_0001_RNA_0005_23H5VFLT4_s17.inner_distance_freq.txt 816/V4_0001_RNA_0005_23H5VFLT4_s17.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/7a6f169788ce077e93fdb4a7445462/tih_rna_sample_00111_23H5VFLT4_s30.junctionSaturation_plot.r 1159/tih_rna_sample_00111_23H5VFLT4_s30.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/b6b19ebb41bde64be9d8d3ee49e4c6/tih_rna_sample_00426_23H5VFLT4_s48.lc_extrap.txt 2170/tih_rna_sample_00426_23H5VFLT4_s48.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/830ad6f888e9a0275ef29ced5154a9/V4_0001_RNA_0005_23H5VFLT4_s27.bam_stat.txt 1528/V4_0001_RNA_0005_23H5VFLT4_s27.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/8a69b9ffc663c133816907297256f4/tih_rna_sample_00096_23H5VFLT4_s11_trimmed_1_fastqc.zip 355/tih_rna_sample_00096_23H5VFLT4_s11_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/b0049cfdafa47d3510934bb54e3af8/tih_rna_sample_00088_23H5VFLT4_s02.junction_annotation.log 1424/tih_rna_sample_00088_23H5VFLT4_s02.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/56ee3a06bbf972f7b8b0ee2f40cb88/V4_0001_RNA_0005_23H5VFLT4_s25_kallisto_mqc.tsv 539/V4_0001_RNA_0005_23H5VFLT4_s25_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3c/c759f8f36344219a24effdc639b958/V4_0001_RNA_0005_23H5VFLT4_s43.junctionSaturation_plot.r 1191/V4_0001_RNA_0005_23H5VFLT4_s43.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/b17b72f97bdc1923500e3daccc363e/V4_0001_RNA_0005_23H5VFLT4_s18.fastp.html 121/V4_0001_RNA_0005_23H5VFLT4_s18.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/239b06cc2fc690004493d45b894639/tih_rna_sample_00396_23H5VFLT4_s26.lc_extrap.txt 2162/tih_rna_sample_00396_23H5VFLT4_s26.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/288b67c023094333ee15dc9e474973/V4_0001_RNA_0005_23H5VFLT4_s38.bam_stat.txt 1461/V4_0001_RNA_0005_23H5VFLT4_s38.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/1f585f41102dbb4d34c8542daf668d/tih_rna_sample_00422_23H5VFLT4_s47_1_fastqc.zip 967/tih_rna_sample_00422_23H5VFLT4_s47_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3b/46d29d2a96cdbd1078f83d8f811b60/tih_rna_sample_00122_23H5VFLT4_s42.read_distribution.txt 1736/tih_rna_sample_00122_23H5VFLT4_s42.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/1d4b7a74c0bf92cf786cf5628e42ca/V4_0001_RNA_0005_23H5VFLT4_s30_preseq_mqc.tsv 2242/V4_0001_RNA_0005_23H5VFLT4_s30_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/438350ea9655e318412c098d495d49/HD789_0002_RNA_0008_23H5VFLT4_s19.ReadsPerGene.out.tab 756/HD789_0002_RNA_0008_23H5VFLT4_s19.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/5f4e5aec170918a303ded84e410bf2/tih_rna_sample_00400_23H5VFLT4_s27_rseqc_extra_mqc.tsv 1686/tih_rna_sample_00400_23H5VFLT4_s27_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/5d95959d2db3fa75403274a89e59eb/tih_rna_sample_00218_23H5VFLT4_s10.junction_annotation.log 1387/tih_rna_sample_00218_23H5VFLT4_s10.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/9da16850594e35bfd65bdc5570166b/tih_rna_sample_00274_23H5VFLT4_s14.Log.final.out 585/tih_rna_sample_00274_23H5VFLT4_s14.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3e/2e0387a7b7b6cf0f98b516b6c79f7f/V4_0001_RNA_0005_23H5VFLT4_s05.junctionSaturation_plot.r 1209/V4_0001_RNA_0005_23H5VFLT4_s05.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f1/b105ad4caa0de40768539d843d708a/tih_rna_sample_00163_23H5VFLT4_s43_preseq_mqc.tsv 2259/tih_rna_sample_00163_23H5VFLT4_s43_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/c279b5daf8e882f5fdcbe2c1dc9504/V4_0001_RNA_0005_23H5VFLT4_s20_2_fastqc.zip 1026/V4_0001_RNA_0005_23H5VFLT4_s20_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c3/b697aed793c17a60566f1d2bbab681/tih_rna_sample_00414_23H5VFLT4_s40.md.bam.metrics 1914/tih_rna_sample_00414_23H5VFLT4_s40.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/ddf8333a4825fa8845b6898a1cad37/tih_rna_sample_00124_23H5VFLT4_s31_preseq_mqc.tsv 2261/tih_rna_sample_00124_23H5VFLT4_s31_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/33f9f0996653cee51848f5503889e4/GM24385_0001_RNA_0001_23H5VFLT4_s08.pos.DupRate.xls 1625/GM24385_0001_RNA_0001_23H5VFLT4_s08.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/56ea2dc7009f80c1b5df7e2432bf2a/tih_rna_sample_00388_23H5VFLT4_s22_contamination_mqc.tsv 1344/tih_rna_sample_00388_23H5VFLT4_s22_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/631f69e456bacd8407726af3c3e4c7/tih_rna_sample_00272_23H5VFLT4_s09_seqtool_mqc.tsv 2000/tih_rna_sample_00272_23H5VFLT4_s09_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/27395ad546df842070ae90ea24f629/tih_rna_sample_00117_23H5VFLT4_s37.infer_experiment.txt 879/tih_rna_sample_00117_23H5VFLT4_s37.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/e9d5efd985505bcbaa9bbc1825dc75/tih_rna_sample_00088_23H5VFLT4_s02.md.bam.metrics 1900/tih_rna_sample_00088_23H5VFLT4_s02.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/151b6f05bb1425eccca8370e40b0de/V4_0001_RNA_0005_23H5VFLT4_s31_2_fastqc.zip 1072/V4_0001_RNA_0005_23H5VFLT4_s31_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/c13f7f57938453c9794effffe87eae/V4_0001_RNA_0005_23H5VFLT4_s31_seqtool_mqc.tsv 1974/V4_0001_RNA_0005_23H5VFLT4_s31_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/83970506e6e5e3081f00b751175a98/V4_0001_RNA_0005_23H5VFLT4_s47.infer_experiment.txt 944/V4_0001_RNA_0005_23H5VFLT4_s47.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/136dda2421247b154c6032704a6d24/tih_rna_sample_00403_23H5VFLT4_s29_2_fastqc.zip 1030/tih_rna_sample_00403_23H5VFLT4_s29_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/82330ff5622ee2f9562b85a0223b43/tih_rna_sample_00111_23H5VFLT4_s30.inner_distance_freq.txt 776/tih_rna_sample_00111_23H5VFLT4_s30.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/cd1faa07105754651b50e602ce498e/tih_rna_sample_00422_23H5VFLT4_s47.infer_experiment.txt 868/tih_rna_sample_00422_23H5VFLT4_s47.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/b5caeb12171c8de24c42ea8170c05e/V4_0001_RNA_0005_23H5VFLT4_s36_1_fastqc.zip 1047/V4_0001_RNA_0005_23H5VFLT4_s36_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/52ab6f3b283a446533a81334ac904e/V4_0001_RNA_0005_23H5VFLT4_s09.Log.final.out 639/V4_0001_RNA_0005_23H5VFLT4_s09.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/739aa29dc59089920afeb67b2fb15b/tih_rna_sample_00122_23H5VFLT4_s42_kallisto_mqc.tsv 494/tih_rna_sample_00122_23H5VFLT4_s42_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/3de379884c9bba459a0d7f2bb3fd52/tih_rna_sample_00420_23H5VFLT4_s45.inner_distance_freq.txt 779/tih_rna_sample_00420_23H5VFLT4_s45.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/9e866f1f5b854bfa1dd54cc1f13790/V4_0001_RNA_0005_23H5VFLT4_s19_kallisto_mqc.tsv 541/V4_0001_RNA_0005_23H5VFLT4_s19_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/acb1f0be6bb5c291a868481b50963a/V4_0001_RNA_0005_23H5VFLT4_s04.ReadsPerGene.out.tab 725/V4_0001_RNA_0005_23H5VFLT4_s04.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/5128782fc57c40ed462b13e1d7eccc/NTC_0001_0001_23H5VFLT4_s15.junctionSaturation_plot.r 1155/NTC_0001_0001_23H5VFLT4_s15.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/61ce96251e53827ce3ca908fe8e4d2/tih_rna_sample_00252_23H5VFLT4_s04.junctionSaturation_plot.r 1214/tih_rna_sample_00252_23H5VFLT4_s04.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3c/dd4eb6bf4eb0b094fa3e988e21eb55/GM24385_0001_RNA_0001_23H5VFLT4_s08_rseqc_extra_mqc.tsv 1676/GM24385_0001_RNA_0001_23H5VFLT4_s08_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/a09c4f35918a935567cdb54808c6e3/tih_rna_sample_00124_23H5VFLT4_s31.fastp.html 132/tih_rna_sample_00124_23H5VFLT4_s31.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/7ca62cb8ac07b3b7fbd55c60e33641/V4_0001_RNA_0005_23H5VFLT4_s15.inner_distance_freq.txt 797/V4_0001_RNA_0005_23H5VFLT4_s15.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/d288e235ee3c342d38007885102210/tih_rna_sample_00122_23H5VFLT4_s42.md.bam.metrics 1837/tih_rna_sample_00122_23H5VFLT4_s42.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/4765606e13fdb2b3a441d03436b606/tih_rna_sample_00163_23H5VFLT4_s43_contamination_mqc.tsv 1332/tih_rna_sample_00163_23H5VFLT4_s43_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/62715fb5c54b72d09214cae1ffcceb/V4_0001_RNA_0005_23H5VFLT4_s17.attempt1.command.log 2055/V4_0001_RNA_0005_23H5VFLT4_s17.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/0b2da31b75931080f61353328fbf20/V4_0001_RNA_0005_23H5VFLT4_s45.ReadsPerGene.out.tab 740/V4_0001_RNA_0005_23H5VFLT4_s45.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/f286a6bb38a326ee38e0550b0dd065/V4_0001_RNA_0005_23H5VFLT4_s09.inner_distance_freq.txt 830/V4_0001_RNA_0005_23H5VFLT4_s09.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/973a727d99069634fd25dd4413ea75/V4_0001_RNA_0005_23H5VFLT4_s19.bam_stat.txt 1505/V4_0001_RNA_0005_23H5VFLT4_s19.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/f294fad4b50da72d80a68c74f026a1/V4_0001_RNA_0005_23H5VFLT4_s45.pos.DupRate.xls 1581/V4_0001_RNA_0005_23H5VFLT4_s45.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5a/174b185e6eea6e81bfe906b589510f/tih_rna_sample_00118_23H5VFLT4_s38.fastp.html 130/tih_rna_sample_00118_23H5VFLT4_s38.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fe/7d006e2026db2b1c252e8687422a1d/V4_0001_RNA_0005_23H5VFLT4_s39_kallisto_mqc.tsv 500/V4_0001_RNA_0005_23H5VFLT4_s39_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/012915f08876ccebc5c9400781b7cd/V4_0001_RNA_0005_23H5VFLT4_s21.read_distribution.txt 1755/V4_0001_RNA_0005_23H5VFLT4_s21.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/e4c5e457c98b0455f3dd797aa39852/tih_rna_sample_00248_23H5VFLT4_s01_preseq_mqc.tsv 2248/tih_rna_sample_00248_23H5VFLT4_s01_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/fbfd70fc17acd9a1013cb747e0847f/tih_rna_sample_00105_23H5VFLT4_s21.bam_stat.txt 1445/tih_rna_sample_00105_23H5VFLT4_s21.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/4a6d3186ae69af035c57f7ada40a89/V4_0001_RNA_0005_23H5VFLT4_s14_combined_fusions_arriba_visualisation.pdf 2368/V4_0001_RNA_0005_23H5VFLT4_s14_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/ae7ef8604765681e606e142377e33e/tih_rna_sample_00403_23H5VFLT4_s29_trimmed_2_fastqc.zip 280/tih_rna_sample_00403_23H5VFLT4_s29_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/9cd65b0e2c3de899d96d63a4276981/tih_rna_sample_00127_23H5VFLT4_s08.fastp.json 12/tih_rna_sample_00127_23H5VFLT4_s08.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/58/9f4d5d86f7e64cd3ae039269e1e88e/tih_rna_sample_00419_23H5VFLT4_s44.md.bam.metrics 1880/tih_rna_sample_00419_23H5VFLT4_s44.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/26/da16a87b2037b4ffd52cba3a46455c/V4_0001_RNA_0005_23H5VFLT4_s37_trimmed_1_fastqc.zip 289/V4_0001_RNA_0005_23H5VFLT4_s37_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/cbc96d6dca32bfe1e1d3e2f94b719c/tih_rna_sample_00388_23H5VFLT4_s22_kallisto_mqc.tsv 520/tih_rna_sample_00388_23H5VFLT4_s22_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/92ef97b0c4a6ed4b24385e83228e44/GM24385_0001_RNA_0001_23H5VFLT4_s32.junctionSaturation_plot.r 1171/GM24385_0001_RNA_0001_23H5VFLT4_s32.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/093a2b024e6b4ac00577e061910d3f/tih_rna_sample_00400_23H5VFLT4_s27.fastp.html 135/tih_rna_sample_00400_23H5VFLT4_s27.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/c3153999206ca25bea600e4c059ce0/V4_0001_RNA_0005_23H5VFLT4_s09.fastp.html 166/V4_0001_RNA_0005_23H5VFLT4_s09.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/a10a9018173102acb0f878f0eccb53/tih_rna_sample_00220_23H5VFLT4_s16_rseqc_extra_mqc.tsv 1700/tih_rna_sample_00220_23H5VFLT4_s16_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/fb9b58bba9ef618c64805c7779f4a5/tih_rna_sample_00104_23H5VFLT4_s20.bam_stat.txt 1454/tih_rna_sample_00104_23H5VFLT4_s20.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/0f098f7ed853fad5fca13b4b2788db/V4_0001_RNA_0005_23H5VFLT4_s02.fastp.html 163/V4_0001_RNA_0005_23H5VFLT4_s02.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/15d48217d837a2115889847b7c3d2d/tih_rna_sample_00248_23H5VFLT4_s01_1_fastqc.zip 1027/tih_rna_sample_00248_23H5VFLT4_s01_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/26d1c5617515bf59e959f5941c786e/tih_rna_sample_00407_23H5VFLT4_s33.junction_annotation.log 1372/tih_rna_sample_00407_23H5VFLT4_s33.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/731f7e1a2108176e414d26a1c7c8d6/GM24385_0001_RNA_0001_23H5VFLT4_s48_rseqc_extra_mqc.tsv 1642/GM24385_0001_RNA_0001_23H5VFLT4_s48_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/9b46422aa89f42ef80bf47fc7096ce/V4_0001_RNA_0005_23H5VFLT4_s13.lc_extrap.txt 2166/V4_0001_RNA_0005_23H5VFLT4_s13.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e3/6de63e81f12fb2512b9d788cacf709/tih_rna_sample_00420_23H5VFLT4_s45.bam_stat.txt 1457/tih_rna_sample_00420_23H5VFLT4_s45.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/ad5498f8fbf318cb6f4eb5a6d8d48c/V4_0001_RNA_0001_23H5VFLT4_s13.bam_stat.txt 1500/V4_0001_RNA_0001_23H5VFLT4_s13.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/a27bd0abaae0cdca510b051bdbddab/V4_0001_RNA_0005_23H5VFLT4_s02_contamination_mqc.tsv 1287/V4_0001_RNA_0005_23H5VFLT4_s02_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/6e1000b51fa5ecb1d7b6d9a4e4f638/V4_0001_RNA_0005_23H5VFLT4_s22.pos.DupRate.xls 1560/V4_0001_RNA_0005_23H5VFLT4_s22.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bc/a6f5118d8a373635ab4cd25a8e2a6b/tih_rna_sample_00124_23H5VFLT4_s31.junctionSaturation_plot.r 1246/tih_rna_sample_00124_23H5VFLT4_s31.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/4fd257d93cb9388a07f5cba61f8932/GM24385_0001_RNA_0001_23H5VFLT4_s24_kallisto_mqc.tsv 499/GM24385_0001_RNA_0001_23H5VFLT4_s24_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/03291a76a8b89aa5ae357e15be243e/V4_0001_RNA_0005_23H5VFLT4_s06.junctionSaturation_plot.r 1233/V4_0001_RNA_0005_23H5VFLT4_s06.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7f/c932fea05d667ccf19b505c434e24c/V4_0001_RNA_0005_23H5VFLT4_s11_kallisto_mqc.tsv 569/V4_0001_RNA_0005_23H5VFLT4_s11_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/eb40f8409cc1be331d3b8086646927/tih_rna_sample_00118_23H5VFLT4_s38_preseq_mqc.tsv 2238/tih_rna_sample_00118_23H5VFLT4_s38_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/7a5fd047114d33fbaa4be66d00eee1/V4_0001_RNA_0005_23H5VFLT4_s29.ReadsPerGene.out.tab 700/V4_0001_RNA_0005_23H5VFLT4_s29.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/86a7f1e720281ca5a5ac5539fe7785/V4_0001_RNA_0005_23H5VFLT4_s39.inner_distance_freq.txt 791/V4_0001_RNA_0005_23H5VFLT4_s39.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/17bff391e9982b04a64735e1eaa848/tih_rna_sample_00127_23H5VFLT4_s08_1_fastqc.zip 997/tih_rna_sample_00127_23H5VFLT4_s08_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/01df42041f7436e51afb1854b265a1/tih_rna_sample_00121_23H5VFLT4_s41.pos.DupRate.xls 1595/tih_rna_sample_00121_23H5VFLT4_s41.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/9f590a64d4708b28e5e0849829de1e/tih_rna_sample_00394_23H5VFLT4_s25_seqtool_mqc.tsv 1931/tih_rna_sample_00394_23H5VFLT4_s25_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/e277fc0fe8da46be9ea548fc404243/V4_0001_RNA_0005_23H5VFLT4_s35.attempt1.command.log 2033/V4_0001_RNA_0005_23H5VFLT4_s35.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/b31ee2d526fcdee02b4488610d06bb/tih_rna_sample_00218_23H5VFLT4_s10_preseq_mqc.tsv 2304/tih_rna_sample_00218_23H5VFLT4_s10_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/13b3af95d382bf55959ebd948a97b5/tih_rna_sample_00163_23H5VFLT4_s43.bam_stat.txt 1535/tih_rna_sample_00163_23H5VFLT4_s43.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/ab0904ec9a17714df28d18cc5e84c8/tih_rna_sample_00235_23H5VFLT4_s07.Log.final.out 610/tih_rna_sample_00235_23H5VFLT4_s07.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/e39c8a4221c708e2522d1c9a35fdb2/V4_0001_RNA_0005_23H5VFLT4_s25_seqtool_mqc.tsv 1973/V4_0001_RNA_0005_23H5VFLT4_s25_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/fa66c6c6fe96419d6cf19f2e27638e/V4_0001_RNA_0005_23H5VFLT4_s28_trimmed_1_fastqc.zip 223/V4_0001_RNA_0005_23H5VFLT4_s28_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/a044da86b8462c8f263dd7ebabefe8/tih_rna_sample_00378_23H5VFLT4_s24.fastp.html 102/tih_rna_sample_00378_23H5VFLT4_s24.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/7b09ba26556a66f6f7c9aaf9071ce2/tih_rna_sample_00218_23H5VFLT4_s10.pos.DupRate.xls 1575/tih_rna_sample_00218_23H5VFLT4_s10.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/87a50e216fb523c1c9dd2139f2ec7a/V4_0001_RNA_0005_23H5VFLT4_s39.infer_experiment.txt 887/V4_0001_RNA_0005_23H5VFLT4_s39.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/8a69b9ffc663c133816907297256f4/tih_rna_sample_00096_23H5VFLT4_s11_trimmed_2_fastqc.zip 356/tih_rna_sample_00096_23H5VFLT4_s11_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/e46f47ef7ea4946a4b4a02179c8159/tih_rna_sample_00254_23H5VFLT4_s05_kallisto_mqc.tsv 567/tih_rna_sample_00254_23H5VFLT4_s05_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/e4b5d41d6475274cf33eb07869d9b4/tih_rna_sample_00280_23H5VFLT4_s18.junction_annotation.log 1442/tih_rna_sample_00280_23H5VFLT4_s18.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f1/1159ff7f4d8562b78c311aa5cf6009/tih_rna_sample_00163_23H5VFLT4_s43.inner_distance_freq.txt 864/tih_rna_sample_00163_23H5VFLT4_s43.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/16f31a75d625ee848639eeaeea6cc9/V4_0001_RNA_0005_23H5VFLT4_s14.md.bam.metrics 1908/V4_0001_RNA_0005_23H5VFLT4_s14.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/a12824573343c61f0213970a21bf14/tih_rna_sample_00251_23H5VFLT4_s03.lc_extrap.txt 2177/tih_rna_sample_00251_23H5VFLT4_s03.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/00e8c220e0747a3d3c046e7b48eea3/V4_0001_RNA_0005_23H5VFLT4_s34.fastp.html 183/V4_0001_RNA_0005_23H5VFLT4_s34.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/10/2b1613fd25c028ed511af70ba39c6e/GM24385_0001_RNA_0001_23H5VFLT4_s32.md.bam.metrics 1843/GM24385_0001_RNA_0001_23H5VFLT4_s32.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/b792f019e93e0621eb0be1d944f543/V4_0001_RNA_0005_23H5VFLT4_s41.md.bam.metrics 1856/V4_0001_RNA_0005_23H5VFLT4_s41.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/59397ec32da179b91a770645253dab/V4_0001_RNA_0005_23H5VFLT4_s27.lc_extrap.txt 2201/V4_0001_RNA_0005_23H5VFLT4_s27.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/c0de1840d59e3a9b0b5173f8aea316/tih_rna_sample_00163_23H5VFLT4_s43_rseqc_extra_mqc.tsv 1727/tih_rna_sample_00163_23H5VFLT4_s43_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/8c2ac4cf327e85ce808e93a8dfe285/V4_0001_RNA_0005_23H5VFLT4_s02.ReadsPerGene.out.tab 724/V4_0001_RNA_0005_23H5VFLT4_s02.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/accdfe6f02e4797a96bd7635269f2f/tih_rna_sample_00274_23H5VFLT4_s14.infer_experiment.txt 873/tih_rna_sample_00274_23H5VFLT4_s14.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e3/fd2d0aea4dd4f7d0777c6a356f049b/tih_rna_sample_00422_23H5VFLT4_s47.md.bam.metrics 1829/tih_rna_sample_00422_23H5VFLT4_s47.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/f2a470175ee7f95e231190520d3b58/V4_0001_RNA_0005_23H5VFLT4_s15.pos.DupRate.xls 1582/V4_0001_RNA_0005_23H5VFLT4_s15.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/6475015e0bd2f251b8b0a3e77df42a/tih_rna_sample_00118_23H5VFLT4_s38_trimmed_1_fastqc.zip 265/tih_rna_sample_00118_23H5VFLT4_s38_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/94099503513e84a13c51d24dc51ba7/tih_rna_sample_00378_23H5VFLT4_s24_rseqc_extra_mqc.tsv 1638/tih_rna_sample_00378_23H5VFLT4_s24_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/cadd2ee51330da10b59405d255c760/tih_rna_sample_00402_23H5VFLT4_s28.pos.DupRate.xls 1600/tih_rna_sample_00402_23H5VFLT4_s28.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/fe7472375f2c1986ab4c86ca564760/tih_rna_sample_00088_23H5VFLT4_s02_kallisto_mqc.tsv 522/tih_rna_sample_00088_23H5VFLT4_s02_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/67f169b4fdf03985607a819100d9bc/tih_rna_sample_00105_23H5VFLT4_s21_2_fastqc.zip 966/tih_rna_sample_00105_23H5VFLT4_s21_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/76/a93a2402b8bc98517dca0a79106027/tih_rna_sample_00254_23H5VFLT4_s05.infer_experiment.txt 948/tih_rna_sample_00254_23H5VFLT4_s05.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/ad1fe12378964732f9277819b1fd7e/tih_rna_sample_00090_23H5VFLT4_s32.md.bam.metrics 1884/tih_rna_sample_00090_23H5VFLT4_s32.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/3af9e94ee8ab04555e1912cb27912e/tih_rna_sample_00248_23H5VFLT4_s01.Log.final.out 649/tih_rna_sample_00248_23H5VFLT4_s01.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4d/107b92d6bd295cbb2dd471522f5e15/tih_rna_sample_00096_23H5VFLT4_s11_seqtool_mqc.tsv 1984/tih_rna_sample_00096_23H5VFLT4_s11_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/3af9e94ee8ab04555e1912cb27912e/tih_rna_sample_00248_23H5VFLT4_s01.ReadsPerGene.out.tab 745/tih_rna_sample_00248_23H5VFLT4_s01.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/4bc4698197159545123bf03d2aae17/V4_0001_RNA_0005_23H5VFLT4_s39_trimmed_1_fastqc.zip 227/V4_0001_RNA_0005_23H5VFLT4_s39_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/5fa1e145a26f2ab2389327d2249479/V4_0001_RNA_0005_23H5VFLT4_s41.Log.final.out 613/V4_0001_RNA_0005_23H5VFLT4_s41.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/a32abf32f2d1b0ea232ef2e7201a4c/V4_0001_RNA_0005_23H5VFLT4_s42_seqtool_mqc.tsv 2001/V4_0001_RNA_0005_23H5VFLT4_s42_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/69092e2ea4acd7b7ba2bf3f052ce24/V4_0001_RNA_0005_23H5VFLT4_s20.Log.final.out 619/V4_0001_RNA_0005_23H5VFLT4_s20.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/dcc2e6f3260718340392f1149bb000/V4_0001_RNA_0005_23H5VFLT4_s44_seqtool_mqc.tsv 1952/V4_0001_RNA_0005_23H5VFLT4_s44_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/9194acd52747f5f8576d067259c3fa/V4_0001_RNA_0005_23H5VFLT4_s25.Log.final.out 648/V4_0001_RNA_0005_23H5VFLT4_s25.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/c66278853bb5792bb91bfaed352d05/V4_0001_RNA_0005_23H5VFLT4_s14_kallisto_mqc.tsv 546/V4_0001_RNA_0005_23H5VFLT4_s14_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/fe917dd3b32aa43b013d999c2e859e/tih_rna_sample_00087_23H5VFLT4_s17.junction_annotation.log 1400/tih_rna_sample_00087_23H5VFLT4_s17.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a5/b50f7cb09da3c4b2dbf7b1b2459df9/GM24385_0001_RNA_0001_23H5VFLT4_s24_contamination_mqc.tsv 1310/GM24385_0001_RNA_0001_23H5VFLT4_s24_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/9e83a5b6ae38d3b0194e4b4432f58c/V4_0001_RNA_0005_23H5VFLT4_s25.fastp.json 82/V4_0001_RNA_0005_23H5VFLT4_s25.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/e4e64027356b4a3915332d294739e3/tih_rna_sample_00096_23H5VFLT4_s11.inner_distance_freq.txt 836/tih_rna_sample_00096_23H5VFLT4_s11.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/8a7fce9d8edefc78ecb289cb2c7187/V4_0001_RNA_0005_23H5VFLT4_s04.bam_stat.txt 1506/V4_0001_RNA_0005_23H5VFLT4_s04.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/2fbe02427eeac2315635d7d0293348/V4_0001_RNA_0005_23H5VFLT4_s41.junctionSaturation_plot.r 1187/V4_0001_RNA_0005_23H5VFLT4_s41.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/15bbc8fec35cb82c502bc92c5ae52e/tih_rna_sample_00419_23H5VFLT4_s44.junctionSaturation_plot.r 1213/tih_rna_sample_00419_23H5VFLT4_s44.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/750606bce4214b15931ad424aed2c1/V4_0001_RNA_0005_23H5VFLT4_s10.fastp.json 79/V4_0001_RNA_0005_23H5VFLT4_s10.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/0ee53f62003bce04f2aca8a9bb1cbb/V4_0001_RNA_0005_23H5VFLT4_s26_trimmed_2_fastqc.zip 274/V4_0001_RNA_0005_23H5VFLT4_s26_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/1b66c47ca930bb513ec25fa4f7489b/V4_0001_RNA_0005_23H5VFLT4_s33_seqtool_mqc.tsv 1968/V4_0001_RNA_0005_23H5VFLT4_s33_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/997dbc89c6febd9b6d32cdbb82e05c/V4_0001_RNA_0005_23H5VFLT4_s39_2_fastqc.zip 1006/V4_0001_RNA_0005_23H5VFLT4_s39_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/f61c0b291fdaf931cc9f2795b5a0ae/tih_rna_sample_00105_23H5VFLT4_s21_kallisto_mqc.tsv 484/tih_rna_sample_00105_23H5VFLT4_s21_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/31cff4628c9f955f26531006afb671/V4_0001_RNA_0005_23H5VFLT4_s07.infer_experiment.txt 889/V4_0001_RNA_0005_23H5VFLT4_s07.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/8e977b59a13bf1c968a320329a4aa4/V4_0001_RNA_0005_23H5VFLT4_s18.junction_annotation.log 1408/V4_0001_RNA_0005_23H5VFLT4_s18.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/32/3498bf043583906bebb48a25d8c5f5/V4_0001_RNA_0001_23H5VFLT4_s13_2_fastqc.zip 1124/V4_0001_RNA_0001_23H5VFLT4_s13_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/060a3ccc2d3a62f5e2b55542f750d2/V4_0001_RNA_0005_23H5VFLT4_s19_1_fastqc.zip 1097/V4_0001_RNA_0005_23H5VFLT4_s19_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/b3cad70110f47cada43ed87b6a1252/V4_0001_RNA_0005_23H5VFLT4_s10_trimmed_1_fastqc.zip 325/V4_0001_RNA_0005_23H5VFLT4_s10_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/41ac911bf1170838baf6ff33d5f975/tih_rna_sample_00097_23H5VFLT4_s12.fastp.html 169/tih_rna_sample_00097_23H5VFLT4_s12.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/86c62fad6264c454bd407ba8de4ba9/tih_rna_sample_00088_23H5VFLT4_s02_combined_fusions_arriba_visualisation.pdf 2389/tih_rna_sample_00088_23H5VFLT4_s02_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/839ab443e36a765987b3dd8d15e9af/V4_0001_RNA_0005_23H5VFLT4_s25_rseqc_extra_mqc.tsv 1701/V4_0001_RNA_0005_23H5VFLT4_s25_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/97/b9979e523926920e0d9a59ead8af29/V4_0001_RNA_0005_23H5VFLT4_s42_combined_fusions_arriba_visualisation.pdf 2372/V4_0001_RNA_0005_23H5VFLT4_s42_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/06/060a3ccc2d3a62f5e2b55542f750d2/V4_0001_RNA_0005_23H5VFLT4_s19_2_fastqc.zip 1098/V4_0001_RNA_0005_23H5VFLT4_s19_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/b7f0467d0057ea853eaa97b1e49a4b/V4_0001_RNA_0005_23H5VFLT4_s27_1_fastqc.zip 1051/V4_0001_RNA_0005_23H5VFLT4_s27_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/1a993540a0c5bc8413598c8a7a0d73/V4_0001_RNA_0005_23H5VFLT4_s06.lc_extrap.txt 2155/V4_0001_RNA_0005_23H5VFLT4_s06.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/36a3b08e7ea970edb6df856c02ce42/V4_0001_RNA_0005_23H5VFLT4_s23_combined_fusions_arriba_visualisation.pdf 2365/V4_0001_RNA_0005_23H5VFLT4_s23_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/dbd2bf000c3a3eb30f9ff1ee664870/tih_rna_sample_00122_23H5VFLT4_s42.ReadsPerGene.out.tab 679/tih_rna_sample_00122_23H5VFLT4_s42.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/36a199f18702f2ea8f710730c76718/V4_0001_RNA_0005_23H5VFLT4_s01.infer_experiment.txt 936/V4_0001_RNA_0005_23H5VFLT4_s01.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/59397ec32da179b91a770645253dab/V4_0001_RNA_0005_23H5VFLT4_s27.attempt1.command.log 2105/V4_0001_RNA_0005_23H5VFLT4_s27.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/b2edda1fb9b0d14eafd8fe7a990c95/V4_0001_RNA_0005_23H5VFLT4_s10.log 480/V4_0001_RNA_0005_23H5VFLT4_s10.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/57d595e9e22c073f4a2cce64e93bc3/V4_0001_RNA_0005_23H5VFLT4_s47.inner_distance_freq.txt 848/V4_0001_RNA_0005_23H5VFLT4_s47.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/4cce4cd445df1b91801aa3dd6de658/V4_0001_RNA_0005_23H5VFLT4_s18.inner_distance_freq.txt 812/V4_0001_RNA_0005_23H5VFLT4_s18.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/81/925f9f37ed200833c77f464c19695b/V4_0001_RNA_0005_23H5VFLT4_s34.junction_annotation.log 1395/V4_0001_RNA_0005_23H5VFLT4_s34.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/7b4aeba27b11beabc0bacb175923d1/V4_0001_RNA_0005_23H5VFLT4_s37.junctionSaturation_plot.r 1186/V4_0001_RNA_0005_23H5VFLT4_s37.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/f854827789787775b171bea558a4fa/V4_0001_RNA_0005_23H5VFLT4_s38_trimmed_2_fastqc.zip 272/V4_0001_RNA_0005_23H5VFLT4_s38_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/d3f9cedc080a818e8ef641ccb7bf86/V4_0001_RNA_0005_23H5VFLT4_s01_1_fastqc.zip 1127/V4_0001_RNA_0005_23H5VFLT4_s01_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/dd4726765831ddd128c4944e9b9be7/tih_rna_sample_00105_23H5VFLT4_s21.attempt1.command.log 2020/tih_rna_sample_00105_23H5VFLT4_s21.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b8/a9593f38c2ce25f75c815e924dc249/V4_0001_RNA_0005_23H5VFLT4_s02.junctionSaturation_plot.r 1212/V4_0001_RNA_0005_23H5VFLT4_s02.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/a09665936a976417f1be796dc2ae44/V4_0001_RNA_0005_23H5VFLT4_s39_seqtool_mqc.tsv 1940/V4_0001_RNA_0005_23H5VFLT4_s39_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/8a644cf665c797c1229a4e18cbeda4/tih_rna_sample_00118_23H5VFLT4_s38.attempt1.command.log 2046/tih_rna_sample_00118_23H5VFLT4_s38.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/b6757ce518440c9bbe3c4283c90303/tih_rna_sample_00261_23H5VFLT4_s06.fastp.html 157/tih_rna_sample_00261_23H5VFLT4_s06.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/7e6d79206f13391a34ba9ad511c3a0/tih_rna_sample_00105_23H5VFLT4_s21_trimmed_2_fastqc.zip 198/tih_rna_sample_00105_23H5VFLT4_s21_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/82e200944e8a5592151bbe147b5a1b/tih_rna_sample_00115_23H5VFLT4_s35_trimmed_1_fastqc.zip 225/tih_rna_sample_00115_23H5VFLT4_s35_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/c1c015e283c9c0c380af8f950d52fa/tih_rna_sample_00400_23H5VFLT4_s27_kallisto_mqc.tsv 507/tih_rna_sample_00400_23H5VFLT4_s27_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/9f25c688599ffd61844d6f7f854ce7/tih_rna_sample_00121_23H5VFLT4_s41.inner_distance_freq.txt 829/tih_rna_sample_00121_23H5VFLT4_s41.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/67/13e8e51cdb672ad50af03371d9d6ea/tih_rna_sample_00425_23H5VFLT4_s46.pos.DupRate.xls 1563/tih_rna_sample_00425_23H5VFLT4_s46.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/a3bcf258a6ee0f42836ed295b1013c/GM24385_0001_RNA_0001_23H5VFLT4_s40_trimmed_1_fastqc.zip 237/GM24385_0001_RNA_0001_23H5VFLT4_s40_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/d444f0f066129c4b5cf8e5fcf4b8f6/V4_0001_RNA_0005_23H5VFLT4_s11.infer_experiment.txt 923/V4_0001_RNA_0005_23H5VFLT4_s11.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/9309ad7530fac4b27434b69a1d5514/tih_rna_sample_00127_23H5VFLT4_s08.lc_extrap.txt 2121/tih_rna_sample_00127_23H5VFLT4_s08.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/7804bd326bef16b4eda5ebd0c20730/tih_rna_sample_00163_23H5VFLT4_s43.lc_extrap.txt 2163/tih_rna_sample_00163_23H5VFLT4_s43.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/31bee467189f3d1d5fc079eb000707/V4_0001_RNA_0005_23H5VFLT4_s26_combined_fusions_arriba_visualisation.pdf 2379/V4_0001_RNA_0005_23H5VFLT4_s26_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/f0e805fd99822d2b12e4c87bc4fa2f/tih_rna_sample_00096_23H5VFLT4_s11.lc_extrap.txt 2145/tih_rna_sample_00096_23H5VFLT4_s11.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9b/43bbb09f8e1e0e09bdf9236689f98d/V4_0001_RNA_0005_23H5VFLT4_s01.attempt1.command.log 2111/V4_0001_RNA_0005_23H5VFLT4_s01.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bc/15458c47c4e1ea43ef4a45dfcddd0e/tih_rna_sample_00378_23H5VFLT4_s24.infer_experiment.txt 870/tih_rna_sample_00378_23H5VFLT4_s24.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/2f1cc10fb4f3c2e291a873d56a80ce/tih_rna_sample_00087_23H5VFLT4_s17.fastp.html 190/tih_rna_sample_00087_23H5VFLT4_s17.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b7/51bd193d442ae86570083bea8ce863/tih_rna_sample_00261_23H5VFLT4_s06.ReadsPerGene.out.tab 755/tih_rna_sample_00261_23H5VFLT4_s06.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/dbe593cf7f77e4c09b1ff242fae14b/V4_0001_RNA_0005_23H5VFLT4_s25.infer_experiment.txt 933/V4_0001_RNA_0005_23H5VFLT4_s25.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/c183175e67dfc6d18b214cdbab355d/V4_0001_RNA_0005_23H5VFLT4_s13.pos.DupRate.xls 1628/V4_0001_RNA_0005_23H5VFLT4_s13.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/9d83ec513ae19da8f8dfe36ba5274b/GM24385_0001_RNA_0001_23H5VFLT4_s48.Log.final.out 590/GM24385_0001_RNA_0001_23H5VFLT4_s48.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/af2064156392a7e3d2f9ed63dc9905/tih_rna_sample_00248_23H5VFLT4_s01.fastp.html 187/tih_rna_sample_00248_23H5VFLT4_s01.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/43d8255d799688e804374b09bc6286/V4_0001_RNA_0005_23H5VFLT4_s42.fastp.json 31/V4_0001_RNA_0005_23H5VFLT4_s42.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/635440678aa128137f11de4c87d290/V4_0001_RNA_0005_23H5VFLT4_s11.log 473/V4_0001_RNA_0005_23H5VFLT4_s11.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/58d60281c561c95a112ddfbeefd8a2/tih_rna_sample_00377_23H5VFLT4_s23.attempt1.command.log 2094/tih_rna_sample_00377_23H5VFLT4_s23.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/d607d3dc85a420472529d0ad67dac2/V4_0001_RNA_0005_23H5VFLT4_s22.Log.final.out 605/V4_0001_RNA_0005_23H5VFLT4_s22.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f4/b8c8f10c6da3aaa572d1da908ebecc/tih_rna_sample_00400_23H5VFLT4_s27_trimmed_2_fastqc.zip 298/tih_rna_sample_00400_23H5VFLT4_s27_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/9128406e7fc548cc9ae3ead36a5a2f/V4_0001_RNA_0005_23H5VFLT4_s03.read_distribution.txt 1787/V4_0001_RNA_0005_23H5VFLT4_s03.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/e5ec8bb44ca876784513175fddc393/tih_rna_sample_00403_23H5VFLT4_s29.attempt1.command.log 2040/tih_rna_sample_00403_23H5VFLT4_s29.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/971fba390509ad6db4d98175063a14/tih_rna_sample_00403_23H5VFLT4_s29.fastp.html 137/tih_rna_sample_00403_23H5VFLT4_s29.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/710fbaa8d918389f34f818caa25890/tih_rna_sample_00220_23H5VFLT4_s16_kallisto_mqc.tsv 513/tih_rna_sample_00220_23H5VFLT4_s16_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/e71fd465232ec5b9d80b3dadd5d619/V4_0001_RNA_0005_23H5VFLT4_s06_2_fastqc.zip 1064/V4_0001_RNA_0005_23H5VFLT4_s06_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/e189f9bddcb5d60f37a98607b3a71b/tih_rna_sample_00420_23H5VFLT4_s45_preseq_mqc.tsv 2220/tih_rna_sample_00420_23H5VFLT4_s45_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/211109a70c204aa5cf8b249d04afc4/tih_rna_sample_00402_23H5VFLT4_s28.ReadsPerGene.out.tab 734/tih_rna_sample_00402_23H5VFLT4_s28.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/4c69b398e7ed6ebd52c3aac2d788fc/tih_rna_sample_00377_23H5VFLT4_s23.fastp.html 134/tih_rna_sample_00377_23H5VFLT4_s23.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/ee562ac4708cef0ac4324dc20912fc/tih_rna_sample_00115_23H5VFLT4_s35.log 400/tih_rna_sample_00115_23H5VFLT4_s35.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/468295198d62deecea1bfc64b9015e/tih_rna_sample_00254_23H5VFLT4_s05.junctionSaturation_plot.r 1232/tih_rna_sample_00254_23H5VFLT4_s05.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/7a10d7848c27f88c23f21f53edff1c/GM24385_0001_RNA_0001_23H5VFLT4_s16.junction_annotation.log 1392/GM24385_0001_RNA_0001_23H5VFLT4_s16.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/44592e76cd519b391924b7573d99bb/tih_rna_sample_00117_23H5VFLT4_s37.fastp.json 10/tih_rna_sample_00117_23H5VFLT4_s37.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/53725f47c077dc8a0a9059d53c5eb5/tih_rna_sample_00096_23H5VFLT4_s11.md.bam.metrics 1876/tih_rna_sample_00096_23H5VFLT4_s11.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/2507c9143ee6c80965dd52a5080552/GM24385_0001_RNA_0001_23H5VFLT4_s24_2_fastqc.zip 1000/GM24385_0001_RNA_0001_23H5VFLT4_s24_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/3c193fc5927ea3f00dff295d2b20d4/tih_rna_sample_00220_23H5VFLT4_s16.fastp.html 146/tih_rna_sample_00220_23H5VFLT4_s16.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/e02d9c2321abe1dbbd41fa1e16621d/GM24385_0001_RNA_0001_23H5VFLT4_s32_2_fastqc.zip 994/GM24385_0001_RNA_0001_23H5VFLT4_s32_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/f10d08e3729b22b37156ecf5aa8344/tih_rna_sample_00394_23H5VFLT4_s25.lc_extrap.txt 2123/tih_rna_sample_00394_23H5VFLT4_s25.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/c1e6624a5081b5e0acf860dc9a9288/tih_rna_sample_00117_23H5VFLT4_s37.read_distribution.txt 1740/tih_rna_sample_00117_23H5VFLT4_s37.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/bd13e5f26f03c0e5ca2251eb79056b/tih_rna_sample_00104_23H5VFLT4_s20_trimmed_2_fastqc.zip 218/tih_rna_sample_00104_23H5VFLT4_s20_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/773e327d5c3a1c5b46f7bdb78415a4/tih_rna_sample_00407_23H5VFLT4_s33.lc_extrap.txt 2184/tih_rna_sample_00407_23H5VFLT4_s33.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/0c9fbbfe0320c6f86ffbe200b648b7/tih_rna_sample_00248_23H5VFLT4_s01_combined_fusions_arriba_visualisation.pdf 2336/tih_rna_sample_00248_23H5VFLT4_s01_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/03ff7dd589a9de0bd3001105741382/V4_0001_RNA_0005_23H5VFLT4_s44.bam_stat.txt 1482/V4_0001_RNA_0005_23H5VFLT4_s44.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/587785dd64b374b12f797a8f20330a/tih_rna_sample_00422_23H5VFLT4_s47.log 389/tih_rna_sample_00422_23H5VFLT4_s47.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/6d1d34e34ddc47faf3e36687e1c093/tih_rna_sample_00420_23H5VFLT4_s45.md.bam.metrics 1833/tih_rna_sample_00420_23H5VFLT4_s45.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/80452c92c023afe06f22c85781c27f/V4_0001_RNA_0005_23H5VFLT4_s43_rseqc_extra_mqc.tsv 1659/V4_0001_RNA_0005_23H5VFLT4_s43_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/b442480809a9d164f77f332e8162e6/HD789_0002_RNA_0008_23H5VFLT4_s19_kallisto_mqc.tsv 550/HD789_0002_RNA_0008_23H5VFLT4_s19_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/0854afb331d20b8c121440be562a95/V4_0001_RNA_0001_23H5VFLT4_s13.read_distribution.txt 1778/V4_0001_RNA_0001_23H5VFLT4_s13.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f4/7a3804dd478183185c07792bf5603f/V4_0001_RNA_0005_23H5VFLT4_s43_contamination_mqc.tsv 1277/V4_0001_RNA_0005_23H5VFLT4_s43_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/946f4119459d3ecd08067040e0e361/V4_0001_RNA_0005_23H5VFLT4_s33_trimmed_1_fastqc.zip 307/V4_0001_RNA_0005_23H5VFLT4_s33_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/35971b1f4987856369bccda9b4746a/tih_rna_sample_00280_23H5VFLT4_s18_2_fastqc.zip 1136/tih_rna_sample_00280_23H5VFLT4_s18_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/c2310b032d0c1cfbb0ab7d51cdbafe/V4_0001_RNA_0005_23H5VFLT4_s46_kallisto_mqc.tsv 504/V4_0001_RNA_0005_23H5VFLT4_s46_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/f2cf55af9dd622136a3cbb3af04fdb/tih_rna_sample_00254_23H5VFLT4_s05.fastp.json 93/tih_rna_sample_00254_23H5VFLT4_s05.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/27bc06ff02cd011b0f1805618f73ee/tih_rna_sample_00420_23H5VFLT4_s45_1_fastqc.zip 975/tih_rna_sample_00420_23H5VFLT4_s45_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/dd5009893aa61fe56ca515ed3e6c6c/tih_rna_sample_00261_23H5VFLT4_s06.junctionSaturation_plot.r 1220/tih_rna_sample_00261_23H5VFLT4_s06.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/7134c46014a6adb967e67c4d9f8c0b/tih_rna_sample_00218_23H5VFLT4_s10_trimmed_2_fastqc.zip 282/tih_rna_sample_00218_23H5VFLT4_s10_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/d5ae939a3e59d2fb19fdba27ab11ae/tih_rna_sample_00394_23H5VFLT4_s25_1_fastqc.zip 977/tih_rna_sample_00394_23H5VFLT4_s25_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/6536ae70de7adbf56f271c4f3a71cc/V4_0001_RNA_0005_23H5VFLT4_s30.read_distribution.txt 1810/V4_0001_RNA_0005_23H5VFLT4_s30.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/acee1d11ac15aeae5078769f224eac/tih_rna_sample_00254_23H5VFLT4_s05_trimmed_1_fastqc.zip 313/tih_rna_sample_00254_23H5VFLT4_s05_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/423735c72694f2162cc3c1b2b2a339/V4_0001_RNA_0005_23H5VFLT4_s27_rseqc_extra_mqc.tsv 1720/V4_0001_RNA_0005_23H5VFLT4_s27_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cb/cc7dcc406c197a7697322a420fa7ef/V4_0001_RNA_0005_23H5VFLT4_s09.junctionSaturation_plot.r 1210/V4_0001_RNA_0005_23H5VFLT4_s09.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/fc126da2d41feb54d09cab4f519444/tih_rna_sample_00422_23H5VFLT4_s47.junction_annotation.log 1348/tih_rna_sample_00422_23H5VFLT4_s47.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/1e018f77d04df6f562dcd4e650afe0/V4_0001_RNA_0005_23H5VFLT4_s35_kallisto_mqc.tsv 502/V4_0001_RNA_0005_23H5VFLT4_s35_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/1162dcb26b4b36bf9b43b1dc0159cf/V4_0001_RNA_0005_23H5VFLT4_s05.bam_stat.txt 1536/V4_0001_RNA_0005_23H5VFLT4_s05.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/f6e5561577d7ee63feebf7ff3010a1/V4_0001_RNA_0005_23H5VFLT4_s30_trimmed_2_fastqc.zip 234/V4_0001_RNA_0005_23H5VFLT4_s30_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/ce401d42be7ca7dbf5365cb2e95630/HD789_0002_RNA_0008_23H5VFLT4_s19.inner_distance_freq.txt 860/HD789_0002_RNA_0008_23H5VFLT4_s19.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/40e7ba2ecb99aef50f7df9f64c28b1/V4_0001_RNA_0005_23H5VFLT4_s34.md.bam.metrics 1885/V4_0001_RNA_0005_23H5VFLT4_s34.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/15db2f1dbb5d9eda6a4c6d869d9a53/V4_0001_RNA_0001_23H5VFLT4_s13.Log.final.out 623/V4_0001_RNA_0001_23H5VFLT4_s13.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/444a4a563b71eaad4fb7edb5ef1214/tih_rna_sample_00088_23H5VFLT4_s02.Log.final.out 670/tih_rna_sample_00088_23H5VFLT4_s02.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/59734234c484c31298da44673f6912/tih_rna_sample_00111_23H5VFLT4_s30_rseqc_extra_mqc.tsv 1640/tih_rna_sample_00111_23H5VFLT4_s30_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/de/6e71a1cbff619af8e44546cee25ce2/V4_0001_RNA_0005_23H5VFLT4_s14.junction_annotation.log 1371/V4_0001_RNA_0005_23H5VFLT4_s14.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/e250e8e42732b6457d8e22b28c9ded/tih_rna_sample_00096_23H5VFLT4_s11_kallisto_mqc.tsv 540/tih_rna_sample_00096_23H5VFLT4_s11_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/479dc06bb1824577c598921e015053/V4_0001_RNA_0001_23H5VFLT4_s13_contamination_mqc.tsv 1297/V4_0001_RNA_0001_23H5VFLT4_s13_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/20caea92a3ba7847ce5b1c3e77ba56/tih_rna_sample_00394_23H5VFLT4_s25.junctionSaturation_plot.r 1161/tih_rna_sample_00394_23H5VFLT4_s25.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/39d34cdb4ea8833e2e7949923fa2ec/tih_rna_sample_00402_23H5VFLT4_s28_1_fastqc.zip 1087/tih_rna_sample_00402_23H5VFLT4_s28_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/397e1eab0bb47307132356e7561788/V4_0001_RNA_0005_23H5VFLT4_s37.pos.DupRate.xls 1564/V4_0001_RNA_0005_23H5VFLT4_s37.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/641ddd8ae412a8e517199650298fde/tih_rna_sample_00090_23H5VFLT4_s32_trimmed_1_fastqc.zip 351/tih_rna_sample_00090_23H5VFLT4_s32_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/e784939e60ab710a8fc29e268c3214/tih_rna_sample_00254_23H5VFLT4_s05.Log.final.out 664/tih_rna_sample_00254_23H5VFLT4_s05.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/d40269dddb1150915458db4f66407a/HD789_0002_RNA_0008_23H5VFLT4_s19_rseqc_extra_mqc.tsv 1716/HD789_0002_RNA_0008_23H5VFLT4_s19_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/a5273756f1743ac1cb9b5a4570fc4c/tih_rna_sample_00419_23H5VFLT4_s44_trimmed_2_fastqc.zip 300/tih_rna_sample_00419_23H5VFLT4_s44_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/0aa90794e9df9513e9c04ad43b5cfb/tih_rna_sample_00163_23H5VFLT4_s43.Log.final.out 672/tih_rna_sample_00163_23H5VFLT4_s43.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/e3aff275e93d1f5a6ce83571dea63f/tih_rna_sample_00414_23H5VFLT4_s40_kallisto_mqc.tsv 544/tih_rna_sample_00414_23H5VFLT4_s40_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/66d8ecdedf653dffe185c45e15baf5/V4_0001_RNA_0005_23H5VFLT4_s34.inner_distance_freq.txt 842/V4_0001_RNA_0005_23H5VFLT4_s34.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/8e984d2f529e16dbb02c4e63c481a3/V4_0001_RNA_0005_23H5VFLT4_s43_combined_fusions_arriba_visualisation.pdf 2328/V4_0001_RNA_0005_23H5VFLT4_s43_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/71/50d57fecfebb866389574da5c0429b/tih_rna_sample_00400_23H5VFLT4_s27.md.bam.metrics 1889/tih_rna_sample_00400_23H5VFLT4_s27.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/375c965996bab159d4c7b291b5ca55/tih_rna_sample_00121_23H5VFLT4_s41_trimmed_1_fastqc.zip 295/tih_rna_sample_00121_23H5VFLT4_s41_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/56110dbaf77b06e10b95b727550514/V4_0001_RNA_0005_23H5VFLT4_s01_combined_fusions_arriba_visualisation.pdf 2349/V4_0001_RNA_0005_23H5VFLT4_s01_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/8db3b4cafd07858f866f4f201a6833/V4_0001_RNA_0005_23H5VFLT4_s41_trimmed_2_fastqc.zip 316/V4_0001_RNA_0005_23H5VFLT4_s41_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/8ac7ffb91fe6f2286dd9e153db2849/GM24385_0001_RNA_0001_23H5VFLT4_s48.infer_experiment.txt 878/GM24385_0001_RNA_0001_23H5VFLT4_s48.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/1062810e0cfc3a0ed150e2425fc618/V4_0001_RNA_0005_23H5VFLT4_s18_trimmed_1_fastqc.zip 253/V4_0001_RNA_0005_23H5VFLT4_s18_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/3cb4f22162cfdd0018680c5b92b124/tih_rna_sample_00111_23H5VFLT4_s30.ReadsPerGene.out.tab 680/tih_rna_sample_00111_23H5VFLT4_s30.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d3/3a5bdb97d88cdaf4c378db001adf86/V4_0001_RNA_0005_23H5VFLT4_s23_rseqc_extra_mqc.tsv 1680/V4_0001_RNA_0005_23H5VFLT4_s23_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/26836dc6cd6f99fb8db2b1f64acfcb/V4_0001_RNA_0005_23H5VFLT4_s15_rseqc_extra_mqc.tsv 1656/V4_0001_RNA_0005_23H5VFLT4_s15_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/8b317a674c7228b4c8a0da5d653659/V4_0001_RNA_0005_23H5VFLT4_s03.junctionSaturation_plot.r 1249/V4_0001_RNA_0005_23H5VFLT4_s03.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/4dafab2f39cb1c0659913e3eee470d/GM24385_0001_RNA_0001_23H5VFLT4_s08.lc_extrap.txt 2143/GM24385_0001_RNA_0001_23H5VFLT4_s08.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/d08e67d90729dde14e85deda2ab47c/tih_rna_sample_00097_23H5VFLT4_s12.ReadsPerGene.out.tab 720/tih_rna_sample_00097_23H5VFLT4_s12.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a8/cdf74de2c2c765d8efeeabe49c569c/tih_rna_sample_00248_23H5VFLT4_s01_seqtool_mqc.tsv 2017/tih_rna_sample_00248_23H5VFLT4_s01_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/cfdc081d7142df60aaef117904dc6f/V4_0001_RNA_0005_23H5VFLT4_s47.fastp.json 90/V4_0001_RNA_0005_23H5VFLT4_s47.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6c/9936dc4ab19f2e9af730b7f93c4715/tih_rna_sample_00097_23H5VFLT4_s12_kallisto_mqc.tsv 560/tih_rna_sample_00097_23H5VFLT4_s12_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/6222b37cf7476b56e0093a8521ac16/V4_0001_RNA_0005_23H5VFLT4_s23_preseq_mqc.tsv 2275/V4_0001_RNA_0005_23H5VFLT4_s23_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/1b2b86e76475ebbefbbe28bbe66c1d/V4_0001_RNA_0005_23H5VFLT4_s14.Log.final.out 607/V4_0001_RNA_0005_23H5VFLT4_s14.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/1e9d40a6c511f6005a1d1ba2cdf419/V4_0001_RNA_0005_23H5VFLT4_s29.junction_annotation.log 1432/V4_0001_RNA_0005_23H5VFLT4_s29.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/dfdbb0b72171bdcf7e169563e5936d/tih_rna_sample_00163_23H5VFLT4_s43.fastp.html 133/tih_rna_sample_00163_23H5VFLT4_s43.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/04b53cfe5bdd57ecccd61f369f58b0/V4_0001_RNA_0005_23H5VFLT4_s33.inner_distance_freq.txt 834/V4_0001_RNA_0005_23H5VFLT4_s33.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/bedbc457371eb3d82e4631b9fdc6a3/tih_rna_sample_00124_23H5VFLT4_s31_2_fastqc.zip 1110/tih_rna_sample_00124_23H5VFLT4_s31_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3e/d7bc7100bacc398afda11721512421/V4_0001_RNA_0005_23H5VFLT4_s14.junctionSaturation_plot.r 1200/V4_0001_RNA_0005_23H5VFLT4_s14.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/11/756f21ae857f9c75013bd31a9319de/V4_0001_RNA_0005_23H5VFLT4_s04.junctionSaturation_plot.r 1208/V4_0001_RNA_0005_23H5VFLT4_s04.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8e/e420d4a6b33f8615c0760f689dfcf7/tih_rna_sample_00235_23H5VFLT4_s07_1_fastqc.zip 1147/tih_rna_sample_00235_23H5VFLT4_s07_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/91ffba72d213a913618da72d4e492f/tih_rna_sample_00414_23H5VFLT4_s40_1_fastqc.zip 1075/tih_rna_sample_00414_23H5VFLT4_s40_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/8e8a47b6b814df80dd198f7c963827/V4_0001_RNA_0005_23H5VFLT4_s23_kallisto_mqc.tsv 561/V4_0001_RNA_0005_23H5VFLT4_s23_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fa/22dec177ead355134c01076072bd33/V4_0001_RNA_0005_23H5VFLT4_s39_preseq_mqc.tsv 2227/V4_0001_RNA_0005_23H5VFLT4_s39_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/7e4770339ee1b8843a88142b249a35/GM24385_0001_RNA_0001_23H5VFLT4_s32.bam_stat.txt 1460/GM24385_0001_RNA_0001_23H5VFLT4_s32.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/2eccefb1da2653c050114a56203008/tih_rna_sample_00122_23H5VFLT4_s42_trimmed_1_fastqc.zip 213/tih_rna_sample_00122_23H5VFLT4_s42_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/f30aece4123bf8687405d138612800/tih_rna_sample_00251_23H5VFLT4_s03_2_fastqc.zip 1092/tih_rna_sample_00251_23H5VFLT4_s03_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/fa2fe48db10048383ff484809a1d1e/V4_0001_RNA_0005_23H5VFLT4_s25_1_fastqc.zip 1153/V4_0001_RNA_0005_23H5VFLT4_s25_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/427cc132c78b434659a24d9be31098/tih_rna_sample_00378_23H5VFLT4_s24_1_fastqc.zip 971/tih_rna_sample_00378_23H5VFLT4_s24_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/8b534c342cd139129fa1855b7b3ecc/V4_0001_RNA_0005_23H5VFLT4_s14.attempt2.command.log 2099/V4_0001_RNA_0005_23H5VFLT4_s14.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/ae1f1bfb30bc9c3ad0028aa487dac4/tih_rna_sample_00388_23H5VFLT4_s22.junction_annotation.log 1422/tih_rna_sample_00388_23H5VFLT4_s22.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/1a78b8a3780b6eb6a979cb7c4bfc4a/V4_0001_RNA_0005_23H5VFLT4_s05.ReadsPerGene.out.tab 730/V4_0001_RNA_0005_23H5VFLT4_s05.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/11856b4d96ca6ea428404e7c0f358d/V4_0001_RNA_0005_23H5VFLT4_s14_2_fastqc.zip 1066/V4_0001_RNA_0005_23H5VFLT4_s14_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/84/62c744f3c72ff294718535f2569536/V4_0001_RNA_0005_23H5VFLT4_s09_2_fastqc.zip 1100/V4_0001_RNA_0005_23H5VFLT4_s09_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/65cc335677f141e8641ef0f076f735/tih_rna_sample_00097_23H5VFLT4_s12.junctionSaturation_plot.r 1201/tih_rna_sample_00097_23H5VFLT4_s12.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/61eaa66cebd4b69e9539acf5794e11/HD789_0002_RNA_0008_23H5VFLT4_s19_trimmed_1_fastqc.zip 347/HD789_0002_RNA_0008_23H5VFLT4_s19_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/53f4b9cad645977505be8a8673c844/V4_0001_RNA_0005_23H5VFLT4_s13.inner_distance_freq.txt 859/V4_0001_RNA_0005_23H5VFLT4_s13.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/f702f853a42a793197984fdc3e95f2/V4_0001_RNA_0005_23H5VFLT4_s02_2_fastqc.zip 1094/V4_0001_RNA_0005_23H5VFLT4_s02_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/ccdf55fe6bfd0704dd827bdde7ea11/tih_rna_sample_00127_23H5VFLT4_s08.read_distribution.txt 1742/tih_rna_sample_00127_23H5VFLT4_s08.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/82beff3580a14c518f2882def8600d/V4_0001_RNA_0001_23H5VFLT4_s13.inner_distance_freq.txt 814/V4_0001_RNA_0001_23H5VFLT4_s13.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/d16f5adecea521444f93b7470c48fb/V4_0001_RNA_0005_23H5VFLT4_s35_contamination_mqc.tsv 1272/V4_0001_RNA_0005_23H5VFLT4_s35_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/18cbb251a6459c603eb4a79a5c27b1/tih_rna_sample_00407_23H5VFLT4_s33_trimmed_2_fastqc.zip 264/tih_rna_sample_00407_23H5VFLT4_s33_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7f/84cfc6d361b7c3b5c147cf73a6cece/tih_rna_sample_00280_23H5VFLT4_s18.log 425/tih_rna_sample_00280_23H5VFLT4_s18.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/2105caa22611212fdd000badcaec35/tih_rna_sample_00274_23H5VFLT4_s14.junctionSaturation_plot.r 1167/tih_rna_sample_00274_23H5VFLT4_s14.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/3f20fa6ae3682fa0fe3223d5e46581/V4_0001_RNA_0005_23H5VFLT4_s26.inner_distance_freq.txt 853/V4_0001_RNA_0005_23H5VFLT4_s26.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/0a1ef9d9c289b711609d4ee7a51fcc/tih_rna_sample_00396_23H5VFLT4_s26.read_distribution.txt 1788/tih_rna_sample_00396_23H5VFLT4_s26.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/62715fb5c54b72d09214cae1ffcceb/V4_0001_RNA_0005_23H5VFLT4_s17.lc_extrap.txt 2151/V4_0001_RNA_0005_23H5VFLT4_s17.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/7913874d79d9a896e93bac5c3a8ccd/tih_rna_sample_00377_23H5VFLT4_s23.pos.DupRate.xls 1602/tih_rna_sample_00377_23H5VFLT4_s23.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/a9cb9c929e5d9f040b13fb3cc21de5/V4_0001_RNA_0005_23H5VFLT4_s31.junction_annotation.log 1435/V4_0001_RNA_0005_23H5VFLT4_s31.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/0b30a3c22bffd1b8ea5eb5058fa3ef/V4_0001_RNA_0005_23H5VFLT4_s42_rseqc_extra_mqc.tsv 1681/V4_0001_RNA_0005_23H5VFLT4_s42_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/5bca017be9bd68e6e25618aea22f8b/tih_rna_sample_00118_23H5VFLT4_s38.junctionSaturation_plot.r 1193/tih_rna_sample_00118_23H5VFLT4_s38.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/697336f2149322117fee10fb53d950/V4_0001_RNA_0005_23H5VFLT4_s45.attempt1.command.log 2045/V4_0001_RNA_0005_23H5VFLT4_s45.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/c1dc25a1230872635510599756ee49/V4_0001_RNA_0005_23H5VFLT4_s34.log 459/V4_0001_RNA_0005_23H5VFLT4_s34.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/41446969f64d6be175a256b712cdc8/GM24385_0001_RNA_0001_23H5VFLT4_s08.infer_experiment.txt 928/GM24385_0001_RNA_0001_23H5VFLT4_s08.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/bd7285bf6d0758853990e1c051cfa8/HD789_0002_RNA_0008_23H5VFLT4_s19_2_fastqc.zip 1152/HD789_0002_RNA_0008_23H5VFLT4_s19_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/9492d9bc532c69f79d1cc8aaa6e1f1/tih_rna_sample_00122_23H5VFLT4_s42.bam_stat.txt 1447/tih_rna_sample_00122_23H5VFLT4_s42.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b8/90d4f8dfb26f816d7e152a67aa052b/GM24385_0001_RNA_0001_23H5VFLT4_s32_seqtool_mqc.tsv 1938/GM24385_0001_RNA_0001_23H5VFLT4_s32_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/d43437bed92f2eb5da7a4f167177f5/tih_rna_sample_00163_23H5VFLT4_s43_combined_fusions_arriba_visualisation.pdf 2363/tih_rna_sample_00163_23H5VFLT4_s43_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/8b511986bd3c1eb9b07ec4e205aef7/V4_0001_RNA_0005_23H5VFLT4_s22.junction_annotation.log 1365/V4_0001_RNA_0005_23H5VFLT4_s22.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/728e8b885df5dd664445e2e43eecfe/tih_rna_sample_00218_23H5VFLT4_s10.inner_distance_freq.txt 807/tih_rna_sample_00218_23H5VFLT4_s10.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/89210853ee884f1669710f868c6b9f/NTC_0001_0001_23H5VFLT4_s15.Log.final.out 579/NTC_0001_0001_23H5VFLT4_s15.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/1d7d8086b4d4c79cdc4d900a5425de/V4_0001_RNA_0005_23H5VFLT4_s11.pos.DupRate.xls 1580/V4_0001_RNA_0005_23H5VFLT4_s11.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/084e1212dea19b585ff4f3e3b5ff3c/tih_rna_sample_00218_23H5VFLT4_s10.ReadsPerGene.out.tab 712/tih_rna_sample_00218_23H5VFLT4_s10.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/3e21d36997e99c9cc1e9181cff1a67/tih_rna_sample_00377_23H5VFLT4_s23.Log.final.out 647/tih_rna_sample_00377_23H5VFLT4_s23.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/f51f452fd9a7664c05538aaae9d804/V4_0001_RNA_0001_23H5VFLT4_s13.md.bam.metrics 1858/V4_0001_RNA_0001_23H5VFLT4_s13.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/f2b49d9a5b86f7479c553d950e4fab/V4_0001_RNA_0005_23H5VFLT4_s31.attempt1.command.log 2102/V4_0001_RNA_0005_23H5VFLT4_s31.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/dbd6d42ac15c4fbf9ad682d4d29559/tih_rna_sample_00251_23H5VFLT4_s03.infer_experiment.txt 903/tih_rna_sample_00251_23H5VFLT4_s03.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/9834ad4e9f7f666ba69225389fff1a/V4_0001_RNA_0005_23H5VFLT4_s34_2_fastqc.zip 1038/V4_0001_RNA_0005_23H5VFLT4_s34_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/b508bff2b661353d06a000105df405/V4_0001_RNA_0005_23H5VFLT4_s09.pos.DupRate.xls 1596/V4_0001_RNA_0005_23H5VFLT4_s09.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/426da35d5fcddffa368a06192c5ce9/V4_0001_RNA_0005_23H5VFLT4_s10_preseq_mqc.tsv 2292/V4_0001_RNA_0005_23H5VFLT4_s10_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f4/f5ec12fffeb0a1aa8cd6466dce28f4/tih_rna_sample_00378_23H5VFLT4_s24_kallisto_mqc.tsv 487/tih_rna_sample_00378_23H5VFLT4_s24_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/1220d8d58be660f847fd1a7af097bb/tih_rna_sample_00117_23H5VFLT4_s37_1_fastqc.zip 979/tih_rna_sample_00117_23H5VFLT4_s37_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/abc28b0998dcf289ea4156023da17d/tih_rna_sample_00115_23H5VFLT4_s35.fastp.html 114/tih_rna_sample_00115_23H5VFLT4_s35.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/e93cc9b47a46a71c4ce146afebb95d/V4_0001_RNA_0005_23H5VFLT4_s42_1_fastqc.zip 1125/V4_0001_RNA_0005_23H5VFLT4_s42_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/faed03db157820f8f867ca05aab7be/V4_0001_RNA_0005_23H5VFLT4_s44_trimmed_2_fastqc.zip 310/V4_0001_RNA_0005_23H5VFLT4_s44_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/834789c6d6f324460872c432c00eb3/tih_rna_sample_00104_23H5VFLT4_s20_seqtool_mqc.tsv 1935/tih_rna_sample_00104_23H5VFLT4_s20_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/066ccfb153f7f5eed51aecd4c7b547/tih_rna_sample_00420_23H5VFLT4_s45.read_distribution.txt 1737/tih_rna_sample_00420_23H5VFLT4_s45.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/e41fbc80c050a8757940a19adc6501/tih_rna_sample_00248_23H5VFLT4_s01_trimmed_2_fastqc.zip 312/tih_rna_sample_00248_23H5VFLT4_s01_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/a0c3b9d452c576ef77cda33ba2130f/tih_rna_sample_00252_23H5VFLT4_s04_kallisto_mqc.tsv 545/tih_rna_sample_00252_23H5VFLT4_s04_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/c8cf64172b46b786e8bdb08ebdb3a2/V4_0001_RNA_0005_23H5VFLT4_s31.inner_distance_freq.txt 856/V4_0001_RNA_0005_23H5VFLT4_s31.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/68/3d0cf169990411532d33a9d0188fd4/GM24385_0001_RNA_0001_23H5VFLT4_s24.md.bam.metrics 1841/GM24385_0001_RNA_0001_23H5VFLT4_s24.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/70bf2cdecfa7d82c5a4d078cb74a4c/tih_rna_sample_00235_23H5VFLT4_s07_trimmed_1_fastqc.zip 251/tih_rna_sample_00235_23H5VFLT4_s07_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/773e327d5c3a1c5b46f7bdb78415a4/tih_rna_sample_00407_23H5VFLT4_s33.attempt2.command.log 2088/tih_rna_sample_00407_23H5VFLT4_s33.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/eeb559832ea0b8d15dd9cf5577c8a9/tih_rna_sample_00388_23H5VFLT4_s22.ReadsPerGene.out.tab 770/tih_rna_sample_00388_23H5VFLT4_s22.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/079cfbc5fe9ec1ba3a67782974bb81/tih_rna_sample_00419_23H5VFLT4_s44.fastp.json 54/tih_rna_sample_00419_23H5VFLT4_s44.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/0d6a05334cae7918280b49a115f88c/V4_0001_RNA_0005_23H5VFLT4_s02.pos.DupRate.xls 1586/V4_0001_RNA_0005_23H5VFLT4_s02.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/1611e612de2a72d4d0b522c005bebb/GM24385_0001_RNA_0001_23H5VFLT4_s08.Log.final.out 641/GM24385_0001_RNA_0001_23H5VFLT4_s08.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/57/cb0dda0a96c13271a7e61277f7d7d2/tih_rna_sample_00251_23H5VFLT4_s03_combined_fusions_arriba_visualisation.pdf 2353/tih_rna_sample_00251_23H5VFLT4_s03_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/38955b777355f08cf858d9fd28ea5c/tih_rna_sample_00272_23H5VFLT4_s09.log 418/tih_rna_sample_00272_23H5VFLT4_s09.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/8040c4f07439b377f4af61b4f7ea0a/tih_rna_sample_00218_23H5VFLT4_s10.read_distribution.txt 1759/tih_rna_sample_00218_23H5VFLT4_s10.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fe/d9579e17899f1040de6e60a8a23ee6/tih_rna_sample_00274_23H5VFLT4_s14.md.bam.metrics 1831/tih_rna_sample_00274_23H5VFLT4_s14.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c2/29cabedda5914d4873d701e05a81af/V4_0001_RNA_0005_23H5VFLT4_s05.fastp.json 56/V4_0001_RNA_0005_23H5VFLT4_s05.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/942252d75d0ffbca2dffe3e3af21d2/tih_rna_sample_00124_23H5VFLT4_s31.log 419/tih_rna_sample_00124_23H5VFLT4_s31.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/d1a5d47361b2f09a8c40973f9e468c/tih_rna_sample_00261_23H5VFLT4_s06_1_fastqc.zip 1015/tih_rna_sample_00261_23H5VFLT4_s06_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/78273ff7451f6cc58beda4603d3e22/tih_rna_sample_00251_23H5VFLT4_s03_preseq_mqc.tsv 2273/tih_rna_sample_00251_23H5VFLT4_s03_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/3c1702016e0788458ee3f83a4cd15f/V4_0001_RNA_0005_23H5VFLT4_s37.fastp.json 59/V4_0001_RNA_0005_23H5VFLT4_s37.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/95/aa78fd97e66386f4c705d1b3fa9dc7/V4_0001_RNA_0005_23H5VFLT4_s20.read_distribution.txt 1760/V4_0001_RNA_0005_23H5VFLT4_s20.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fc/f2ff9d6f7f1f478f450d3e2b691386/V4_0001_RNA_0005_23H5VFLT4_s13_seqtool_mqc.tsv 1982/V4_0001_RNA_0005_23H5VFLT4_s13_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/1a70150806fa50f751143a3adf77c0/V4_0001_RNA_0005_23H5VFLT4_s45.fastp.json 89/V4_0001_RNA_0005_23H5VFLT4_s45.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/c902d9cc51958111c001ae2da7849f/tih_rna_sample_00254_23H5VFLT4_s05.lc_extrap.txt 2157/tih_rna_sample_00254_23H5VFLT4_s05.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/554f0ab5aeaa6931cd5017979dc416/tih_rna_sample_00124_23H5VFLT4_s31.bam_stat.txt 1525/tih_rna_sample_00124_23H5VFLT4_s31.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/b0ec60f599041b2eab728227528db5/tih_rna_sample_00089_23H5VFLT4_s39.md.bam.metrics 1904/tih_rna_sample_00089_23H5VFLT4_s39.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/0ec201f33e7076581f12c1bc9b9780/tih_rna_sample_00280_23H5VFLT4_s18.junctionSaturation_plot.r 1234/tih_rna_sample_00280_23H5VFLT4_s18.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a5/2d60877970eb8ef0cdf4a70b52926b/V4_0001_RNA_0005_23H5VFLT4_s20.pos.DupRate.xls 1583/V4_0001_RNA_0005_23H5VFLT4_s20.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/94/1363d324aa1a11f56e8bbf5349d9b4/tih_rna_sample_00420_23H5VFLT4_s45.log 392/tih_rna_sample_00420_23H5VFLT4_s45.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/7923238910daa5920b0c0b8645d60b/V4_0001_RNA_0005_23H5VFLT4_s28.fastp.json 16/V4_0001_RNA_0005_23H5VFLT4_s28.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/3b7537f2dc0f1870cef30af9447322/V4_0001_RNA_0005_23H5VFLT4_s07.inner_distance_freq.txt 793/V4_0001_RNA_0005_23H5VFLT4_s07.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/ca2e765cfe1b3f5ff479b86c5e0415/V4_0001_RNA_0005_23H5VFLT4_s44.fastp.html 184/V4_0001_RNA_0005_23H5VFLT4_s44.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d6/57d35a521767e57493fa42cee15732/tih_rna_sample_00218_23H5VFLT4_s10.junctionSaturation_plot.r 1197/tih_rna_sample_00218_23H5VFLT4_s10.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/e4b944deceee45c8e6767aad516ce9/V4_0001_RNA_0005_23H5VFLT4_s15.log 434/V4_0001_RNA_0005_23H5VFLT4_s15.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/a266ce015ef1ceef31c1104b85c774/V4_0001_RNA_0005_23H5VFLT4_s21.fastp.html 124/V4_0001_RNA_0005_23H5VFLT4_s21.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/d43734cb9fb512e1142969cc9449c3/V4_0001_RNA_0005_23H5VFLT4_s10_contamination_mqc.tsv 1316/V4_0001_RNA_0005_23H5VFLT4_s10_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/775d41e2e26a879ac2c078cd196c87/tih_rna_sample_00087_23H5VFLT4_s17_2_fastqc.zip 1146/tih_rna_sample_00087_23H5VFLT4_s17_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/1e79792e7b67196cc42ac656a6d43b/tih_rna_sample_00377_23H5VFLT4_s23.inner_distance_freq.txt 837/tih_rna_sample_00377_23H5VFLT4_s23.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/df1e91ceaa71929f50d35e1b704823/tih_rna_sample_00422_23H5VFLT4_s47.lc_extrap.txt 2117/tih_rna_sample_00422_23H5VFLT4_s47.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/261c487764469437b48fd3d9dc5b06/V4_0001_RNA_0005_23H5VFLT4_s26_preseq_mqc.tsv 2264/V4_0001_RNA_0005_23H5VFLT4_s26_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/0ee53f62003bce04f2aca8a9bb1cbb/V4_0001_RNA_0005_23H5VFLT4_s26_trimmed_1_fastqc.zip 273/V4_0001_RNA_0005_23H5VFLT4_s26_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/0cfb4a1eead6d8660a97b7cb431a28/V4_0001_RNA_0005_23H5VFLT4_s01.inner_distance_freq.txt 841/V4_0001_RNA_0005_23H5VFLT4_s01.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/b260eaf70810e0f101a8d7235be10b/tih_rna_sample_00122_23H5VFLT4_s42.inner_distance_freq.txt 775/tih_rna_sample_00122_23H5VFLT4_s42.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/b8a7a3a89511f75e77fe4bc81852f0/tih_rna_sample_00127_23H5VFLT4_s08_contamination_mqc.tsv 1266/tih_rna_sample_00127_23H5VFLT4_s08_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/61eaa66cebd4b69e9539acf5794e11/HD789_0002_RNA_0008_23H5VFLT4_s19_trimmed_2_fastqc.zip 348/HD789_0002_RNA_0008_23H5VFLT4_s19_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/69/52d8afff07107bbcf8a0bca4933675/V4_0001_RNA_0005_23H5VFLT4_s12_trimmed_1_fastqc.zip 363/V4_0001_RNA_0005_23H5VFLT4_s12_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/da0108ed1aa28e4f0dc70a2b979a49/tih_rna_sample_00104_23H5VFLT4_s20_combined_fusions_arriba_visualisation.pdf 2313/tih_rna_sample_00104_23H5VFLT4_s20_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/f12c012b2ef5bbe9c4c5b8d3d011a0/tih_rna_sample_00394_23H5VFLT4_s25.ReadsPerGene.out.tab 682/tih_rna_sample_00394_23H5VFLT4_s25.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/dbe9c66d4c30f70bd763e200515f9b/tih_rna_sample_00097_23H5VFLT4_s12.read_distribution.txt 1762/tih_rna_sample_00097_23H5VFLT4_s12.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/80/8d10d999402fb77eaf381df1d1c755/HD789_0002_RNA_0008_23H5VFLT4_s19_combined_fusions_arriba_visualisation.pdf 2392/HD789_0002_RNA_0008_23H5VFLT4_s19_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/0aee81bec5854e2766e175d746d667/tih_rna_sample_00425_23H5VFLT4_s46_combined_fusions_arriba_visualisation.pdf 2333/tih_rna_sample_00425_23H5VFLT4_s46_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/f10d08e3729b22b37156ecf5aa8344/tih_rna_sample_00394_23H5VFLT4_s25.attempt1.command.log 2027/tih_rna_sample_00394_23H5VFLT4_s25.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/1051afe6cde8fb1e29f0c38b519493/tih_rna_sample_00088_23H5VFLT4_s02.lc_extrap.txt 2160/tih_rna_sample_00088_23H5VFLT4_s02.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/aae5b2ea61173e215c368c61d0f993/GM24385_0001_RNA_0001_23H5VFLT4_s48_2_fastqc.zip 988/GM24385_0001_RNA_0001_23H5VFLT4_s48_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/ff1a134db7e70fec63710201255b4b/V4_0001_RNA_0005_23H5VFLT4_s36_preseq_mqc.tsv 2305/V4_0001_RNA_0005_23H5VFLT4_s36_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/66e68bc07c51206813fd6c932f62e0/tih_rna_sample_00272_23H5VFLT4_s09_preseq_mqc.tsv 2267/tih_rna_sample_00272_23H5VFLT4_s09_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/6b3f69b080fecb908aac5282548b56/V4_0001_RNA_0005_23H5VFLT4_s23.lc_extrap.txt 2179/V4_0001_RNA_0005_23H5VFLT4_s23.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/bb510b6933e57d1865a5fdb31a7442/V4_0001_RNA_0005_23H5VFLT4_s28_1_fastqc.zip 989/V4_0001_RNA_0005_23H5VFLT4_s28_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/96f6fa38ab3f3c2006476bef921801/tih_rna_sample_00426_23H5VFLT4_s48_seqtool_mqc.tsv 1986/tih_rna_sample_00426_23H5VFLT4_s48_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/d5002ee831265d7bf04fc7deb21772/tih_rna_sample_00254_23H5VFLT4_s05_1_fastqc.zip 1117/tih_rna_sample_00254_23H5VFLT4_s05_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/239526c6717c8299922ba5d7a31427/tih_rna_sample_00274_23H5VFLT4_s14_trimmed_2_fastqc.zip 208/tih_rna_sample_00274_23H5VFLT4_s14_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/93856552813668a88033e3c466a653/V4_0001_RNA_0005_23H5VFLT4_s03_rseqc_extra_mqc.tsv 1695/V4_0001_RNA_0005_23H5VFLT4_s03_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/25/49bb5af75b7b7b871d4164db8fb89c/V4_0001_RNA_0005_23H5VFLT4_s15.fastp.html 120/V4_0001_RNA_0005_23H5VFLT4_s15.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/88afd0a61939740db57ad0d46801c8/tih_rna_sample_00251_23H5VFLT4_s03.junction_annotation.log 1378/tih_rna_sample_00251_23H5VFLT4_s03.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/44592e76cd519b391924b7573d99bb/tih_rna_sample_00117_23H5VFLT4_s37.fastp.html 106/tih_rna_sample_00117_23H5VFLT4_s37.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/a1bdfcaa02f82ec5f7b9701b9c48ec/tih_rna_sample_00127_23H5VFLT4_s08.ReadsPerGene.out.tab 685/tih_rna_sample_00127_23H5VFLT4_s08.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/14/573417431441ff8f468c4fe5ef9e61/tih_rna_sample_00400_23H5VFLT4_s27.pos.DupRate.xls 1613/tih_rna_sample_00400_23H5VFLT4_s27.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/b3f15f3ca27955c7745b6050a43ab6/V4_0001_RNA_0005_23H5VFLT4_s09.junction_annotation.log 1412/V4_0001_RNA_0005_23H5VFLT4_s09.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/37f2fd62f00fdb873972ff0628ab1c/GM24385_0001_RNA_0001_23H5VFLT4_s48.md.bam.metrics 1838/GM24385_0001_RNA_0001_23H5VFLT4_s48.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/a2cdeb67b77f53b64d3cfd42556fff/GM24385_0001_RNA_0001_23H5VFLT4_s24_preseq_mqc.tsv 2228/GM24385_0001_RNA_0001_23H5VFLT4_s24_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/b9dae17c7844532d336425d61d3f7f/tih_rna_sample_00111_23H5VFLT4_s30_combined_fusions_arriba_visualisation.pdf 2316/tih_rna_sample_00111_23H5VFLT4_s30_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/643a34b39dd424b7c94f089b9df277/V4_0001_RNA_0005_23H5VFLT4_s03.ReadsPerGene.out.tab 758/V4_0001_RNA_0005_23H5VFLT4_s03.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/8cb38b6e12267d4274aecd819289f0/tih_rna_sample_00089_23H5VFLT4_s39.infer_experiment.txt 959/tih_rna_sample_00089_23H5VFLT4_s39.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/a77d02085366836a12e3420f6065bc/V4_0001_RNA_0005_23H5VFLT4_s39.md.bam.metrics 1848/V4_0001_RNA_0005_23H5VFLT4_s39.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/c32fcc676223a8abf5a194918d2a5f/V4_0001_RNA_0005_23H5VFLT4_s09_kallisto_mqc.tsv 566/V4_0001_RNA_0005_23H5VFLT4_s09_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/68e3a518ba3415b90928d7c1bf77ac/V4_0001_RNA_0005_23H5VFLT4_s23.fastp.json 81/V4_0001_RNA_0005_23H5VFLT4_s23.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/4fc2085a57d0b01b5bc176356fd930/GM24385_0001_RNA_0001_23H5VFLT4_s32.junction_annotation.log 1362/GM24385_0001_RNA_0001_23H5VFLT4_s32.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8d/7f33bf4331e5b5c209e2528b361b05/NTC_0001_0001_23H5VFLT4_s15_contamination_mqc.tsv 1251/NTC_0001_0001_23H5VFLT4_s15_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/bc9a9184d87796bc4169b7021e967e/tih_rna_sample_00420_23H5VFLT4_s45.fastp.json 8/tih_rna_sample_00420_23H5VFLT4_s45.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/b7f0467d0057ea853eaa97b1e49a4b/V4_0001_RNA_0005_23H5VFLT4_s27_2_fastqc.zip 1052/V4_0001_RNA_0005_23H5VFLT4_s27_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/c73a44a9bebe20243bda175912c8ad/V4_0001_RNA_0005_23H5VFLT4_s21.Log.final.out 612/V4_0001_RNA_0005_23H5VFLT4_s21.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/bc12bb33188409d409c43ce6727ce5/V4_0001_RNA_0005_23H5VFLT4_s36.Log.final.out 622/V4_0001_RNA_0005_23H5VFLT4_s36.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0f/23845ee862ae3defa03285ef22e1ea/tih_rna_sample_00252_23H5VFLT4_s04_seqtool_mqc.tsv 1969/tih_rna_sample_00252_23H5VFLT4_s04_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/8f462efb1b44f158491d243e7993e2/tih_rna_sample_00422_23H5VFLT4_s47.fastp.html 101/tih_rna_sample_00422_23H5VFLT4_s47.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/03644bbcccceb5ba8e7f58b481b18e/V4_0001_RNA_0005_23H5VFLT4_s15.ReadsPerGene.out.tab 702/V4_0001_RNA_0005_23H5VFLT4_s15.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/b3cad70110f47cada43ed87b6a1252/V4_0001_RNA_0005_23H5VFLT4_s10_trimmed_2_fastqc.zip 326/V4_0001_RNA_0005_23H5VFLT4_s10_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/78faf8044f03dc2902c1a33dd70a47/tih_rna_sample_00410_23H5VFLT4_s34_trimmed_1_fastqc.zip 241/tih_rna_sample_00410_23H5VFLT4_s34_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/35f6953f96dfe221d89452608e8a89/tih_rna_sample_00402_23H5VFLT4_s28_combined_fusions_arriba_visualisation.pdf 2341/tih_rna_sample_00402_23H5VFLT4_s28_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/f15bbc09de0afe9548d0691cdd6389/tih_rna_sample_00104_23H5VFLT4_s20.attempt1.command.log 2023/tih_rna_sample_00104_23H5VFLT4_s20.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/9e229e5808f18f38f1c14fb48ff904/GM24385_0001_RNA_0001_23H5VFLT4_s24.attempt1.command.log 2036/GM24385_0001_RNA_0001_23H5VFLT4_s24.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/a29e22d41769f8f70ecd09bd4eb5a4/HD789_0002_RNA_0008_23H5VFLT4_s19.log 454/HD789_0002_RNA_0008_23H5VFLT4_s19.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/caeb07c1e0aa544501abee322990e1/tih_rna_sample_00220_23H5VFLT4_s16_preseq_mqc.tsv 2243/tih_rna_sample_00220_23H5VFLT4_s16_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/95424904c0dc5d405851803957076b/GM24385_0001_RNA_0001_23H5VFLT4_s48_trimmed_1_fastqc.zip 215/GM24385_0001_RNA_0001_23H5VFLT4_s48_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/4bc4698197159545123bf03d2aae17/V4_0001_RNA_0005_23H5VFLT4_s39_trimmed_2_fastqc.zip 228/V4_0001_RNA_0005_23H5VFLT4_s39_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/c1b574cd3f37b6b3e3f658e7675937/tih_rna_sample_00127_23H5VFLT4_s08_combined_fusions_arriba_visualisation.pdf 2318/tih_rna_sample_00127_23H5VFLT4_s08_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/198cd49b519ec0969ac66de8a162a2/V4_0001_RNA_0005_23H5VFLT4_s34_contamination_mqc.tsv 1308/V4_0001_RNA_0005_23H5VFLT4_s34_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/43794548178995f8ead9765d80b1ce/V4_0001_RNA_0005_23H5VFLT4_s22_2_fastqc.zip 1010/V4_0001_RNA_0005_23H5VFLT4_s22_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/6f29d62c2c151d6fd18199f2080ab0/tih_rna_sample_00235_23H5VFLT4_s07.md.bam.metrics 1860/tih_rna_sample_00235_23H5VFLT4_s07.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/9d584c30c7986bc8151c35cadb1b33/GM24385_0001_RNA_0001_23H5VFLT4_s40.lc_extrap.txt 2135/GM24385_0001_RNA_0001_23H5VFLT4_s40.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/3d093ee3e52fad1143186dbabb6ac1/tih_rna_sample_00117_23H5VFLT4_s37.bam_stat.txt 1451/tih_rna_sample_00117_23H5VFLT4_s37.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/7bb4889ba2d7823f15611a9ce37deb/V4_0001_RNA_0005_23H5VFLT4_s11_contamination_mqc.tsv 1300/V4_0001_RNA_0005_23H5VFLT4_s11_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e7/f4b48cc2ac36eb52d7f4736e644359/tih_rna_sample_00254_23H5VFLT4_s05_rseqc_extra_mqc.tsv 1688/tih_rna_sample_00254_23H5VFLT4_s05_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/24952b6c3ed9c92f6334a32e80da4c/V4_0001_RNA_0005_23H5VFLT4_s21.log 472/V4_0001_RNA_0005_23H5VFLT4_s21.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/15/eeb559832ea0b8d15dd9cf5577c8a9/tih_rna_sample_00388_23H5VFLT4_s22.Log.final.out 674/tih_rna_sample_00388_23H5VFLT4_s22.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/99931189865bd80adf11d271a06749/V4_0001_RNA_0005_23H5VFLT4_s07_contamination_mqc.tsv 1273/V4_0001_RNA_0005_23H5VFLT4_s07_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/548ab727293e4bb94fead0a7ab8219/V4_0001_RNA_0005_23H5VFLT4_s20_rseqc_extra_mqc.tsv 1665/V4_0001_RNA_0005_23H5VFLT4_s20_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e7/4277a0628cde89c9869aea8a1641db/tih_rna_sample_00087_23H5VFLT4_s17_contamination_mqc.tsv 1335/tih_rna_sample_00087_23H5VFLT4_s17_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c3/e5637663953b58d12d88ea689e432c/tih_rna_sample_00115_23H5VFLT4_s35_kallisto_mqc.tsv 496/tih_rna_sample_00115_23H5VFLT4_s35_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/f021f13769428ed6364195fd09818d/tih_rna_sample_00127_23H5VFLT4_s08.md.bam.metrics 1836/tih_rna_sample_00127_23H5VFLT4_s08.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/079cfbc5fe9ec1ba3a67782974bb81/tih_rna_sample_00419_23H5VFLT4_s44.fastp.html 150/tih_rna_sample_00419_23H5VFLT4_s44.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/3a9cf05efa8cd7be31e9b68599a4a3/tih_rna_sample_00163_23H5VFLT4_s43_trimmed_1_fastqc.zip 345/tih_rna_sample_00163_23H5VFLT4_s43_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/1a993540a0c5bc8413598c8a7a0d73/V4_0001_RNA_0005_23H5VFLT4_s06.attempt1.command.log 2059/V4_0001_RNA_0005_23H5VFLT4_s06.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/3e96d7a7450d65c38249727b64c7a7/tih_rna_sample_00414_23H5VFLT4_s40.lc_extrap.txt 2206/tih_rna_sample_00414_23H5VFLT4_s40.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/70bf2cdecfa7d82c5a4d078cb74a4c/tih_rna_sample_00235_23H5VFLT4_s07_trimmed_2_fastqc.zip 252/tih_rna_sample_00235_23H5VFLT4_s07_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ff/95ed6ecc55076316e13212eea2687e/HD789_0002_RNA_0008_23H5VFLT4_s19.junction_annotation.log 1419/HD789_0002_RNA_0008_23H5VFLT4_s19.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a8/6c8e763c5851a17ab1edd84996b3d6/V4_0001_RNA_0005_23H5VFLT4_s29_1_fastqc.zip 1035/V4_0001_RNA_0005_23H5VFLT4_s29_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/427a969e2521a0013b92ab7768fe85/V4_0001_RNA_0005_23H5VFLT4_s13.ReadsPerGene.out.tab 765/V4_0001_RNA_0005_23H5VFLT4_s13.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/78/d14d6d4dae3e050036274af91c5224/V4_0001_RNA_0005_23H5VFLT4_s13.md.bam.metrics 1894/V4_0001_RNA_0005_23H5VFLT4_s13.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fd/15db2f1dbb5d9eda6a4c6d869d9a53/V4_0001_RNA_0001_23H5VFLT4_s13.ReadsPerGene.out.tab 719/V4_0001_RNA_0001_23H5VFLT4_s13.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/ef18a699e6261aca795f764e9a4859/tih_rna_sample_00117_23H5VFLT4_s37.junction_annotation.log 1356/tih_rna_sample_00117_23H5VFLT4_s37.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/fb/0ab49d861cfd9b9113c60c1583ebfa/tih_rna_sample_00122_23H5VFLT4_s42_preseq_mqc.tsv 2221/tih_rna_sample_00122_23H5VFLT4_s42_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/163c62bb0c6b0e0444e97c3a4369bf/GM24385_0001_RNA_0001_23H5VFLT4_s48.junctionSaturation_plot.r 1163/GM24385_0001_RNA_0001_23H5VFLT4_s48.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/ff4f824320a1869b3571e1705031ab/V4_0001_RNA_0005_23H5VFLT4_s44.ReadsPerGene.out.tab 736/V4_0001_RNA_0005_23H5VFLT4_s44.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/80/5d8bc4b13feba477145ea2d145e2dd/tih_rna_sample_00087_23H5VFLT4_s17_combined_fusions_arriba_visualisation.pdf 2383/tih_rna_sample_00087_23H5VFLT4_s17_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/bcf34cc0bcdf65732554089451c285/tih_rna_sample_00111_23H5VFLT4_s30_kallisto_mqc.tsv 486/tih_rna_sample_00111_23H5VFLT4_s30_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/aec0155a6099d9910c33c60e449e86/V4_0001_RNA_0005_23H5VFLT4_s04_trimmed_1_fastqc.zip 361/V4_0001_RNA_0005_23H5VFLT4_s04_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/bc8912b21764589f18bdcc98fb9347/tih_rna_sample_00426_23H5VFLT4_s48_trimmed_1_fastqc.zip 365/tih_rna_sample_00426_23H5VFLT4_s48_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f6/8838d1775e332c4ced459ddc5ff729/GM24385_0001_RNA_0001_23H5VFLT4_s40_1_fastqc.zip 1023/GM24385_0001_RNA_0001_23H5VFLT4_s40_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8f/a8a4b2370871c7d5297e8b1011d71d/tih_rna_sample_00089_23H5VFLT4_s39_contamination_mqc.tsv 1333/tih_rna_sample_00089_23H5VFLT4_s39_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/ba07b90829dd49e43e071c548f2cb4/tih_rna_sample_00254_23H5VFLT4_s05.inner_distance_freq.txt 854/tih_rna_sample_00254_23H5VFLT4_s05.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/de9c76d3166c3c757e90e95baed49e/tih_rna_sample_00218_23H5VFLT4_s10.log 409/tih_rna_sample_00218_23H5VFLT4_s10.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/c38e8fafcd0e0d81259ff2f91f05ac/tih_rna_sample_00163_23H5VFLT4_s43_1_fastqc.zip 1121/tih_rna_sample_00163_23H5VFLT4_s43_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/6ada35547aa995d31161f63e81ea1c/V4_0001_RNA_0005_23H5VFLT4_s21_trimmed_2_fastqc.zip 262/V4_0001_RNA_0005_23H5VFLT4_s21_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/71af2c9c838e201ee8bf1df88994f4/GM24385_0001_RNA_0001_23H5VFLT4_s08_contamination_mqc.tsv 1329/GM24385_0001_RNA_0001_23H5VFLT4_s08_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/346ef483c00690ef9131da2b74663b/V4_0001_RNA_0005_23H5VFLT4_s21.bam_stat.txt 1511/V4_0001_RNA_0005_23H5VFLT4_s21.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/8bc3bd84fd0cefff8a6809fb83592f/tih_rna_sample_00252_23H5VFLT4_s04_1_fastqc.zip 1081/tih_rna_sample_00252_23H5VFLT4_s04_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/74965595b0163438d98aba7767c733/tih_rna_sample_00419_23H5VFLT4_s44.log 438/tih_rna_sample_00419_23H5VFLT4_s44.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/c722382b371722eaf59202f6b17548/tih_rna_sample_00396_23H5VFLT4_s26_contamination_mqc.tsv 1331/tih_rna_sample_00396_23H5VFLT4_s26_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/07/f183af7e5bb38f1bc65cf2d77f5368/tih_rna_sample_00378_23H5VFLT4_s24.junctionSaturation_plot.r 1158/tih_rna_sample_00378_23H5VFLT4_s24.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/fa2ad19f1cd4ed7d35a86255b0874c/V4_0001_RNA_0005_23H5VFLT4_s37.inner_distance_freq.txt 803/V4_0001_RNA_0005_23H5VFLT4_s37.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/2a553c869589e10b7a0468fb8f3c20/V4_0001_RNA_0005_23H5VFLT4_s06.md.bam.metrics 1922/V4_0001_RNA_0005_23H5VFLT4_s06.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/6bbce14215505c2969f45ea1a18e0c/GM24385_0001_RNA_0001_23H5VFLT4_s32_kallisto_mqc.tsv 529/GM24385_0001_RNA_0001_23H5VFLT4_s32_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/66b3c8857e62c771332a8c02d09b9d/V4_0001_RNA_0005_23H5VFLT4_s06.fastp.json 69/V4_0001_RNA_0005_23H5VFLT4_s06.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/72/865b591a943e2b7fecd98a84980063/tih_rna_sample_00118_23H5VFLT4_s38_rseqc_extra_mqc.tsv 1670/tih_rna_sample_00118_23H5VFLT4_s38_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/54/e4cd67ab14cf8b3de694f2b2c534f4/V4_0001_RNA_0005_23H5VFLT4_s02.inner_distance_freq.txt 820/V4_0001_RNA_0005_23H5VFLT4_s02.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ad/bb2c44ace0ead90c965921f3266c26/tih_rna_sample_00096_23H5VFLT4_s11.Log.final.out 646/tih_rna_sample_00096_23H5VFLT4_s11.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/f4cb9934a3a084f9c3e855090f7e23/tih_rna_sample_00272_23H5VFLT4_s09.ReadsPerGene.out.tab 769/tih_rna_sample_00272_23H5VFLT4_s09.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/be2b90b58ad05182649c7313f30f34/V4_0001_RNA_0005_23H5VFLT4_s47_kallisto_mqc.tsv 572/V4_0001_RNA_0005_23H5VFLT4_s47_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/05e0f16de814535edd1d302e45fd3c/tih_rna_sample_00274_23H5VFLT4_s14.read_distribution.txt 1743/tih_rna_sample_00274_23H5VFLT4_s14.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/1128ff616661635ec27aca15d8f1e0/tih_rna_sample_00396_23H5VFLT4_s26.infer_experiment.txt 952/tih_rna_sample_00396_23H5VFLT4_s26.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ee/2db0aab5cf1e2c60ede6c8f5f51567/V4_0001_RNA_0005_23H5VFLT4_s20_preseq_mqc.tsv 2274/V4_0001_RNA_0005_23H5VFLT4_s20_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/9aa8be54d31ae434132117b6c161c2/tih_rna_sample_00088_23H5VFLT4_s02_trimmed_1_fastqc.zip 385/tih_rna_sample_00088_23H5VFLT4_s02_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/78a184e0f664fa62198243a1834147/V4_0001_RNA_0005_23H5VFLT4_s03.inner_distance_freq.txt 852/V4_0001_RNA_0005_23H5VFLT4_s03.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/e8c9a0cbe0a7353e76b33ac1793d7f/V4_0001_RNA_0005_23H5VFLT4_s34.ReadsPerGene.out.tab 749/V4_0001_RNA_0005_23H5VFLT4_s34.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/3e0a273678c3c961b74b88e56f3020/tih_rna_sample_00111_23H5VFLT4_s30_trimmed_1_fastqc.zip 203/tih_rna_sample_00111_23H5VFLT4_s30_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4d/b879e3148429fa75644c321afc7d41/V4_0001_RNA_0005_23H5VFLT4_s39.fastp.json 17/V4_0001_RNA_0005_23H5VFLT4_s39.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a2/c2948771bc2652fca72046f3e18df5/tih_rna_sample_00410_23H5VFLT4_s34.junction_annotation.log 1368/tih_rna_sample_00410_23H5VFLT4_s34.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8e/a81d8600bf9d5337c2f190ddf8ca0a/V4_0001_RNA_0005_23H5VFLT4_s20.fastp.html 122/V4_0001_RNA_0005_23H5VFLT4_s20.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/31/b429fd6c4862f9016757a88d451344/V4_0001_RNA_0005_23H5VFLT4_s13.infer_experiment.txt 955/V4_0001_RNA_0005_23H5VFLT4_s13.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/c3c0f22cb663eaa30db05b240572e1/V4_0001_RNA_0005_23H5VFLT4_s35.md.bam.metrics 1840/V4_0001_RNA_0005_23H5VFLT4_s35.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/f872f08bc4b6e8224797d310ad7b8f/V4_0001_RNA_0005_23H5VFLT4_s39.pos.DupRate.xls 1565/V4_0001_RNA_0005_23H5VFLT4_s39.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/1f10274d21df1084e8c1de68bb9e2b/tih_rna_sample_00118_23H5VFLT4_s38_contamination_mqc.tsv 1296/tih_rna_sample_00118_23H5VFLT4_s38_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/84757ca0c09a7926d89a4f8719df31/tih_rna_sample_00104_23H5VFLT4_s20_preseq_mqc.tsv 2215/tih_rna_sample_00104_23H5VFLT4_s20_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/95f32b54d4239ab0304e201e1c804b/V4_0001_RNA_0005_23H5VFLT4_s01.bam_stat.txt 1518/V4_0001_RNA_0005_23H5VFLT4_s01.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f/.command.sh .command.sh")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/a0019b75eae7f14e941f7d9c76eabc/tih_rna_sample_00400_23H5VFLT4_s27.Log.final.out 658/tih_rna_sample_00400_23H5VFLT4_s27.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/a4c16195ec83b4f6564c77930c7d54/tih_rna_sample_00088_23H5VFLT4_s02.inner_distance_freq.txt 863/tih_rna_sample_00088_23H5VFLT4_s02.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/2c89dac075c0c3bdd3256325a2fb28/V4_0001_RNA_0005_23H5VFLT4_s19.junctionSaturation_plot.r 1199/V4_0001_RNA_0005_23H5VFLT4_s19.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b3/d79f6bcbab235e2d1ad50501ec4c3c/tih_rna_sample_00121_23H5VFLT4_s41.md.bam.metrics 1869/tih_rna_sample_00121_23H5VFLT4_s41.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b3/365f67e6d15bf6996459efa4738dfa/V4_0001_RNA_0005_23H5VFLT4_s33.md.bam.metrics 1871/V4_0001_RNA_0005_23H5VFLT4_s33.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a7/886c5cbfdfec3b5c54e0b35f751cc0/tih_rna_sample_00274_23H5VFLT4_s14.bam_stat.txt 1456/tih_rna_sample_00274_23H5VFLT4_s14.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b5/082523a018989e8853476b54626fdc/tih_rna_sample_00419_23H5VFLT4_s44.attempt2.command.log 2109/tih_rna_sample_00419_23H5VFLT4_s44.attempt2.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/196ced096ffe883632d7bcdd74b6a9/tih_rna_sample_00089_23H5VFLT4_s39.read_distribution.txt 1795/tih_rna_sample_00089_23H5VFLT4_s39.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/9c8a67a72ecb3704f6aa96340c265f/V4_0001_RNA_0005_23H5VFLT4_s03.log 482/V4_0001_RNA_0005_23H5VFLT4_s03.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/e89ada6ca666200e669ba74b93ff7e/V4_0001_RNA_0005_23H5VFLT4_s04_2_fastqc.zip 1078/V4_0001_RNA_0005_23H5VFLT4_s04_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/4faca6b703e8639dd91f6829d20cad/tih_rna_sample_00097_23H5VFLT4_s12_contamination_mqc.tsv 1285/tih_rna_sample_00097_23H5VFLT4_s12_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/e5075fb8ca69a8f5615e3761216659/V4_0001_RNA_0005_23H5VFLT4_s31_kallisto_mqc.tsv 571/V4_0001_RNA_0005_23H5VFLT4_s31_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/9bbad8a7d55daaac9dffb120d21986/GM24385_0001_RNA_0001_23H5VFLT4_s24.pos.DupRate.xls 1554/GM24385_0001_RNA_0001_23H5VFLT4_s24.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/f419cc14b8b5af7cc42d7b4a43a530/GM24385_0001_RNA_0001_23H5VFLT4_s08.md.bam.metrics 1874/GM24385_0001_RNA_0001_23H5VFLT4_s08.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/bc3028691f7bd8856eb631236d37af/tih_rna_sample_00419_23H5VFLT4_s44_contamination_mqc.tsv 1299/tih_rna_sample_00419_23H5VFLT4_s44_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/f12c3393f4413332269c1cf6a6bad9/tih_rna_sample_00280_23H5VFLT4_s18.lc_extrap.txt 2161/tih_rna_sample_00280_23H5VFLT4_s18.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/a40e35d456fef9857b3206be5b3f6b/V4_0001_RNA_0005_23H5VFLT4_s25.junctionSaturation_plot.r 1230/V4_0001_RNA_0005_23H5VFLT4_s25.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/14/e61b0fdbdd412317543c9dd62806f1/V4_0001_RNA_0005_23H5VFLT4_s45_contamination_mqc.tsv 1328/V4_0001_RNA_0005_23H5VFLT4_s45_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/5e9a9764b597875d3ad1c56c6e089d/V4_0001_RNA_0005_23H5VFLT4_s34_seqtool_mqc.tsv 2008/V4_0001_RNA_0005_23H5VFLT4_s34_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/bec567ebd15bd0be6a6f94acec1464/tih_rna_sample_00407_23H5VFLT4_s33.fastp.html 138/tih_rna_sample_00407_23H5VFLT4_s33.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/42/bfc79753b7c3f4f2b3f556a774e129/tih_rna_sample_00088_23H5VFLT4_s02.junctionSaturation_plot.r 1237/tih_rna_sample_00088_23H5VFLT4_s02.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/de95d835aa211975bcd120898b0c4f/V4_0001_RNA_0005_23H5VFLT4_s47_combined_fusions_arriba_visualisation.pdf 2339/V4_0001_RNA_0005_23H5VFLT4_s47_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/82c9408b4fa4eaf412bd29c4d669c5/V4_0001_RNA_0005_23H5VFLT4_s37_rseqc_extra_mqc.tsv 1657/V4_0001_RNA_0005_23H5VFLT4_s37_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/abc28b0998dcf289ea4156023da17d/tih_rna_sample_00115_23H5VFLT4_s35.fastp.json 18/tih_rna_sample_00115_23H5VFLT4_s35.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/2b95b2fb36b811675c667969eba717/V4_0001_RNA_0005_23H5VFLT4_s06_contamination_mqc.tsv 1289/V4_0001_RNA_0005_23H5VFLT4_s06_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/e58480760474feabeafc7461d569d8/tih_rna_sample_00096_23H5VFLT4_s11_rseqc_extra_mqc.tsv 1678/tih_rna_sample_00096_23H5VFLT4_s11_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c4/d3a732d2e84831f3a38d542ee18542/tih_rna_sample_00097_23H5VFLT4_s12.md.bam.metrics 1913/tih_rna_sample_00097_23H5VFLT4_s12.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/658f48552527f103e7aa6896b45fe2/GM24385_0001_RNA_0001_23H5VFLT4_s16_preseq_mqc.tsv 2265/GM24385_0001_RNA_0001_23H5VFLT4_s16_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/7bf3fe7182b546cbaf775d38b6506e/GM24385_0001_RNA_0001_23H5VFLT4_s16_kallisto_mqc.tsv 573/GM24385_0001_RNA_0001_23H5VFLT4_s16_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/180e2c29e998573fa7192becedeb8c/V4_0001_RNA_0005_23H5VFLT4_s41.log 422/V4_0001_RNA_0005_23H5VFLT4_s41.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/00/4f9d3cec760ebe35e41eee75800bd0/tih_rna_sample_00096_23H5VFLT4_s11.junctionSaturation_plot.r 1211/tih_rna_sample_00096_23H5VFLT4_s11.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/fb8b63c959e707cd176ed0cb66dbf1/V4_0001_RNA_0005_23H5VFLT4_s07_2_fastqc.zip 1008/V4_0001_RNA_0005_23H5VFLT4_s07_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/4fc13d156d19b230bcd92994897eee/V4_0001_RNA_0005_23H5VFLT4_s44_preseq_mqc.tsv 2260/V4_0001_RNA_0005_23H5VFLT4_s44_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/43c844852623b59b2035ae20465561/tih_rna_sample_00425_23H5VFLT4_s46_kallisto_mqc.tsv 495/tih_rna_sample_00425_23H5VFLT4_s46_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/848994adb3b54f9d7976b2328dda9d/tih_rna_sample_00090_23H5VFLT4_s32_contamination_mqc.tsv 1324/tih_rna_sample_00090_23H5VFLT4_s32_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/84cfa31c3185aab36b449b3fc202c6/tih_rna_sample_00377_23H5VFLT4_s23_trimmed_1_fastqc.zip 329/tih_rna_sample_00377_23H5VFLT4_s23_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/917f3c775bbb8d43c92fc115cfd8b9/V4_0001_RNA_0005_23H5VFLT4_s13.fastp.html 176/V4_0001_RNA_0005_23H5VFLT4_s13.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/14/2a1fdd7da80a03f4befdf040628fe8/V4_0001_RNA_0005_23H5VFLT4_s11.attempt1.command.log 2044/V4_0001_RNA_0005_23H5VFLT4_s11.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/759399db927d0087b5097b2d8c6189/tih_rna_sample_00116_23H5VFLT4_s36_preseq_mqc.tsv 2234/tih_rna_sample_00116_23H5VFLT4_s36_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c1/5063d5996f129e6970daf62df8b7bd/V4_0001_RNA_0005_23H5VFLT4_s29.fastp.json 46/V4_0001_RNA_0005_23H5VFLT4_s29.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e8/45245664919031ed54613c617af862/V4_0001_RNA_0005_23H5VFLT4_s02_seqtool_mqc.tsv 1967/V4_0001_RNA_0005_23H5VFLT4_s02_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/05/582e2dcea99509a39418eb8430af47/tih_rna_sample_00251_23H5VFLT4_s03.junctionSaturation_plot.r 1192/tih_rna_sample_00251_23H5VFLT4_s03.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/51a712244b7c7b14f7bc17ff052779/tih_rna_sample_00116_23H5VFLT4_s36.pos.DupRate.xls 1593/tih_rna_sample_00116_23H5VFLT4_s36.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cb/b319c2b4345cfa4729db43cc323287/V4_0001_RNA_0005_23H5VFLT4_s15_trimmed_1_fastqc.zip 245/V4_0001_RNA_0005_23H5VFLT4_s15_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a1/b60f8568d86f03e58780ebd50be38f/tih_rna_sample_00163_23H5VFLT4_s43.log 416/tih_rna_sample_00163_23H5VFLT4_s43.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/f1a3b3c05c1f78a8b127272dc9a2f2/tih_rna_sample_00261_23H5VFLT4_s06.infer_experiment.txt 956/tih_rna_sample_00261_23H5VFLT4_s06.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/8d2f326dcef5266a4c3c9a8b2b44a3/tih_rna_sample_00420_23H5VFLT4_s45_trimmed_2_fastqc.zip 212/tih_rna_sample_00420_23H5VFLT4_s45_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/3e4ccf268982b918be69a640a3d2ed/tih_rna_sample_00261_23H5VFLT4_s06.inner_distance_freq.txt 850/tih_rna_sample_00261_23H5VFLT4_s06.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/823fe54337eaacefc725b20348c2a6/V4_0001_RNA_0001_23H5VFLT4_s13_trimmed_1_fastqc.zip 357/V4_0001_RNA_0001_23H5VFLT4_s13_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/63/4333b9e386c58e8e3e6b091d228af2/tih_rna_sample_00280_23H5VFLT4_s18_contamination_mqc.tsv 1345/tih_rna_sample_00280_23H5VFLT4_s18_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/fd8da39a94afbc30a84ba08be08f87/tih_rna_sample_00280_23H5VFLT4_s18_preseq_mqc.tsv 2257/tih_rna_sample_00280_23H5VFLT4_s18_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/d25f01cf6d0aafa792e3408e67e870/tih_rna_sample_00097_23H5VFLT4_s12_2_fastqc.zip 1116/tih_rna_sample_00097_23H5VFLT4_s12_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/42a378f71d2a0d1f2d40d3bed6d230/tih_rna_sample_00280_23H5VFLT4_s18_seqtool_mqc.tsv 1999/tih_rna_sample_00280_23H5VFLT4_s18_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/8a1517db7df49903e60ade18018203/V4_0001_RNA_0005_23H5VFLT4_s17_rseqc_extra_mqc.tsv 1677/V4_0001_RNA_0005_23H5VFLT4_s17_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/cb48c63e8dae5a5ca1ab313629a04c/tih_rna_sample_00377_23H5VFLT4_s23_kallisto_mqc.tsv 510/tih_rna_sample_00377_23H5VFLT4_s23_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/75def4181a0af2faa75dfd1ebb69a1/tih_rna_sample_00118_23H5VFLT4_s38.ReadsPerGene.out.tab 716/tih_rna_sample_00118_23H5VFLT4_s38.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/af/cc88f6802f8d4519a6e13bb979a7ea/V4_0001_RNA_0005_23H5VFLT4_s11_rseqc_extra_mqc.tsv 1705/V4_0001_RNA_0005_23H5VFLT4_s11_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4e/6eeeabf920f8551d51ef39b15dce3d/tih_rna_sample_00122_23H5VFLT4_s42_rseqc_extra_mqc.tsv 1639/tih_rna_sample_00122_23H5VFLT4_s42_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/eb8bb1b1c34b4420519fd59d678cfe/GM24385_0001_RNA_0001_23H5VFLT4_s32_rseqc_extra_mqc.tsv 1652/GM24385_0001_RNA_0001_23H5VFLT4_s32_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/b23d1a13012db4814587280bf1c613/V4_0001_RNA_0005_23H5VFLT4_s37_combined_fusions_arriba_visualisation.pdf 2324/V4_0001_RNA_0005_23H5VFLT4_s37_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9b/6f807252f8de04dd22c13bd640cd49/V4_0001_RNA_0005_23H5VFLT4_s28.inner_distance_freq.txt 784/V4_0001_RNA_0005_23H5VFLT4_s28.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/ef9d2891b336a171bb5d868314da36/tih_rna_sample_00218_23H5VFLT4_s10_1_fastqc.zip 1069/tih_rna_sample_00218_23H5VFLT4_s10_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/89943bcaab51583123c98572643df0/tih_rna_sample_00251_23H5VFLT4_s03.fastp.html 148/tih_rna_sample_00251_23H5VFLT4_s03.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/d3c8b7a1f2ea8fd8179ac67237b186/tih_rna_sample_00127_23H5VFLT4_s08_kallisto_mqc.tsv 492/tih_rna_sample_00127_23H5VFLT4_s08_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/724734e6cd5e4890ec32859282458f/tih_rna_sample_00090_23H5VFLT4_s32.junctionSaturation_plot.r 1223/tih_rna_sample_00090_23H5VFLT4_s32.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/e6c6450095da5c713b3607618edca6/V4_0001_RNA_0005_23H5VFLT4_s43.read_distribution.txt 1754/V4_0001_RNA_0005_23H5VFLT4_s43.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/eb/fd356ef9d941ad311c780c3e73fced/V4_0001_RNA_0005_23H5VFLT4_s46_seqtool_mqc.tsv 1943/V4_0001_RNA_0005_23H5VFLT4_s46_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/f3cc12d3bf3486fcde094e1f221ef9/V4_0001_RNA_0005_23H5VFLT4_s09_trimmed_1_fastqc.zip 319/V4_0001_RNA_0005_23H5VFLT4_s09_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/5b345e065ae23f91c18de0424aa43c/V4_0001_RNA_0005_23H5VFLT4_s28.Log.final.out 592/V4_0001_RNA_0005_23H5VFLT4_s28.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/bfb504eb9eab52c1df33d414a2b0b9/tih_rna_sample_00422_23H5VFLT4_s47.pos.DupRate.xls 1541/tih_rna_sample_00422_23H5VFLT4_s47.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/af9921ea01292f72b5806b69131119/tih_rna_sample_00115_23H5VFLT4_s35.infer_experiment.txt 881/tih_rna_sample_00115_23H5VFLT4_s35.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9a/10bc8dbff6ebc0f9ed88cd65beaa6a/tih_rna_sample_00407_23H5VFLT4_s33.read_distribution.txt 1753/tih_rna_sample_00407_23H5VFLT4_s33.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/d8aa452169718826cc96ee59610bb0/tih_rna_sample_00117_23H5VFLT4_s37.log 395/tih_rna_sample_00117_23H5VFLT4_s37.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/0aa90794e9df9513e9c04ad43b5cfb/tih_rna_sample_00163_23H5VFLT4_s43.ReadsPerGene.out.tab 768/tih_rna_sample_00163_23H5VFLT4_s43.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c7/5becff433155268ae9c6029f0f2ce9/V4_0001_RNA_0005_23H5VFLT4_s45.inner_distance_freq.txt 840/V4_0001_RNA_0005_23H5VFLT4_s45.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5f/e73a9a86812c016518cfcde54fecae/tih_rna_sample_00403_23H5VFLT4_s29_seqtool_mqc.tsv 1953/tih_rna_sample_00403_23H5VFLT4_s29_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/fa2fe48db10048383ff484809a1d1e/V4_0001_RNA_0005_23H5VFLT4_s25_2_fastqc.zip 1154/V4_0001_RNA_0005_23H5VFLT4_s25_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/32247352128cdcd0248d5b2f530351/tih_rna_sample_00111_23H5VFLT4_s30_contamination_mqc.tsv 1256/tih_rna_sample_00111_23H5VFLT4_s30_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9c/457c588de677112375571449c6b13b/GM24385_0001_RNA_0001_23H5VFLT4_s08.junctionSaturation_plot.r 1204/GM24385_0001_RNA_0001_23H5VFLT4_s08.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/fc8908a3128886af05ab1c869a69cf/tih_rna_sample_00111_23H5VFLT4_s30.pos.DupRate.xls 1543/tih_rna_sample_00111_23H5VFLT4_s30.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/c302bbd27ec0b4c1bf89163e06cc3b/V4_0001_RNA_0005_23H5VFLT4_s30.infer_experiment.txt 884/V4_0001_RNA_0005_23H5VFLT4_s30.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/18/b13afddde5b46d0102755d2d34084f/tih_rna_sample_00163_23H5VFLT4_s43_kallisto_mqc.tsv 512/tih_rna_sample_00163_23H5VFLT4_s43_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/7206b263b2255804b85e8d497aa904/V4_0001_RNA_0005_23H5VFLT4_s28.pos.DupRate.xls 1624/V4_0001_RNA_0005_23H5VFLT4_s28.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/604937739b5bf0cef8afcbfb88c50b/GM24385_0001_RNA_0001_23H5VFLT4_s16.fastp.html 151/GM24385_0001_RNA_0001_23H5VFLT4_s16.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/ced7d2f2c583c375645eefdfd9bf66/tih_rna_sample_00088_23H5VFLT4_s02_2_fastqc.zip 1140/tih_rna_sample_00088_23H5VFLT4_s02_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/59030f3652eff83d2f8004a3e244fe/tih_rna_sample_00088_23H5VFLT4_s02.fastp.html 191/tih_rna_sample_00088_23H5VFLT4_s02.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/dc12b782e9d089be1ac2f38b0e98c1/V4_0001_RNA_0005_23H5VFLT4_s17_trimmed_2_fastqc.zip 258/V4_0001_RNA_0005_23H5VFLT4_s17_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/1eacbd5835dadbbce3dd8d0f8eff44/tih_rna_sample_00105_23H5VFLT4_s21.read_distribution.txt 1732/tih_rna_sample_00105_23H5VFLT4_s21.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/57274a168da1b35c59dcd2390b3b23/V4_0001_RNA_0005_23H5VFLT4_s35_trimmed_1_fastqc.zip 229/V4_0001_RNA_0005_23H5VFLT4_s35_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/f48001742b113358446b93d368bbfe/GM24385_0001_RNA_0001_23H5VFLT4_s16.log 477/GM24385_0001_RNA_0001_23H5VFLT4_s16.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/004f37ed3faaefc86ff6d2ddcf9a37/tih_rna_sample_00124_23H5VFLT4_s31.ReadsPerGene.out.tab 764/tih_rna_sample_00124_23H5VFLT4_s31.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/6ff4092dd52ec3d8c9234b96f1d6b6/tih_rna_sample_00117_23H5VFLT4_s37.ReadsPerGene.out.tab 687/tih_rna_sample_00117_23H5VFLT4_s37.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/f759eaa843c9d8de094e47223c7a6d/V4_0001_RNA_0005_23H5VFLT4_s41.bam_stat.txt 1472/V4_0001_RNA_0005_23H5VFLT4_s41.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/f028bffa1cc8510327b17523448a8f/tih_rna_sample_00124_23H5VFLT4_s31.junction_annotation.log 1410/tih_rna_sample_00124_23H5VFLT4_s31.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bd/0508012c90323831899a05b99898ce/GM24385_0001_RNA_0001_23H5VFLT4_s08.junction_annotation.log 1406/GM24385_0001_RNA_0001_23H5VFLT4_s08.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/dbdf4c843eec4764154870cda519a1/tih_rna_sample_00261_23H5VFLT4_s06.pos.DupRate.xls 1615/tih_rna_sample_00261_23H5VFLT4_s06.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/060e1cd55106ba843ffd707299ac79/tih_rna_sample_00090_23H5VFLT4_s32.bam_stat.txt 1519/tih_rna_sample_00090_23H5VFLT4_s32.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/ba2ebf3ee483dc4db92cc48783dfbc/V4_0001_RNA_0005_23H5VFLT4_s46_trimmed_2_fastqc.zip 232/V4_0001_RNA_0005_23H5VFLT4_s46_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/03cfc4207eb002aeb18f46e1cc3627/GM24385_0001_RNA_0001_23H5VFLT4_s32.Log.final.out 600/GM24385_0001_RNA_0001_23H5VFLT4_s32.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/394e9390e7429ce33981fa996d9b40/tih_rna_sample_00218_23H5VFLT4_s10.md.bam.metrics 1862/tih_rna_sample_00218_23H5VFLT4_s10.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7c/41a2b35cdac890dc2ab1391f1b2dfc/V4_0001_RNA_0005_23H5VFLT4_s25.lc_extrap.txt 2204/V4_0001_RNA_0005_23H5VFLT4_s25.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/b8d25ee4584f3804f2d8996453b996/V4_0001_RNA_0005_23H5VFLT4_s35_preseq_mqc.tsv 2225/V4_0001_RNA_0005_23H5VFLT4_s35_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/e39cd20b3006118254265ca4f36b0c/V4_0001_RNA_0005_23H5VFLT4_s23.pos.DupRate.xls 1621/V4_0001_RNA_0005_23H5VFLT4_s23.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/ae1901df813e810076f9283a58181d/V4_0001_RNA_0005_23H5VFLT4_s20.lc_extrap.txt 2178/V4_0001_RNA_0005_23H5VFLT4_s20.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/ebcb08846e3b3e6548e61cfa30a0b0/V4_0001_RNA_0005_23H5VFLT4_s12.pos.DupRate.xls 1588/V4_0001_RNA_0005_23H5VFLT4_s12.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/575ac2fc5af7ecc568e72582ca0436/tih_rna_sample_00254_23H5VFLT4_s05_seqtool_mqc.tsv 2013/tih_rna_sample_00254_23H5VFLT4_s05_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/409a9c339c0157f9154348c0cec8b4/V4_0001_RNA_0005_23H5VFLT4_s03.infer_experiment.txt 946/V4_0001_RNA_0005_23H5VFLT4_s03.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/05afbc55b3c942bfba67aaf818c94b/V4_0001_RNA_0005_23H5VFLT4_s35.fastp.html 143/V4_0001_RNA_0005_23H5VFLT4_s35.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3d/12e48f9f99193ba1d2b11ca6e4e8fd/V4_0001_RNA_0005_23H5VFLT4_s28_kallisto_mqc.tsv 498/V4_0001_RNA_0005_23H5VFLT4_s28_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/9d2c3a2c5e1f9aa38a97631ca2c723/V4_0001_RNA_0005_23H5VFLT4_s44.junction_annotation.log 1413/V4_0001_RNA_0005_23H5VFLT4_s44.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/9fe44574f98735321ecfd80b14a1ed/HD789_0002_RNA_0008_23H5VFLT4_s19.bam_stat.txt 1524/HD789_0002_RNA_0008_23H5VFLT4_s19.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/59030f3652eff83d2f8004a3e244fe/tih_rna_sample_00088_23H5VFLT4_s02.fastp.json 95/tih_rna_sample_00088_23H5VFLT4_s02.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/a7db43971e19eddd61d74c08320eff/V4_0001_RNA_0005_23H5VFLT4_s19_rseqc_extra_mqc.tsv 1697/V4_0001_RNA_0005_23H5VFLT4_s19_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2e/ee8f8da388eb3a90fc1331fd4de915/V4_0001_RNA_0005_23H5VFLT4_s30.attempt1.command.log 2050/V4_0001_RNA_0005_23H5VFLT4_s30.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/52/f74eb360cccd39860a80d034522de5/GM24385_0001_RNA_0001_23H5VFLT4_s16_rseqc_extra_mqc.tsv 1673/GM24385_0001_RNA_0001_23H5VFLT4_s16_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/93/b2831809b83d380842d498cd4a0f60/V4_0001_RNA_0005_23H5VFLT4_s38.fastp.html 156/V4_0001_RNA_0005_23H5VFLT4_s38.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/e523e91b82ddaccd4187265d42f256/V4_0001_RNA_0005_23H5VFLT4_s47.lc_extrap.txt 2191/V4_0001_RNA_0005_23H5VFLT4_s47.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/708828745aa92ea96e9a7231bb51c7/tih_rna_sample_00105_23H5VFLT4_s21.ReadsPerGene.out.tab 677/tih_rna_sample_00105_23H5VFLT4_s21.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/3c7f77306d2480073563f7f38a7816/V4_0001_RNA_0001_23H5VFLT4_s13_combined_fusions_arriba_visualisation.pdf 2387/V4_0001_RNA_0001_23H5VFLT4_s13_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/ab29bf358c6d79ae8043849f6364ae/V4_0001_RNA_0005_23H5VFLT4_s47.junction_annotation.log 1437/V4_0001_RNA_0005_23H5VFLT4_s47.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/02/6091d60f65831710091d0be5705763/tih_rna_sample_00124_23H5VFLT4_s31.md.bam.metrics 1899/tih_rna_sample_00124_23H5VFLT4_s31.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/91/a598cdd858fa14bc6e14d8f212dfa9/tih_rna_sample_00388_23H5VFLT4_s22_seqtool_mqc.tsv 2010/tih_rna_sample_00388_23H5VFLT4_s22_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7d/ef9ff826ee68a87f6ed90e67d246f9/V4_0001_RNA_0005_23H5VFLT4_s34_combined_fusions_arriba_visualisation.pdf 2381/V4_0001_RNA_0005_23H5VFLT4_s34_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/97605947c90af41c8e0c5fad99ea34/V4_0001_RNA_0005_23H5VFLT4_s07_trimmed_1_fastqc.zip 239/V4_0001_RNA_0005_23H5VFLT4_s07_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/63/48a7a323c5513de228f60d0954f3df/V4_0001_RNA_0005_23H5VFLT4_s29.infer_experiment.txt 891/V4_0001_RNA_0005_23H5VFLT4_s29.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/aa/7a5990647d808b7a873c7daf1a3d9d/V4_0001_RNA_0005_23H5VFLT4_s27_combined_fusions_arriba_visualisation.pdf 2364/V4_0001_RNA_0005_23H5VFLT4_s27_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6b/0b36803f3ebb5787f8dc72659321e3/tih_rna_sample_00414_23H5VFLT4_s40.fastp.html 149/tih_rna_sample_00414_23H5VFLT4_s40.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/23/e99c9089d36e5d767cb9ea3fed4d3c/V4_0001_RNA_0005_23H5VFLT4_s42.Log.final.out 614/V4_0001_RNA_0005_23H5VFLT4_s42.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/f03dc8e47861086a188de2deb10ac4/tih_rna_sample_00122_23H5VFLT4_s42.log 398/tih_rna_sample_00122_23H5VFLT4_s42.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/fb72968d53bcd7486e6f8853c4e4b9/tih_rna_sample_00111_23H5VFLT4_s30.infer_experiment.txt 872/tih_rna_sample_00111_23H5VFLT4_s30.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ea/7d4cf9a69da2d00bc38b19be96dda2/NTC_0001_0001_23H5VFLT4_s15.log 387/NTC_0001_0001_23H5VFLT4_s15.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/7a742d5d93556190e2bca81364d95a/tih_rna_sample_00105_23H5VFLT4_s21_rseqc_extra_mqc.tsv 1637/tih_rna_sample_00105_23H5VFLT4_s21_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/471267bd129f5092abd53d9a7992a8/V4_0001_RNA_0001_23H5VFLT4_s13_rseqc_extra_mqc.tsv 1692/V4_0001_RNA_0001_23H5VFLT4_s13_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/03644bbcccceb5ba8e7f58b481b18e/V4_0001_RNA_0005_23H5VFLT4_s15.Log.final.out 606/V4_0001_RNA_0005_23H5VFLT4_s15.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a3/78faf8044f03dc2902c1a33dd70a47/tih_rna_sample_00410_23H5VFLT4_s34_trimmed_2_fastqc.zip 242/tih_rna_sample_00410_23H5VFLT4_s34_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/34/9e229e5808f18f38f1c14fb48ff904/GM24385_0001_RNA_0001_23H5VFLT4_s24.lc_extrap.txt 2132/GM24385_0001_RNA_0001_23H5VFLT4_s24.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/70/5fa1e145a26f2ab2389327d2249479/V4_0001_RNA_0005_23H5VFLT4_s41.ReadsPerGene.out.tab 709/V4_0001_RNA_0005_23H5VFLT4_s41.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1a/b36861446e3675aad11da3bfeb924b/tih_rna_sample_00420_23H5VFLT4_s45.junctionSaturation_plot.r 1165/tih_rna_sample_00420_23H5VFLT4_s45.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/08e8f4ebcf11c8a69267a73c0fd890/GM24385_0001_RNA_0001_23H5VFLT4_s48_combined_fusions_arriba_visualisation.pdf 2308/GM24385_0001_RNA_0001_23H5VFLT4_s48_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d6/ec315ed4a7a6f4379f1073b7b0f181/tih_rna_sample_00420_23H5VFLT4_s45.pos.DupRate.xls 1546/tih_rna_sample_00420_23H5VFLT4_s45.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ce/455edd083554fa563e5009ccb5f29f/tih_rna_sample_00414_23H5VFLT4_s40_combined_fusions_arriba_visualisation.pdf 2358/tih_rna_sample_00414_23H5VFLT4_s40_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/54cef9b2f4d417657a1be6e4a927b5/tih_rna_sample_00252_23H5VFLT4_s04.pos.DupRate.xls 1598/tih_rna_sample_00252_23H5VFLT4_s04.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/ef472e79025d3f5ae0423579c45967/V4_0001_RNA_0005_23H5VFLT4_s41_preseq_mqc.tsv 2299/V4_0001_RNA_0005_23H5VFLT4_s41_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/3ebc0b391e35b631d875cf22020d72/tih_rna_sample_00261_23H5VFLT4_s06.bam_stat.txt 1495/tih_rna_sample_00261_23H5VFLT4_s06.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/be/aea5c7924dae6272a624f82c4159cd/V4_0001_RNA_0005_23H5VFLT4_s25_contamination_mqc.tsv 1305/V4_0001_RNA_0005_23H5VFLT4_s25_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/d2fc61ea62573c26c079ebddbc1763/tih_rna_sample_00419_23H5VFLT4_s44.pos.DupRate.xls 1591/tih_rna_sample_00419_23H5VFLT4_s44.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/d0d2645730e8d745aef0e1d2eee4ca/V4_0001_RNA_0005_23H5VFLT4_s20.infer_experiment.txt 906/V4_0001_RNA_0005_23H5VFLT4_s20.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/4661e2a2ce2f7e07e648a82a63ea73/V4_0001_RNA_0005_23H5VFLT4_s31.md.bam.metrics 1893/V4_0001_RNA_0005_23H5VFLT4_s31.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/89/1a567cb03d2ed6180fad016e38a016/V4_0001_RNA_0005_23H5VFLT4_s13_trimmed_1_fastqc.zip 377/V4_0001_RNA_0005_23H5VFLT4_s13_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b7/51bd193d442ae86570083bea8ce863/tih_rna_sample_00261_23H5VFLT4_s06.Log.final.out 659/tih_rna_sample_00261_23H5VFLT4_s06.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/a1fd89a104a44c1f0da35e0ca865be/tih_rna_sample_00378_23H5VFLT4_s24_trimmed_1_fastqc.zip 201/tih_rna_sample_00378_23H5VFLT4_s24_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/7593fafd028db60f07a030fcc441c2/tih_rna_sample_00410_23H5VFLT4_s34.pos.DupRate.xls 1562/tih_rna_sample_00410_23H5VFLT4_s34.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/dcf32795dd7a413a2e421829b6d22e/V4_0001_RNA_0005_23H5VFLT4_s05_1_fastqc.zip 1041/V4_0001_RNA_0005_23H5VFLT4_s05_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/73b5021326a8cf2893927e863f15de/V4_0001_RNA_0005_23H5VFLT4_s11.fastp.html 153/V4_0001_RNA_0005_23H5VFLT4_s11.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/38/7cd2061c1c16e215b06cb192370845/tih_rna_sample_00115_23H5VFLT4_s35.ReadsPerGene.out.tab 689/tih_rna_sample_00115_23H5VFLT4_s35.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/9c77f470d5a6266c6274321e317d36/V4_0001_RNA_0005_23H5VFLT4_s12.infer_experiment.txt 949/V4_0001_RNA_0005_23H5VFLT4_s12.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cf/4229d332a45e70b9474aec44c47787/V4_0001_RNA_0005_23H5VFLT4_s01_trimmed_1_fastqc.zip 375/V4_0001_RNA_0005_23H5VFLT4_s01_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/0cfc6f1054b56d5622bc65e3841327/tih_rna_sample_00252_23H5VFLT4_s04.log 449/tih_rna_sample_00252_23H5VFLT4_s04.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/641ddd8ae412a8e517199650298fde/tih_rna_sample_00090_23H5VFLT4_s32_trimmed_2_fastqc.zip 352/tih_rna_sample_00090_23H5VFLT4_s32_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cc/75b781d925b7f7aaba8caffade0c87/tih_rna_sample_00426_23H5VFLT4_s48_1_fastqc.zip 1057/tih_rna_sample_00426_23H5VFLT4_s48_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/61355b13c9c770a73a51b901c322f9/tih_rna_sample_00272_23H5VFLT4_s09.pos.DupRate.xls 1627/tih_rna_sample_00272_23H5VFLT4_s09.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5b/a505f27069ab82735fe37255f18623/GM24385_0001_RNA_0001_23H5VFLT4_s24.infer_experiment.txt 885/GM24385_0001_RNA_0001_23H5VFLT4_s24.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/stage-5b456d70-fab3-4fcc-916c-bc437f411fba/e8/976e82571f649d0e9890cab5d1caf0/multiqc_config.yml multiqc_config.yml")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/e40ee366f6345a74af018fbbb6efcb/V4_0001_RNA_0005_23H5VFLT4_s30_kallisto_mqc.tsv 517/V4_0001_RNA_0005_23H5VFLT4_s30_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/44cd3bcb5bb0221a31b7db751a2182/tih_rna_sample_00251_23H5VFLT4_s03_kallisto_mqc.tsv 543/tih_rna_sample_00251_23H5VFLT4_s03_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/05/42598fc183ee373bdf5489a2f0e7df/V4_0001_RNA_0005_23H5VFLT4_s46_1_fastqc.zip 1013/V4_0001_RNA_0005_23H5VFLT4_s46_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/2f292d42ee89983d3c4b17e416f3bd/tih_rna_sample_00088_23H5VFLT4_s02.infer_experiment.txt 958/tih_rna_sample_00088_23H5VFLT4_s02.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/77f133c3db94db8493d2e6b9aaccc8/tih_rna_sample_00274_23H5VFLT4_s14_combined_fusions_arriba_visualisation.pdf 2312/tih_rna_sample_00274_23H5VFLT4_s14_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/e362b7751bc0e71d224e8dceaa280d/V4_0001_RNA_0005_23H5VFLT4_s07.bam_stat.txt 1474/V4_0001_RNA_0005_23H5VFLT4_s07.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/649438ab10b95488bba2d026bb3f87/tih_rna_sample_00414_23H5VFLT4_s40_trimmed_1_fastqc.zip 285/tih_rna_sample_00414_23H5VFLT4_s40_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/e8c9a0cbe0a7353e76b33ac1793d7f/V4_0001_RNA_0005_23H5VFLT4_s34.Log.final.out 653/V4_0001_RNA_0005_23H5VFLT4_s34.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/5ba226421c95c8e06a0e2c3822f069/V4_0001_RNA_0005_23H5VFLT4_s41_2_fastqc.zip 1144/V4_0001_RNA_0005_23H5VFLT4_s41_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/d8975a4483557e051631a89cb76e67/V4_0001_RNA_0005_23H5VFLT4_s37_kallisto_mqc.tsv 526/V4_0001_RNA_0005_23H5VFLT4_s37_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/75/62654f2ef01e2b6c545d8690ea9091/V4_0001_RNA_0005_23H5VFLT4_s02.md.bam.metrics 1867/V4_0001_RNA_0005_23H5VFLT4_s02.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/a7e9e293589d468996fb3655ca5bb0/tih_rna_sample_00394_23H5VFLT4_s25_trimmed_2_fastqc.zip 210/tih_rna_sample_00394_23H5VFLT4_s25_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/176862fa78d4e973d28be0036f7f21/V4_0001_RNA_0005_23H5VFLT4_s35.infer_experiment.txt 886/V4_0001_RNA_0005_23H5VFLT4_s35.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7f/8a75503528cd39447649d74ab34982/tih_rna_sample_00235_23H5VFLT4_s07_kallisto_mqc.tsv 506/tih_rna_sample_00235_23H5VFLT4_s07_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/b5c5939060561b2b1cb475e9426775/tih_rna_sample_00218_23H5VFLT4_s10_rseqc_extra_mqc.tsv 1704/tih_rna_sample_00218_23H5VFLT4_s10_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/984c75f087a5e48a074be336af81fb/tih_rna_sample_00252_23H5VFLT4_s04.lc_extrap.txt 2210/tih_rna_sample_00252_23H5VFLT4_s04.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7e/7134c46014a6adb967e67c4d9f8c0b/tih_rna_sample_00218_23H5VFLT4_s10_trimmed_1_fastqc.zip 281/tih_rna_sample_00218_23H5VFLT4_s10_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/8d93eb18c849af64ca32aa26002ab6/tih_rna_sample_00426_23H5VFLT4_s48.log 456/tih_rna_sample_00426_23H5VFLT4_s48.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4a/52fd3fa8bed33eb73ebbf2181c32c5/tih_rna_sample_00087_23H5VFLT4_s17.inner_distance_freq.txt 855/tih_rna_sample_00087_23H5VFLT4_s17.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/573f6e56a99ea03d85eb007838db97/V4_0001_RNA_0005_23H5VFLT4_s38_2_fastqc.zip 1018/V4_0001_RNA_0005_23H5VFLT4_s38_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/99/c0f9d3d870c254f451de0a8dc9dd9f/V4_0001_RNA_0005_23H5VFLT4_s37.lc_extrap.txt 2134/V4_0001_RNA_0005_23H5VFLT4_s37.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0c/d3af7535b726754422f44f5090e8bf/V4_0001_RNA_0005_23H5VFLT4_s21.attempt1.command.log 2091/V4_0001_RNA_0005_23H5VFLT4_s21.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/5d6374090482ee1a61eeca654493d4/tih_rna_sample_00422_23H5VFLT4_s47.ReadsPerGene.out.tab 676/tih_rna_sample_00422_23H5VFLT4_s47.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/37/f2b347e205bb3c7eff9ae61e4a3773/V4_0001_RNA_0005_23H5VFLT4_s17_preseq_mqc.tsv 2247/V4_0001_RNA_0005_23H5VFLT4_s17_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/95/64c18c8941b760711bf1d5e7ed3a28/HD789_0002_RNA_0008_23H5VFLT4_s19_contamination_mqc.tsv 1323/HD789_0002_RNA_0008_23H5VFLT4_s19_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a7/977c7112fa10de71556222e2563014/tih_rna_sample_00400_23H5VFLT4_s27.lc_extrap.txt 2159/tih_rna_sample_00400_23H5VFLT4_s27.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/d9f161260177a7ebfb89bf3b1dd96f/V4_0001_RNA_0005_23H5VFLT4_s03_combined_fusions_arriba_visualisation.pdf 2400/V4_0001_RNA_0005_23H5VFLT4_s03_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0e/48a2d1a74be3e18ee453fa1b687143/V4_0001_RNA_0005_23H5VFLT4_s43_kallisto_mqc.tsv 564/V4_0001_RNA_0005_23H5VFLT4_s43_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/88/a4fbfb2a655296b61b1108cc7dad47/tih_rna_sample_00378_23H5VFLT4_s24.junction_annotation.log 1350/tih_rna_sample_00378_23H5VFLT4_s24.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d9/004f37ed3faaefc86ff6d2ddcf9a37/tih_rna_sample_00124_23H5VFLT4_s31.Log.final.out 668/tih_rna_sample_00124_23H5VFLT4_s31.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6a/f661e21d2cd854862ac969e9354d3a/tih_rna_sample_00122_23H5VFLT4_s42_seqtool_mqc.tsv 1933/tih_rna_sample_00122_23H5VFLT4_s42_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/57274a168da1b35c59dcd2390b3b23/V4_0001_RNA_0005_23H5VFLT4_s35_trimmed_2_fastqc.zip 230/V4_0001_RNA_0005_23H5VFLT4_s35_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/33/07df0dba9d1cd4123f4594835ab826/tih_rna_sample_00426_23H5VFLT4_s48.junctionSaturation_plot.r 1225/tih_rna_sample_00426_23H5VFLT4_s48.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4d/b879e3148429fa75644c321afc7d41/V4_0001_RNA_0005_23H5VFLT4_s39.fastp.html 113/V4_0001_RNA_0005_23H5VFLT4_s39.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/bc070ec31e5ebfe2bd71505a8d15ce/V4_0001_RNA_0005_23H5VFLT4_s23.junctionSaturation_plot.r 1229/V4_0001_RNA_0005_23H5VFLT4_s23.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/0ec1ca42b4fcc868f628de4263dba0/tih_rna_sample_00127_23H5VFLT4_s08.junction_annotation.log 1358/tih_rna_sample_00127_23H5VFLT4_s08.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/21/0dc81532312154c8c901ef7c47ce0b/tih_rna_sample_00254_23H5VFLT4_s05_combined_fusions_arriba_visualisation.pdf 2359/tih_rna_sample_00254_23H5VFLT4_s05_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/a692f3a6886a02b66de24c5631fb6b/tih_rna_sample_00426_23H5VFLT4_s48.pos.DupRate.xls 1617/tih_rna_sample_00426_23H5VFLT4_s48.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/39/43794548178995f8ead9765d80b1ce/V4_0001_RNA_0005_23H5VFLT4_s22_1_fastqc.zip 1009/V4_0001_RNA_0005_23H5VFLT4_s22_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/8f23cb094e7784179f46c29c92a831/tih_rna_sample_00163_23H5VFLT4_s43.junctionSaturation_plot.r 1238/tih_rna_sample_00163_23H5VFLT4_s43.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f0/e0cde0f0b8c516aeb00fcd50af9d7b/V4_0001_RNA_0005_23H5VFLT4_s26.md.bam.metrics 1888/V4_0001_RNA_0005_23H5VFLT4_s26.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2f/595e1515f9be8283e1872000c8c11d/V4_0001_RNA_0005_23H5VFLT4_s37_preseq_mqc.tsv 2230/V4_0001_RNA_0005_23H5VFLT4_s37_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/76/f51abf0cd2ad686a6552a807b01994/V4_0001_RNA_0005_23H5VFLT4_s18.attempt1.command.log 2054/V4_0001_RNA_0005_23H5VFLT4_s18.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e9/f448cb106b606b624da42b70ecc978/NTC_0001_0001_23H5VFLT4_s15.md.bam.metrics 1827/NTC_0001_0001_23H5VFLT4_s15.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/3099940e0d30b8b6af42e144d665b6/V4_0001_RNA_0005_23H5VFLT4_s12_seqtool_mqc.tsv 1985/V4_0001_RNA_0005_23H5VFLT4_s12_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/51f005547222350c7ae69676f8b23d/tih_rna_sample_00111_23H5VFLT4_s30.fastp.json 7/tih_rna_sample_00111_23H5VFLT4_s30.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b1/0dec139da408a438279f770d3a7fd8/tih_rna_sample_00274_23H5VFLT4_s14_rseqc_extra_mqc.tsv 1648/tih_rna_sample_00274_23H5VFLT4_s14_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/f882f5429f8ab92f56cdac2e59de6d/tih_rna_sample_00117_23H5VFLT4_s37.md.bam.metrics 1835/tih_rna_sample_00117_23H5VFLT4_s37.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/03/8062a4c5a607dfb0e49a5ffcd82820/V4_0001_RNA_0005_23H5VFLT4_s38.attempt1.command.log 2079/V4_0001_RNA_0005_23H5VFLT4_s38.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6d/5325739b1a42eff67b3dd10d331f32/V4_0001_RNA_0005_23H5VFLT4_s41_kallisto_mqc.tsv 518/V4_0001_RNA_0005_23H5VFLT4_s41_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/3d258ec50ccc6dc7bdb190c396c306/tih_rna_sample_00089_23H5VFLT4_s39_preseq_mqc.tsv 2270/tih_rna_sample_00089_23H5VFLT4_s39_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/86/25597229ce1167a351599500250862/V4_0001_RNA_0005_23H5VFLT4_s12_preseq_mqc.tsv 2244/V4_0001_RNA_0005_23H5VFLT4_s12_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7a/4f8c76a48fd4f7b15f2167f344753a/GM24385_0001_RNA_0001_23H5VFLT4_s16_1_fastqc.zip 1061/GM24385_0001_RNA_0001_23H5VFLT4_s16_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/b28eacd79728d1474059ec55a90051/V4_0001_RNA_0005_23H5VFLT4_s35_1_fastqc.zip 995/V4_0001_RNA_0005_23H5VFLT4_s35_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/19c018679d1970ca44e597018ef5fd/V4_0001_RNA_0005_23H5VFLT4_s47.pos.DupRate.xls 1606/V4_0001_RNA_0005_23H5VFLT4_s47.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/9b7b971b747deb0aa303386acbf9ad/GM24385_0001_RNA_0001_23H5VFLT4_s08_1_fastqc.zip 1059/GM24385_0001_RNA_0001_23H5VFLT4_s08_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2d/cc445d6d06a599073d4c43a01bf1da/V4_0001_RNA_0005_23H5VFLT4_s21_preseq_mqc.tsv 2283/V4_0001_RNA_0005_23H5VFLT4_s21_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9b/b4fd56b6905690bc8ad5f2fdcdf036/tih_rna_sample_00104_23H5VFLT4_s20.pos.DupRate.xls 1544/tih_rna_sample_00104_23H5VFLT4_s20.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/9869c2faf33f5985892e5f47f68d91/V4_0001_RNA_0005_23H5VFLT4_s15_seqtool_mqc.tsv 1993/V4_0001_RNA_0005_23H5VFLT4_s15_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/a3a35375494929a96f234c2fa39af1/tih_rna_sample_00105_23H5VFLT4_s21.fastp.html 100/tih_rna_sample_00105_23H5VFLT4_s21.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/85/ec00fa9c951847b77f94a75020d775/tih_rna_sample_00115_23H5VFLT4_s35_2_fastqc.zip 984/tih_rna_sample_00115_23H5VFLT4_s35_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7b/69cae26810b39ddba32c9f91ca9407/V4_0001_RNA_0005_23H5VFLT4_s07.junctionSaturation_plot.r 1176/V4_0001_RNA_0005_23H5VFLT4_s07.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/76/f51abf0cd2ad686a6552a807b01994/V4_0001_RNA_0005_23H5VFLT4_s18.lc_extrap.txt 2150/V4_0001_RNA_0005_23H5VFLT4_s18.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/f93a2c719670da02afb349c653ed12/tih_rna_sample_00115_23H5VFLT4_s35.junction_annotation.log 1373/tih_rna_sample_00115_23H5VFLT4_s35.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/a2a7a192d258e63a78a9e02834e9b5/V4_0001_RNA_0005_23H5VFLT4_s44.read_distribution.txt 1802/V4_0001_RNA_0005_23H5VFLT4_s44.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/5b5973b5a93f138f36a2f8e5c1cdaf/V4_0001_RNA_0005_23H5VFLT4_s33.lc_extrap.txt 2172/V4_0001_RNA_0005_23H5VFLT4_s33.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/55/6abe584078ef5fa8bdd8e638527a8b/GM24385_0001_RNA_0001_23H5VFLT4_s32_trimmed_2_fastqc.zip 220/GM24385_0001_RNA_0001_23H5VFLT4_s32_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/aa4ec2b3ed8784231415890fc9d5f0/tih_rna_sample_00235_23H5VFLT4_s07.junction_annotation.log 1375/tih_rna_sample_00235_23H5VFLT4_s07.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/b5ff89bf2493121f05272070d88be0/tih_rna_sample_00400_23H5VFLT4_s27_2_fastqc.zip 1106/tih_rna_sample_00400_23H5VFLT4_s27_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/360f32e4e09eaccbac0a8f9be9ec81/V4_0001_RNA_0005_23H5VFLT4_s04.read_distribution.txt 1765/V4_0001_RNA_0005_23H5VFLT4_s04.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/13/0ca148801ced13752c826a31fd7367/tih_rna_sample_00089_23H5VFLT4_s39_trimmed_2_fastqc.zip 354/tih_rna_sample_00089_23H5VFLT4_s39_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/64/c8389b39fbbc31c65a92ca6d74b2af/V4_0001_RNA_0005_23H5VFLT4_s11_1_fastqc.zip 1043/V4_0001_RNA_0005_23H5VFLT4_s11_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/fa9853f941977fdc8777ccbe95c27b/tih_rna_sample_00218_23H5VFLT4_s10_contamination_mqc.tsv 1336/tih_rna_sample_00218_23H5VFLT4_s10_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bf/2f939aca8db61269156aca2503abe4/tih_rna_sample_00116_23H5VFLT4_s36.bam_stat.txt 1531/tih_rna_sample_00116_23H5VFLT4_s36.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b2/39563606df365c9dbc0e54bb077164/V4_0001_RNA_0005_23H5VFLT4_s37_seqtool_mqc.tsv 1978/V4_0001_RNA_0005_23H5VFLT4_s37_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/526ef81b608db8b105b524525ab60e/tih_rna_sample_00124_23H5VFLT4_s31.inner_distance_freq.txt 858/tih_rna_sample_00124_23H5VFLT4_s31.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/f17a16f9416acf52ea0d2994e4ffa5/tih_rna_sample_00425_23H5VFLT4_s46_trimmed_2_fastqc.zip 236/tih_rna_sample_00425_23H5VFLT4_s46_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ec/1dbc6b77ee8310341b19f491bcdca7/tih_rna_sample_00378_23H5VFLT4_s24_contamination_mqc.tsv 1254/tih_rna_sample_00378_23H5VFLT4_s24_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/90/5b5973b5a93f138f36a2f8e5c1cdaf/V4_0001_RNA_0005_23H5VFLT4_s33.attempt1.command.log 2076/V4_0001_RNA_0005_23H5VFLT4_s33.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/74/6d6367fb9bb9369579876a313423fa/V4_0001_RNA_0005_23H5VFLT4_s43.pos.DupRate.xls 1568/V4_0001_RNA_0005_23H5VFLT4_s43.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a7/977c7112fa10de71556222e2563014/tih_rna_sample_00400_23H5VFLT4_s27.attempt1.command.log 2063/tih_rna_sample_00400_23H5VFLT4_s27.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e4/4c0c13cd5dc5aec327543088a2701e/V4_0001_RNA_0005_23H5VFLT4_s25.bam_stat.txt 1508/V4_0001_RNA_0005_23H5VFLT4_s25.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/45/324b3fed37c86f95bd2f5e9d0d799a/V4_0001_RNA_0005_23H5VFLT4_s46.ReadsPerGene.out.tab 691/V4_0001_RNA_0005_23H5VFLT4_s46.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/8d432c446378cdfa451744f7f1e317/tih_rna_sample_00089_23H5VFLT4_s39.junction_annotation.log 1418/tih_rna_sample_00089_23H5VFLT4_s39.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/10/9be7cf49d8cbd0b003eb8ff0497243/tih_rna_sample_00407_23H5VFLT4_s33_rseqc_extra_mqc.tsv 1662/tih_rna_sample_00407_23H5VFLT4_s33_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/ca2e765cfe1b3f5ff479b86c5e0415/V4_0001_RNA_0005_23H5VFLT4_s44.fastp.json 88/V4_0001_RNA_0005_23H5VFLT4_s44.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/46/be62e15f5583f9c969cd20074d99b7/V4_0001_RNA_0005_23H5VFLT4_s42_preseq_mqc.tsv 2295/V4_0001_RNA_0005_23H5VFLT4_s42_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/81/cde429f7af3265f86b1fd7723b00cf/tih_rna_sample_00117_23H5VFLT4_s37_kallisto_mqc.tsv 491/tih_rna_sample_00117_23H5VFLT4_s37_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e5/ef2002339d9ab811552e1b082c64e4/tih_rna_sample_00377_23H5VFLT4_s23_seqtool_mqc.tsv 1980/tih_rna_sample_00377_23H5VFLT4_s23_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/9e7f70d0516daff7c04974dea72306/tih_rna_sample_00220_23H5VFLT4_s16_combined_fusions_arriba_visualisation.pdf 2361/tih_rna_sample_00220_23H5VFLT4_s16_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/17/ebce4a4b2e03944c2b9dc3f4b108a3/tih_rna_sample_00396_23H5VFLT4_s26_combined_fusions_arriba_visualisation.pdf 2375/tih_rna_sample_00396_23H5VFLT4_s26_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/3810286ba645e667c5583e19619880/V4_0001_RNA_0005_23H5VFLT4_s07.fastp.html 140/V4_0001_RNA_0005_23H5VFLT4_s07.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/28/a7ad9d22c19d14988d93945b1c0455/tih_rna_sample_00117_23H5VFLT4_s37_trimmed_1_fastqc.zip 205/tih_rna_sample_00117_23H5VFLT4_s37_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b9/f277a5b0376c95cc3d196d86cd5554/tih_rna_sample_00420_23H5VFLT4_s45.junction_annotation.log 1354/tih_rna_sample_00420_23H5VFLT4_s45.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/afcc1ed5952d5db0977a6d6078117e/tih_rna_sample_00280_23H5VFLT4_s18_rseqc_extra_mqc.tsv 1730/tih_rna_sample_00280_23H5VFLT4_s18_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e6/111b37b56c8a914238b6267a3f74a9/V4_0001_RNA_0005_23H5VFLT4_s15_kallisto_mqc.tsv 530/V4_0001_RNA_0005_23H5VFLT4_s15_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/61/33dce33b1eb9d296c173bcd9274f77/tih_rna_sample_00088_23H5VFLT4_s02_rseqc_extra_mqc.tsv 1691/tih_rna_sample_00088_23H5VFLT4_s02_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/96/b4d4db9a2ead884244b6a9808e91fa/V4_0001_RNA_0005_23H5VFLT4_s38.Log.final.out 602/V4_0001_RNA_0005_23H5VFLT4_s38.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f3/b8e5c838f105d9bdc71ca6feb7db85/tih_rna_sample_00122_23H5VFLT4_s42_contamination_mqc.tsv 1255/tih_rna_sample_00122_23H5VFLT4_s42_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/f3cc12d3bf3486fcde094e1f221ef9/V4_0001_RNA_0005_23H5VFLT4_s09_trimmed_2_fastqc.zip 320/V4_0001_RNA_0005_23H5VFLT4_s09_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/961b60a9239e0a4741278ebfc4aae1/V4_0001_RNA_0005_23H5VFLT4_s28.read_distribution.txt 1758/V4_0001_RNA_0005_23H5VFLT4_s28.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/62/a8e3ccd8d3a563d8f90932913b45d6/NTC_0001_0001_23H5VFLT4_s15_2_fastqc.zip 964/NTC_0001_0001_23H5VFLT4_s15_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/47/3c1702016e0788458ee3f83a4cd15f/V4_0001_RNA_0005_23H5VFLT4_s37.fastp.html 155/V4_0001_RNA_0005_23H5VFLT4_s37.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/9da16850594e35bfd65bdc5570166b/tih_rna_sample_00274_23H5VFLT4_s14.ReadsPerGene.out.tab 681/tih_rna_sample_00274_23H5VFLT4_s14.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/de/adde80d17a73f6bcbc2b7660e45fd4/GM24385_0001_RNA_0001_23H5VFLT4_s16_contamination_mqc.tsv 1293/GM24385_0001_RNA_0001_23H5VFLT4_s16_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/49/ca23b3c28ed99aa195970ea389b87b/V4_0001_RNA_0005_23H5VFLT4_s44_2_fastqc.zip 992/V4_0001_RNA_0005_23H5VFLT4_s44_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/e6cbbc2548676dfc81bc8573d43447/V4_0001_RNA_0005_23H5VFLT4_s34.attempt1.command.log 2060/V4_0001_RNA_0005_23H5VFLT4_s34.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a9/7503485f2e62bfabc208e2c779e787/tih_rna_sample_00388_23H5VFLT4_s22_combined_fusions_arriba_visualisation.pdf 2377/tih_rna_sample_00388_23H5VFLT4_s22_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/50/7ff5ac70e81f235cf600574b9ad163/V4_0001_RNA_0005_23H5VFLT4_s06.read_distribution.txt 1764/V4_0001_RNA_0005_23H5VFLT4_s06.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c6/06b59a22b018f02176a2cf1244eafa/tih_rna_sample_00254_23H5VFLT4_s05.read_distribution.txt 1783/tih_rna_sample_00254_23H5VFLT4_s05.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/08e303d4f2d4fffc91659dcb85611d/V4_0001_RNA_0005_23H5VFLT4_s45_preseq_mqc.tsv 2237/V4_0001_RNA_0005_23H5VFLT4_s45_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/23/5a3eb54668538aafa8561ee97b6251/V4_0001_RNA_0005_23H5VFLT4_s25_trimmed_1_fastqc.zip 303/V4_0001_RNA_0005_23H5VFLT4_s25_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/59/a82adef919b860e8323412f2bd8bce/tih_rna_sample_00218_23H5VFLT4_s10.infer_experiment.txt 902/tih_rna_sample_00218_23H5VFLT4_s10.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/dd/4e8a1a7c8e16ff799fc8a1f25f6e76/tih_rna_sample_00121_23H5VFLT4_s41.junctionSaturation_plot.r 1203/tih_rna_sample_00121_23H5VFLT4_s41.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/33440ae28b4d94aaf05c28a7eae94a/V4_0001_RNA_0005_23H5VFLT4_s03_kallisto_mqc.tsv 578/V4_0001_RNA_0005_23H5VFLT4_s03_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1e/43d02f5a73e6a69864a19b5546898a/tih_rna_sample_00235_23H5VFLT4_s07.junctionSaturation_plot.r 1185/tih_rna_sample_00235_23H5VFLT4_s07.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4c/5ba3ef3d947bd0cfa6b195c72ff343/V4_0001_RNA_0005_23H5VFLT4_s25.junction_annotation.log 1409/V4_0001_RNA_0005_23H5VFLT4_s25.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/1694fd0203b378a547586ae212aca7/V4_0001_RNA_0005_23H5VFLT4_s42.junction_annotation.log 1377/V4_0001_RNA_0005_23H5VFLT4_s42.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/cd26de74e4558461b45451ea508727/V4_0001_RNA_0005_23H5VFLT4_s05_preseq_mqc.tsv 2296/V4_0001_RNA_0005_23H5VFLT4_s05_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c5/7645191fe1bb7103134c8d1caa23ed/V4_0001_RNA_0005_23H5VFLT4_s14.fastp.json 22/V4_0001_RNA_0005_23H5VFLT4_s14.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a6/d591475222377ca6892c8fc0d8d67f/GM24385_0001_RNA_0001_23H5VFLT4_s32.attempt1.command.log 2043/GM24385_0001_RNA_0001_23H5VFLT4_s32.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/53/1c7ca66606d7aa5f1b520755e0d1bc/V4_0001_RNA_0005_23H5VFLT4_s21_seqtool_mqc.tsv 2003/V4_0001_RNA_0005_23H5VFLT4_s21_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/c0cd8cefe3dce5d7b0974b4ba455c2/V4_0001_RNA_0005_23H5VFLT4_s05_rseqc_extra_mqc.tsv 1728/V4_0001_RNA_0005_23H5VFLT4_s05_rseqc_extra_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ca/c5fedaeb5f51ebebbf4290e85faaa1/V4_0001_RNA_0005_23H5VFLT4_s19.junction_annotation.log 1385/V4_0001_RNA_0005_23H5VFLT4_s19.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/21db1e5e326f90b4eef7b332cc6f8a/GM24385_0001_RNA_0001_23H5VFLT4_s48.lc_extrap.txt 2128/GM24385_0001_RNA_0001_23H5VFLT4_s48.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/04/8bd3bbec1a23c4b2701eb05f257569/GM24385_0001_RNA_0001_23H5VFLT4_s40.junctionSaturation_plot.r 1179/GM24385_0001_RNA_0001_23H5VFLT4_s40.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8b/8412cdb2c0990f224e43f7783498e8/tih_rna_sample_00272_23H5VFLT4_s09.inner_distance_freq.txt 865/tih_rna_sample_00272_23H5VFLT4_s09.inner_distance_freq.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a1/32a77c11e3772af6862ff9d6e6ec06/GM24385_0001_RNA_0001_23H5VFLT4_s08_combined_fusions_arriba_visualisation.pdf 2369/GM24385_0001_RNA_0001_23H5VFLT4_s08_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c3/4a3ad6393b5a1860d453a33d8ea373/tih_rna_sample_00254_23H5VFLT4_s05.md.bam.metrics 1919/tih_rna_sample_00254_23H5VFLT4_s05.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c8/762478e38bf29aa87f57df4309a796/tih_rna_sample_00104_23H5VFLT4_s20_2_fastqc.zip 986/tih_rna_sample_00104_23H5VFLT4_s20_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/3238479c7c64f255e974440aac3503/tih_rna_sample_00414_23H5VFLT4_s40.Log.final.out 626/tih_rna_sample_00414_23H5VFLT4_s40.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5e/1a70150806fa50f751143a3adf77c0/V4_0001_RNA_0005_23H5VFLT4_s45.fastp.html 185/V4_0001_RNA_0005_23H5VFLT4_s45.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/8b5af65c9c35848b17f8d2c9ac1fff/tih_rna_sample_00272_23H5VFLT4_s09.fastp.json 74/tih_rna_sample_00272_23H5VFLT4_s09.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/48/79409c350c5bab322319795c006a59/tih_rna_sample_00272_23H5VFLT4_s09.infer_experiment.txt 961/tih_rna_sample_00272_23H5VFLT4_s09.infer_experiment.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3a/0cd55a785a946f2234feaef3707c66/V4_0001_RNA_0005_23H5VFLT4_s05.junction_annotation.log 1414/V4_0001_RNA_0005_23H5VFLT4_s05.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0d/1b2b86e76475ebbefbbe28bbe66c1d/V4_0001_RNA_0005_23H5VFLT4_s14.ReadsPerGene.out.tab 703/V4_0001_RNA_0005_23H5VFLT4_s14.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/72522f03f414aa466929ea3bafa595/tih_rna_sample_00118_23H5VFLT4_s38.log 436/tih_rna_sample_00118_23H5VFLT4_s38.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7d/7d346bce01508edf82c7339fb13598/V4_0001_RNA_0005_23H5VFLT4_s42.junctionSaturation_plot.r 1206/V4_0001_RNA_0005_23H5VFLT4_s42.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/30/5b5526480575be8594269cf5c0c31a/tih_rna_sample_00396_23H5VFLT4_s26.junctionSaturation_plot.r 1245/tih_rna_sample_00396_23H5VFLT4_s26.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/77/9a80568ced37c003d750c5c19defa4/V4_0001_RNA_0001_23H5VFLT4_s13.lc_extrap.txt 2194/V4_0001_RNA_0001_23H5VFLT4_s13.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/1f943f2948466cf04fd0b05557d0a4/V4_0001_RNA_0005_23H5VFLT4_s46_combined_fusions_arriba_visualisation.pdf 2321/V4_0001_RNA_0005_23H5VFLT4_s46_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d1/122de3634b45acc87376c092084771/V4_0001_RNA_0005_23H5VFLT4_s42.bam_stat.txt 1489/V4_0001_RNA_0005_23H5VFLT4_s42.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e0/886e4fe0022a2b06d41170b8a46ba5/tih_rna_sample_00280_23H5VFLT4_s18.pos.DupRate.xls 1612/tih_rna_sample_00280_23H5VFLT4_s18.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f7/8e46acec7dccf6930f659f2408ce05/tih_rna_sample_00116_23H5VFLT4_s36.read_distribution.txt 1807/tih_rna_sample_00116_23H5VFLT4_s36.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/ab72d18c25cabdab172e923622f7e8/V4_0001_RNA_0005_23H5VFLT4_s36.md.bam.metrics 1853/V4_0001_RNA_0005_23H5VFLT4_s36.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/b17b72f97bdc1923500e3daccc363e/V4_0001_RNA_0005_23H5VFLT4_s18.fastp.json 25/V4_0001_RNA_0005_23H5VFLT4_s18.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/73b8f4ad16b5fe966bcbcfa579d665/tih_rna_sample_00407_23H5VFLT4_s33_1_fastqc.zip 1001/tih_rna_sample_00407_23H5VFLT4_s33_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/632bffbeed98a690b177578041a4ec/tih_rna_sample_00116_23H5VFLT4_s36.Log.final.out 632/tih_rna_sample_00116_23H5VFLT4_s36.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ab/74bf3dfde35aa658564120cc2c7813/V4_0001_RNA_0005_23H5VFLT4_s30.bam_stat.txt 1459/V4_0001_RNA_0005_23H5VFLT4_s30.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/3cbca34d7ae7f087e6dae1cf3c0630/V4_0001_RNA_0005_23H5VFLT4_s22_kallisto_mqc.tsv 548/V4_0001_RNA_0005_23H5VFLT4_s22_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ac/8c60139bf937fde67ce6a54bd4a2d3/V4_0001_RNA_0005_23H5VFLT4_s01_preseq_mqc.tsv 2303/V4_0001_RNA_0005_23H5VFLT4_s01_preseq_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/56/95d3d2e7b194f2fb01a3d1ab78a943/GM24385_0001_RNA_0001_23H5VFLT4_s08.log 462/GM24385_0001_RNA_0001_23H5VFLT4_s08.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d8/dbc1b2b5e17c678c88b7248923aeb2/tih_rna_sample_00403_23H5VFLT4_s29_kallisto_mqc.tsv 533/tih_rna_sample_00403_23H5VFLT4_s29_kallisto_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ae/3cb4f22162cfdd0018680c5b92b124/tih_rna_sample_00111_23H5VFLT4_s30.Log.final.out 584/tih_rna_sample_00111_23H5VFLT4_s30.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/064820719a015af79e151d5087c73a/V4_0001_RNA_0005_23H5VFLT4_s07.md.bam.metrics 1850/V4_0001_RNA_0005_23H5VFLT4_s07.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b0/5196735b989d7b669b4c0d1f0a504d/V4_0001_RNA_0005_23H5VFLT4_s39_contamination_mqc.tsv 1270/V4_0001_RNA_0005_23H5VFLT4_s39_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f9/76827183f658ddda39fec016a3c1c8/V4_0001_RNA_0005_23H5VFLT4_s05.pos.DupRate.xls 1594/V4_0001_RNA_0005_23H5VFLT4_s05.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f5/4306495e9755adbb65d56dc13efa6e/V4_0001_RNA_0005_23H5VFLT4_s09.log 470/V4_0001_RNA_0005_23H5VFLT4_s09.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/c16b2181a172b75b7cc5e013fb9c2d/V4_0001_RNA_0005_23H5VFLT4_s28.md.bam.metrics 1844/V4_0001_RNA_0005_23H5VFLT4_s28.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c0/f8330c4c81032d4e774b13cc2a5b40/V4_0001_RNA_0005_23H5VFLT4_s30.Log.final.out 597/V4_0001_RNA_0005_23H5VFLT4_s30.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9e/446a9dcc4b782f29a0218826736de3/tih_rna_sample_00394_23H5VFLT4_s25.read_distribution.txt 1741/tih_rna_sample_00394_23H5VFLT4_s25.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/5e7e92b7b5c55a6e27c134534c09d9/V4_0001_RNA_0005_23H5VFLT4_s36.read_distribution.txt 1776/V4_0001_RNA_0005_23H5VFLT4_s36.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/cd/0e2f7f1b69d24ae29098672f2a358f/V4_0001_RNA_0005_23H5VFLT4_s10.Log.final.out 655/V4_0001_RNA_0005_23H5VFLT4_s10.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e3/143ca94bb1bfb135423c23879713e2/tih_rna_sample_00410_23H5VFLT4_s34.Log.final.out 603/tih_rna_sample_00410_23H5VFLT4_s34.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/08/3e21d36997e99c9cc1e9181cff1a67/tih_rna_sample_00377_23H5VFLT4_s23.ReadsPerGene.out.tab 743/tih_rna_sample_00377_23H5VFLT4_s23.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/0b2da31b75931080f61353328fbf20/V4_0001_RNA_0005_23H5VFLT4_s45.Log.final.out 644/V4_0001_RNA_0005_23H5VFLT4_s45.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/09/c4a5d1a09688c2d892eb01d6a9badc/V4_0001_RNA_0005_23H5VFLT4_s21.junctionSaturation_plot.r 1182/V4_0001_RNA_0005_23H5VFLT4_s21.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1d/071bba1324bdb84f711a1e7216f784/tih_rna_sample_00280_23H5VFLT4_s18_trimmed_2_fastqc.zip 382/tih_rna_sample_00280_23H5VFLT4_s18_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/83/29af7efc64a7e5a735a732a561ac26/V4_0001_RNA_0005_23H5VFLT4_s26.bam_stat.txt 1498/V4_0001_RNA_0005_23H5VFLT4_s26.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d0/adc0aaedeef91d3cd51d9c2ab6adb3/tih_rna_sample_00403_23H5VFLT4_s29.pos.DupRate.xls 1574/tih_rna_sample_00403_23H5VFLT4_s29.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f2/72f2f4d152af7634764dde8c46f315/V4_0001_RNA_0005_23H5VFLT4_s36_combined_fusions_arriba_visualisation.pdf 2356/V4_0001_RNA_0005_23H5VFLT4_s36_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e1/e795617f984f701bc1643cb7ae1703/tih_rna_sample_00121_23H5VFLT4_s41.log 413/tih_rna_sample_00121_23H5VFLT4_s41.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b3/d601c8929de4d2f3dfcbeb3cccdd7c/tih_rna_sample_00407_23H5VFLT4_s33.md.bam.metrics 1861/tih_rna_sample_00407_23H5VFLT4_s33.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8c/f198f5d1c5be716bf41152e20eba14/V4_0001_RNA_0005_23H5VFLT4_s47_2_fastqc.zip 1074/V4_0001_RNA_0005_23H5VFLT4_s47_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/0a20f58ce492dfc251f6059f2216a2/GM24385_0001_RNA_0001_23H5VFLT4_s24.junctionSaturation_plot.r 1174/GM24385_0001_RNA_0001_23H5VFLT4_s24.junctionSaturation_plot.r")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/0905a693ace76ee5dd87c59a8b1750/tih_rna_sample_00254_23H5VFLT4_s05_contamination_mqc.tsv 1342/tih_rna_sample_00254_23H5VFLT4_s05_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/40/c50c250994c50d88009cd3bfb092ef/tih_rna_sample_00096_23H5VFLT4_s11.junction_annotation.log 1429/tih_rna_sample_00096_23H5VFLT4_s11.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d5/e277fc0fe8da46be9ea548fc404243/V4_0001_RNA_0005_23H5VFLT4_s35.lc_extrap.txt 2129/V4_0001_RNA_0005_23H5VFLT4_s35.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/27/a3a35375494929a96f234c2fa39af1/tih_rna_sample_00105_23H5VFLT4_s21.fastp.json 4/tih_rna_sample_00105_23H5VFLT4_s21.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/2b80a27119edf7eaf76d74a4315090/V4_0001_RNA_0001_23H5VFLT4_s13.fastp.json 66/V4_0001_RNA_0001_23H5VFLT4_s13.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d2/63128c051e699a47e1d367ec9b8a9c/tih_rna_sample_00104_23H5VFLT4_s20_contamination_mqc.tsv 1260/tih_rna_sample_00104_23H5VFLT4_s20_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/db/22c7553b38b2d4e1b8c884f028023f/V4_0001_RNA_0005_23H5VFLT4_s22_contamination_mqc.tsv 1274/V4_0001_RNA_0005_23H5VFLT4_s22_contamination_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/e2/51f005547222350c7ae69676f8b23d/tih_rna_sample_00111_23H5VFLT4_s30.fastp.html 103/tih_rna_sample_00111_23H5VFLT4_s30.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8e/a81d8600bf9d5337c2f190ddf8ca0a/V4_0001_RNA_0005_23H5VFLT4_s20.fastp.json 26/V4_0001_RNA_0005_23H5VFLT4_s20.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/da/7802adfe1f72fc5fce9cf71bdd6b06/V4_0001_RNA_0005_23H5VFLT4_s06_seqtool_mqc.tsv 2018/V4_0001_RNA_0005_23H5VFLT4_s06_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/969556a58cdc861a042527dc4c1e95/V4_0001_RNA_0005_23H5VFLT4_s19_combined_fusions_arriba_visualisation.pdf 2334/V4_0001_RNA_0005_23H5VFLT4_s19_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/ecb317181e880743ddc815dfa4956f/tih_rna_sample_00115_23H5VFLT4_s35.md.bam.metrics 1845/tih_rna_sample_00115_23H5VFLT4_s35.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/b19411390374da47004408adac276f/V4_0001_RNA_0005_23H5VFLT4_s22_combined_fusions_arriba_visualisation.pdf 2340/V4_0001_RNA_0005_23H5VFLT4_s22_combined_fusions_arriba_visualisation.pdf")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/10/4ce48b598ecc4cf66a0d40c49264e7/tih_rna_sample_00403_23H5VFLT4_s29.log 437/tih_rna_sample_00403_23H5VFLT4_s29.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/20/d74825dec9ac180d4b9a313fa33cd6/V4_0001_RNA_0005_23H5VFLT4_s21_2_fastqc.zip 1068/V4_0001_RNA_0005_23H5VFLT4_s21_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4f/cb176cfcb3c71a153e18122f129599/V4_0001_RNA_0005_23H5VFLT4_s03.bam_stat.txt 1503/V4_0001_RNA_0005_23H5VFLT4_s03.bam_stat.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/98/97605947c90af41c8e0c5fad99ea34/V4_0001_RNA_0005_23H5VFLT4_s07_trimmed_2_fastqc.zip 240/V4_0001_RNA_0005_23H5VFLT4_s07_trimmed_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/c9/1744a75a0069dcdf654063808d9d5e/tih_rna_sample_00248_23H5VFLT4_s01.attempt1.command.log 2056/tih_rna_sample_00248_23H5VFLT4_s01.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/87/d2939e466465998f2a2a0e9c99215f/tih_rna_sample_00104_23H5VFLT4_s20.junction_annotation.log 1361/tih_rna_sample_00104_23H5VFLT4_s20.junction_annotation.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/36/8b209e03512978f99ffedbbcad1caa/tih_rna_sample_00426_23H5VFLT4_s48.fastp.json 76/tih_rna_sample_00426_23H5VFLT4_s48.fastp.json")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/16/1dad734494642107a0f7bf97e8e3cd/V4_0001_RNA_0005_23H5VFLT4_s37.Log.final.out 611/V4_0001_RNA_0005_23H5VFLT4_s37.Log.final.out")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/d7/9b46422aa89f42ef80bf47fc7096ce/V4_0001_RNA_0005_23H5VFLT4_s13.attempt1.command.log 2070/V4_0001_RNA_0005_23H5VFLT4_s13.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/29/14edb1e091254248277965895cddf8/tih_rna_sample_00124_23H5VFLT4_s31.lc_extrap.txt 2165/tih_rna_sample_00124_23H5VFLT4_s31.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/60/3a2a13b6b627adaab2b7328706efd0/V4_0001_RNA_0005_23H5VFLT4_s29.attempt1.command.log 2057/V4_0001_RNA_0005_23H5VFLT4_s29.attempt1.command.log")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/bb/4ff888848454f10c3e37d2511b56d5/tih_rna_sample_00272_23H5VFLT4_s09_2_fastqc.zip 1084/tih_rna_sample_00272_23H5VFLT4_s09_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5c/4ab3448791ffcdf0c8122c314478e7/tih_rna_sample_00116_23H5VFLT4_s36_seqtool_mqc.tsv 1959/tih_rna_sample_00116_23H5VFLT4_s36_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/01/bc9a9184d87796bc4169b7021e967e/tih_rna_sample_00420_23H5VFLT4_s45.fastp.html 104/tih_rna_sample_00420_23H5VFLT4_s45.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1a/c9143497ae6a5817f97ce97c124b3f/V4_0001_RNA_0005_23H5VFLT4_s26_seqtool_mqc.tsv 1977/V4_0001_RNA_0005_23H5VFLT4_s26_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/35/f91e288ad2fe4f7f00dfd2d08f87db/tih_rna_sample_00388_23H5VFLT4_s22_trimmed_1_fastqc.zip 371/tih_rna_sample_00388_23H5VFLT4_s22_trimmed_1_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/44/66b3c8857e62c771332a8c02d09b9d/V4_0001_RNA_0005_23H5VFLT4_s06.fastp.html 165/V4_0001_RNA_0005_23H5VFLT4_s06.fastp.html")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2a/cc2f3efe8f10951155359dc434ca70/tih_rna_sample_00220_23H5VFLT4_s16.ReadsPerGene.out.tab 747/tih_rna_sample_00220_23H5VFLT4_s16.ReadsPerGene.out.tab")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/12/c699012f157b031f72d8b2fb5b3bf8/V4_0001_RNA_0005_23H5VFLT4_s15_2_fastqc.zip 1034/V4_0001_RNA_0005_23H5VFLT4_s15_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/7a3538bb4d21412ac9a231efb82622/tih_rna_sample_00122_23H5VFLT4_s42_2_fastqc.zip 974/tih_rna_sample_00122_23H5VFLT4_s42_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/9d/54551e39c9777f71a4ace8788de409/V4_0001_RNA_0001_23H5VFLT4_s13_seqtool_mqc.tsv 1979/V4_0001_RNA_0001_23H5VFLT4_s13_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/10/880c0d22116eead1299c6c931e09c6/V4_0001_RNA_0005_23H5VFLT4_s47.md.bam.metrics 1878/V4_0001_RNA_0005_23H5VFLT4_s47.md.bam.metrics")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3f/286cc0a532534cf35dcdb24e2a133c/V4_0001_RNA_0005_23H5VFLT4_s26_2_fastqc.zip 1138/V4_0001_RNA_0005_23H5VFLT4_s26_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f4/11fc3e77a7247208fd096f6b1d8c23/V4_0001_RNA_0005_23H5VFLT4_s21.pos.DupRate.xls 1569/V4_0001_RNA_0005_23H5VFLT4_s21.pos.DupRate.xls")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/0a/f7299f9dc7ae4af11a8df6ae3fd535/tih_rna_sample_00220_23H5VFLT4_s16.read_distribution.txt 1781/tih_rna_sample_00220_23H5VFLT4_s16.read_distribution.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/2c/8a62478c037019a74a4fd46c2d6512/V4_0001_RNA_0005_23H5VFLT4_s09.lc_extrap.txt 2181/V4_0001_RNA_0005_23H5VFLT4_s09.lc_extrap.txt")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/5d/5195ea6d6d6cd5ce0e56bf1d666e23/V4_0001_RNA_0005_23H5VFLT4_s03_2_fastqc.zip 1108/V4_0001_RNA_0005_23H5VFLT4_s03_2_fastqc.zip")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/66/c3a8407abc61f82f1507d7971eb6a0/V4_0001_RNA_0005_23H5VFLT4_s22_seqtool_mqc.tsv 1949/V4_0001_RNA_0005_23H5VFLT4_s22_seqtool_mqc.tsv")
    downloads+=("nxf_s3_download s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/f8/5ba21622cf0bac8106d80ce45944d9/GM24385_0001_RNA_0001_23H5VFLT4_s08_trimmed_2_fastqc.zip 342/GM24385_0001_RNA_0001_23H5VFLT4_s08_trimmed_2_fastqc.zip")
    nxf_parallel "${downloads[@]}"
    echo "==> STAGING COMPLETE (2404 inputs)"
    echo ""
}

nxf_unstage_outputs() {
    true
    uploads=()
    IFS=$'\n'
    for name in $(eval "ls -1d *multiqc_report.html *_data *_plots versions.yml" | sort | uniq); do
        uploads+=("nxf_s3_upload '$name' s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f")
    done
    unset IFS
    nxf_parallel "${uploads[@]}"
}

nxf_unstage_controls() {
    true
    nxf_s3_upload .command.out s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f || true
    nxf_s3_upload .command.err s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f || true
    nxf_s3_upload .command.trace s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f || true
}

nxf_unstage() {
    if [[ ${nxf_main_ret:=0} == 0 ]]; then
        (set -e -o pipefail; (nxf_unstage_outputs | tee -a .command.out) 3>&1 1>&2 2>&3 | tee -a .command.err)
        nxf_unstage_ret=$?
    fi
    nxf_unstage_controls
}

nxf_main() {
    trap on_exit EXIT
    trap on_term TERM INT USR2
    trap '' USR1

    [[ "${NXF_CHDIR:-}" ]] && cd "$NXF_CHDIR"
    NXF_SCRATCH="$(set +u; nxf_mktemp /tmp)"
    [[ $NXF_DEBUG > 0 ]] && nxf_env
    echo start | nxf_s3_upload - s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/82/b50162e27bc4085b96d5424a893e9f/.command.begin
    set +u
    set -u
    /opt/s5cmd/bin/s5cmd --log error cp "s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/tmp/bf/f9dcc02fefc893809823814eee2158/bin/*" $NXF_SCRATCH/nextflow-bin/
    chmod +x $NXF_SCRATCH/nextflow-bin/* || true
    export PATH=$NXF_SCRATCH/nextflow-bin:$PATH
    export PYTHONNOUSERSITE="1"
    export R_PROFILE_USER="/.Rprofile"
    export R_ENVIRON_USER="/.Renviron"
    export JULIA_DEPOT_PATH="/usr/local/share/julia"
    [[ $NXF_SCRATCH ]] && cd $NXF_SCRATCH
    export NXF_TASK_WORKDIR="$PWD"
    nxf_stage

    set +e
    (set -o pipefail; (nxf_launch | tee .command.out) 3>&1 1>&2 2>&3 | tee .command.err) &
    pid=$!
    wait $pid || nxf_main_ret=$?
    nxf_unstage
}

$NXF_ENTRY