#!/usr/bin/env bash
# Bulk download script for GSE131847
# Generated from Yeo Lab Publications Database
# Total files: 945

OUTDIR="GSE131847"
mkdir -p "$OUTDIR"
cd "$OUTDIR"

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE131nnn/GSE131847/suppl/GSE131847_RAW.tar" -O "GSE131847_RAW.tar"

# --- SRA run files ---
# Tip: use 'fasterq-dump' from SRA Toolkit for FASTQ conversion
#      with optional renaming to original submitted FASTQ names.
# Set to 1 to rename SRR outputs (e.g. SRR_1.fastq.gz -> sample_R1.fastq.gz)
RENAME_SRA_TO_ORIGINAL=1

_compress_if_exists() {
  local stem="$1"
  if [ -f "${stem}.fastq" ]; then
    gzip -f "${stem}.fastq"
    echo "${stem}.fastq.gz"
    return 0
  fi
  if [ -f "${stem}.fq" ]; then
    gzip -f "${stem}.fq"
    echo "${stem}.fq.gz"
    return 0
  fi
  return 1
}

# Option A: Download via SRA Toolkit (recommended)
fasterq-dump --split-files "SRR9136455"
gz1="$(_compress_if_exists 'SRR9136455_1' || true)"
gz2="$(_compress_if_exists 'SRR9136455_2' || true)"
gzs="$(_compress_if_exists 'SRR9136455' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136456"
gz1="$(_compress_if_exists 'SRR9136456_1' || true)"
gz2="$(_compress_if_exists 'SRR9136456_2' || true)"
gzs="$(_compress_if_exists 'SRR9136456' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136457"
gz1="$(_compress_if_exists 'SRR9136457_1' || true)"
gz2="$(_compress_if_exists 'SRR9136457_2' || true)"
gzs="$(_compress_if_exists 'SRR9136457' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136458"
gz1="$(_compress_if_exists 'SRR9136458_1' || true)"
gz2="$(_compress_if_exists 'SRR9136458_2' || true)"
gzs="$(_compress_if_exists 'SRR9136458' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136459"
gz1="$(_compress_if_exists 'SRR9136459_1' || true)"
gz2="$(_compress_if_exists 'SRR9136459_2' || true)"
gzs="$(_compress_if_exists 'SRR9136459' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136460"
gz1="$(_compress_if_exists 'SRR9136460_1' || true)"
gz2="$(_compress_if_exists 'SRR9136460_2' || true)"
gzs="$(_compress_if_exists 'SRR9136460' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136461"
gz1="$(_compress_if_exists 'SRR9136461_1' || true)"
gz2="$(_compress_if_exists 'SRR9136461_2' || true)"
gzs="$(_compress_if_exists 'SRR9136461' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_naive_S23_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_naive_S23_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136462"
gz1="$(_compress_if_exists 'SRR9136462_1' || true)"
gz2="$(_compress_if_exists 'SRR9136462_2' || true)"
gzs="$(_compress_if_exists 'SRR9136462' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136463"
gz1="$(_compress_if_exists 'SRR9136463_1' || true)"
gz2="$(_compress_if_exists 'SRR9136463_2' || true)"
gzs="$(_compress_if_exists 'SRR9136463' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136464"
gz1="$(_compress_if_exists 'SRR9136464_1' || true)"
gz2="$(_compress_if_exists 'SRR9136464_2' || true)"
gzs="$(_compress_if_exists 'SRR9136464' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136465"
gz1="$(_compress_if_exists 'SRR9136465_1' || true)"
gz2="$(_compress_if_exists 'SRR9136465_2' || true)"
gzs="$(_compress_if_exists 'SRR9136465' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136466"
gz1="$(_compress_if_exists 'SRR9136466_1' || true)"
gz2="$(_compress_if_exists 'SRR9136466_2' || true)"
gzs="$(_compress_if_exists 'SRR9136466' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136467"
gz1="$(_compress_if_exists 'SRR9136467_1' || true)"
gz2="$(_compress_if_exists 'SRR9136467_2' || true)"
gzs="$(_compress_if_exists 'SRR9136467' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136468"
gz1="$(_compress_if_exists 'SRR9136468_1' || true)"
gz2="$(_compress_if_exists 'SRR9136468_2' || true)"
gzs="$(_compress_if_exists 'SRR9136468' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136469"
gz1="$(_compress_if_exists 'SRR9136469_1' || true)"
gz2="$(_compress_if_exists 'SRR9136469_2' || true)"
gzs="$(_compress_if_exists 'SRR9136469' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_naive_S24_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_naive_S24_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136470"
gz1="$(_compress_if_exists 'SRR9136470_1' || true)"
gz2="$(_compress_if_exists 'SRR9136470_2' || true)"
gzs="$(_compress_if_exists 'SRR9136470' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136471"
gz1="$(_compress_if_exists 'SRR9136471_1' || true)"
gz2="$(_compress_if_exists 'SRR9136471_2' || true)"
gzs="$(_compress_if_exists 'SRR9136471' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136472"
gz1="$(_compress_if_exists 'SRR9136472_1' || true)"
gz2="$(_compress_if_exists 'SRR9136472_2' || true)"
gzs="$(_compress_if_exists 'SRR9136472' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136473"
gz1="$(_compress_if_exists 'SRR9136473_1' || true)"
gz2="$(_compress_if_exists 'SRR9136473_2' || true)"
gzs="$(_compress_if_exists 'SRR9136473' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136474"
gz1="$(_compress_if_exists 'SRR9136474_1' || true)"
gz2="$(_compress_if_exists 'SRR9136474_2' || true)"
gzs="$(_compress_if_exists 'SRR9136474' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136475"
gz1="$(_compress_if_exists 'SRR9136475_1' || true)"
gz2="$(_compress_if_exists 'SRR9136475_2' || true)"
gzs="$(_compress_if_exists 'SRR9136475' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136476"
gz1="$(_compress_if_exists 'SRR9136476_1' || true)"
gz2="$(_compress_if_exists 'SRR9136476_2' || true)"
gzs="$(_compress_if_exists 'SRR9136476' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136477"
gz1="$(_compress_if_exists 'SRR9136477_1' || true)"
gz2="$(_compress_if_exists 'SRR9136477_2' || true)"
gzs="$(_compress_if_exists 'SRR9136477' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136478"
gz1="$(_compress_if_exists 'SRR9136478_1' || true)"
gz2="$(_compress_if_exists 'SRR9136478_2' || true)"
gzs="$(_compress_if_exists 'SRR9136478' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136479"
gz1="$(_compress_if_exists 'SRR9136479_1' || true)"
gz2="$(_compress_if_exists 'SRR9136479_2' || true)"
gzs="$(_compress_if_exists 'SRR9136479' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136480"
gz1="$(_compress_if_exists 'SRR9136480_1' || true)"
gz2="$(_compress_if_exists 'SRR9136480_2' || true)"
gzs="$(_compress_if_exists 'SRR9136480' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136481"
gz1="$(_compress_if_exists 'SRR9136481_1' || true)"
gz2="$(_compress_if_exists 'SRR9136481_2' || true)"
gzs="$(_compress_if_exists 'SRR9136481' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136482"
gz1="$(_compress_if_exists 'SRR9136482_1' || true)"
gz2="$(_compress_if_exists 'SRR9136482_2' || true)"
gzs="$(_compress_if_exists 'SRR9136482' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136483"
gz1="$(_compress_if_exists 'SRR9136483_1' || true)"
gz2="$(_compress_if_exists 'SRR9136483_2' || true)"
gzs="$(_compress_if_exists 'SRR9136483' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136484"
gz1="$(_compress_if_exists 'SRR9136484_1' || true)"
gz2="$(_compress_if_exists 'SRR9136484_2' || true)"
gzs="$(_compress_if_exists 'SRR9136484' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S25_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S25_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136485"
gz1="$(_compress_if_exists 'SRR9136485_1' || true)"
gz2="$(_compress_if_exists 'SRR9136485_2' || true)"
gzs="$(_compress_if_exists 'SRR9136485' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S27_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S27_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136486"
gz1="$(_compress_if_exists 'SRR9136486_1' || true)"
gz2="$(_compress_if_exists 'SRR9136486_2' || true)"
gzs="$(_compress_if_exists 'SRR9136486' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S35_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S35_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136487"
gz1="$(_compress_if_exists 'SRR9136487_1' || true)"
gz2="$(_compress_if_exists 'SRR9136487_2' || true)"
gzs="$(_compress_if_exists 'SRR9136487' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S27_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S27_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136488"
gz1="$(_compress_if_exists 'SRR9136488_1' || true)"
gz2="$(_compress_if_exists 'SRR9136488_2' || true)"
gzs="$(_compress_if_exists 'SRR9136488' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S25_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S25_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136489"
gz1="$(_compress_if_exists 'SRR9136489_1' || true)"
gz2="$(_compress_if_exists 'SRR9136489_2' || true)"
gzs="$(_compress_if_exists 'SRR9136489' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S27_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S27_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136490"
gz1="$(_compress_if_exists 'SRR9136490_1' || true)"
gz2="$(_compress_if_exists 'SRR9136490_2' || true)"
gzs="$(_compress_if_exists 'SRR9136490' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S28_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S28_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136491"
gz1="$(_compress_if_exists 'SRR9136491_1' || true)"
gz2="$(_compress_if_exists 'SRR9136491_2' || true)"
gzs="$(_compress_if_exists 'SRR9136491' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S26_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S26_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136492"
gz1="$(_compress_if_exists 'SRR9136492_1' || true)"
gz2="$(_compress_if_exists 'SRR9136492_2' || true)"
gzs="$(_compress_if_exists 'SRR9136492' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S26_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S26_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136493"
gz1="$(_compress_if_exists 'SRR9136493_1' || true)"
gz2="$(_compress_if_exists 'SRR9136493_2' || true)"
gzs="$(_compress_if_exists 'SRR9136493' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S28_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S28_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136494"
gz1="$(_compress_if_exists 'SRR9136494_1' || true)"
gz2="$(_compress_if_exists 'SRR9136494_2' || true)"
gzs="$(_compress_if_exists 'SRR9136494' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S36_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S36_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136495"
gz1="$(_compress_if_exists 'SRR9136495_1' || true)"
gz2="$(_compress_if_exists 'SRR9136495_2' || true)"
gzs="$(_compress_if_exists 'SRR9136495' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S25_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S25_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136496"
gz1="$(_compress_if_exists 'SRR9136496_1' || true)"
gz2="$(_compress_if_exists 'SRR9136496_2' || true)"
gzs="$(_compress_if_exists 'SRR9136496' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S28_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S28_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136497"
gz1="$(_compress_if_exists 'SRR9136497_1' || true)"
gz2="$(_compress_if_exists 'SRR9136497_2' || true)"
gzs="$(_compress_if_exists 'SRR9136497' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S25_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S25_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136498"
gz1="$(_compress_if_exists 'SRR9136498_1' || true)"
gz2="$(_compress_if_exists 'SRR9136498_2' || true)"
gzs="$(_compress_if_exists 'SRR9136498' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S27_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S27_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136499"
gz1="$(_compress_if_exists 'SRR9136499_1' || true)"
gz2="$(_compress_if_exists 'SRR9136499_2' || true)"
gzs="$(_compress_if_exists 'SRR9136499' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S33_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S33_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136500"
gz1="$(_compress_if_exists 'SRR9136500_1' || true)"
gz2="$(_compress_if_exists 'SRR9136500_2' || true)"
gzs="$(_compress_if_exists 'SRR9136500' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S26_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S26_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136501"
gz1="$(_compress_if_exists 'SRR9136501_1' || true)"
gz2="$(_compress_if_exists 'SRR9136501_2' || true)"
gzs="$(_compress_if_exists 'SRR9136501' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S26_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S26_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136502"
gz1="$(_compress_if_exists 'SRR9136502_1' || true)"
gz2="$(_compress_if_exists 'SRR9136502_2' || true)"
gzs="$(_compress_if_exists 'SRR9136502' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S28_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S28_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136503"
gz1="$(_compress_if_exists 'SRR9136503_1' || true)"
gz2="$(_compress_if_exists 'SRR9136503_2' || true)"
gzs="$(_compress_if_exists 'SRR9136503' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S25_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S25_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136504"
gz1="$(_compress_if_exists 'SRR9136504_1' || true)"
gz2="$(_compress_if_exists 'SRR9136504_2' || true)"
gzs="$(_compress_if_exists 'SRR9136504' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S28_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S28_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136505"
gz1="$(_compress_if_exists 'SRR9136505_1' || true)"
gz2="$(_compress_if_exists 'SRR9136505_2' || true)"
gzs="$(_compress_if_exists 'SRR9136505' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S26_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S26_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136506"
gz1="$(_compress_if_exists 'SRR9136506_1' || true)"
gz2="$(_compress_if_exists 'SRR9136506_2' || true)"
gzs="$(_compress_if_exists 'SRR9136506' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S27_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S27_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136507"
gz1="$(_compress_if_exists 'SRR9136507_1' || true)"
gz2="$(_compress_if_exists 'SRR9136507_2' || true)"
gzs="$(_compress_if_exists 'SRR9136507' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S28_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S28_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136508"
gz1="$(_compress_if_exists 'SRR9136508_1' || true)"
gz2="$(_compress_if_exists 'SRR9136508_2' || true)"
gzs="$(_compress_if_exists 'SRR9136508' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S34_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S34_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136509"
gz1="$(_compress_if_exists 'SRR9136509_1' || true)"
gz2="$(_compress_if_exists 'SRR9136509_2' || true)"
gzs="$(_compress_if_exists 'SRR9136509' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S25_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S25_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136510"
gz1="$(_compress_if_exists 'SRR9136510_1' || true)"
gz2="$(_compress_if_exists 'SRR9136510_2' || true)"
gzs="$(_compress_if_exists 'SRR9136510' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d3_S27_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d3_S27_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136511"
gz1="$(_compress_if_exists 'SRR9136511_1' || true)"
gz2="$(_compress_if_exists 'SRR9136511_2' || true)"
gzs="$(_compress_if_exists 'SRR9136511' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d3_S26_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d3_S26_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136512"
gz1="$(_compress_if_exists 'SRR9136512_1' || true)"
gz2="$(_compress_if_exists 'SRR9136512_2' || true)"
gzs="$(_compress_if_exists 'SRR9136512' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S29_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S29_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136513"
gz1="$(_compress_if_exists 'SRR9136513_1' || true)"
gz2="$(_compress_if_exists 'SRR9136513_2' || true)"
gzs="$(_compress_if_exists 'SRR9136513' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S30_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S30_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136514"
gz1="$(_compress_if_exists 'SRR9136514_1' || true)"
gz2="$(_compress_if_exists 'SRR9136514_2' || true)"
gzs="$(_compress_if_exists 'SRR9136514' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S31_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S31_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136515"
gz1="$(_compress_if_exists 'SRR9136515_1' || true)"
gz2="$(_compress_if_exists 'SRR9136515_2' || true)"
gzs="$(_compress_if_exists 'SRR9136515' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S32_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S32_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136516"
gz1="$(_compress_if_exists 'SRR9136516_1' || true)"
gz2="$(_compress_if_exists 'SRR9136516_2' || true)"
gzs="$(_compress_if_exists 'SRR9136516' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S37_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S37_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136517"
gz1="$(_compress_if_exists 'SRR9136517_1' || true)"
gz2="$(_compress_if_exists 'SRR9136517_2' || true)"
gzs="$(_compress_if_exists 'SRR9136517' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S40_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S40_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136518"
gz1="$(_compress_if_exists 'SRR9136518_1' || true)"
gz2="$(_compress_if_exists 'SRR9136518_2' || true)"
gzs="$(_compress_if_exists 'SRR9136518' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S29_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S29_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136519"
gz1="$(_compress_if_exists 'SRR9136519_1' || true)"
gz2="$(_compress_if_exists 'SRR9136519_2' || true)"
gzs="$(_compress_if_exists 'SRR9136519' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S30_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S30_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136520"
gz1="$(_compress_if_exists 'SRR9136520_1' || true)"
gz2="$(_compress_if_exists 'SRR9136520_2' || true)"
gzs="$(_compress_if_exists 'SRR9136520' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S31_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S31_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136521"
gz1="$(_compress_if_exists 'SRR9136521_1' || true)"
gz2="$(_compress_if_exists 'SRR9136521_2' || true)"
gzs="$(_compress_if_exists 'SRR9136521' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S31_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S31_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136522"
gz1="$(_compress_if_exists 'SRR9136522_1' || true)"
gz2="$(_compress_if_exists 'SRR9136522_2' || true)"
gzs="$(_compress_if_exists 'SRR9136522' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S32_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S32_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136523"
gz1="$(_compress_if_exists 'SRR9136523_1' || true)"
gz2="$(_compress_if_exists 'SRR9136523_2' || true)"
gzs="$(_compress_if_exists 'SRR9136523' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S29_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S29_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136524"
gz1="$(_compress_if_exists 'SRR9136524_1' || true)"
gz2="$(_compress_if_exists 'SRR9136524_2' || true)"
gzs="$(_compress_if_exists 'SRR9136524' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S38_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S38_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136525"
gz1="$(_compress_if_exists 'SRR9136525_1' || true)"
gz2="$(_compress_if_exists 'SRR9136525_2' || true)"
gzs="$(_compress_if_exists 'SRR9136525' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S29_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S29_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136526"
gz1="$(_compress_if_exists 'SRR9136526_1' || true)"
gz2="$(_compress_if_exists 'SRR9136526_2' || true)"
gzs="$(_compress_if_exists 'SRR9136526' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S29_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S29_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136527"
gz1="$(_compress_if_exists 'SRR9136527_1' || true)"
gz2="$(_compress_if_exists 'SRR9136527_2' || true)"
gzs="$(_compress_if_exists 'SRR9136527' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S30_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S30_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136528"
gz1="$(_compress_if_exists 'SRR9136528_1' || true)"
gz2="$(_compress_if_exists 'SRR9136528_2' || true)"
gzs="$(_compress_if_exists 'SRR9136528' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S30_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S30_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136529"
gz1="$(_compress_if_exists 'SRR9136529_1' || true)"
gz2="$(_compress_if_exists 'SRR9136529_2' || true)"
gzs="$(_compress_if_exists 'SRR9136529' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S31_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S31_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136530"
gz1="$(_compress_if_exists 'SRR9136530_1' || true)"
gz2="$(_compress_if_exists 'SRR9136530_2' || true)"
gzs="$(_compress_if_exists 'SRR9136530' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S31_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S31_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136531"
gz1="$(_compress_if_exists 'SRR9136531_1' || true)"
gz2="$(_compress_if_exists 'SRR9136531_2' || true)"
gzs="$(_compress_if_exists 'SRR9136531' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S32_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S32_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136532"
gz1="$(_compress_if_exists 'SRR9136532_1' || true)"
gz2="$(_compress_if_exists 'SRR9136532_2' || true)"
gzs="$(_compress_if_exists 'SRR9136532' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_S32_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_S32_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136533"
gz1="$(_compress_if_exists 'SRR9136533_1' || true)"
gz2="$(_compress_if_exists 'SRR9136533_2' || true)"
gzs="$(_compress_if_exists 'SRR9136533' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S30_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S30_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136534"
gz1="$(_compress_if_exists 'SRR9136534_1' || true)"
gz2="$(_compress_if_exists 'SRR9136534_2' || true)"
gzs="$(_compress_if_exists 'SRR9136534' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S31_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S31_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136535"
gz1="$(_compress_if_exists 'SRR9136535_1' || true)"
gz2="$(_compress_if_exists 'SRR9136535_2' || true)"
gzs="$(_compress_if_exists 'SRR9136535' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S32_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S32_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136536"
gz1="$(_compress_if_exists 'SRR9136536_1' || true)"
gz2="$(_compress_if_exists 'SRR9136536_2' || true)"
gzs="$(_compress_if_exists 'SRR9136536' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S32_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S32_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136537"
gz1="$(_compress_if_exists 'SRR9136537_1' || true)"
gz2="$(_compress_if_exists 'SRR9136537_2' || true)"
gzs="$(_compress_if_exists 'SRR9136537' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S39_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S39_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136538"
gz1="$(_compress_if_exists 'SRR9136538_1' || true)"
gz2="$(_compress_if_exists 'SRR9136538_2' || true)"
gzs="$(_compress_if_exists 'SRR9136538' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S29_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S29_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136539"
gz1="$(_compress_if_exists 'SRR9136539_1' || true)"
gz2="$(_compress_if_exists 'SRR9136539_2' || true)"
gzs="$(_compress_if_exists 'SRR9136539' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d4_S30_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d4_S30_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136540"
gz1="$(_compress_if_exists 'SRR9136540_1' || true)"
gz2="$(_compress_if_exists 'SRR9136540_2' || true)"
gzs="$(_compress_if_exists 'SRR9136540' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136541"
gz1="$(_compress_if_exists 'SRR9136541_1' || true)"
gz2="$(_compress_if_exists 'SRR9136541_2' || true)"
gzs="$(_compress_if_exists 'SRR9136541' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136542"
gz1="$(_compress_if_exists 'SRR9136542_1' || true)"
gz2="$(_compress_if_exists 'SRR9136542_2' || true)"
gzs="$(_compress_if_exists 'SRR9136542' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136543"
gz1="$(_compress_if_exists 'SRR9136543_1' || true)"
gz2="$(_compress_if_exists 'SRR9136543_2' || true)"
gzs="$(_compress_if_exists 'SRR9136543' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136544"
gz1="$(_compress_if_exists 'SRR9136544_1' || true)"
gz2="$(_compress_if_exists 'SRR9136544_2' || true)"
gzs="$(_compress_if_exists 'SRR9136544' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136545"
gz1="$(_compress_if_exists 'SRR9136545_1' || true)"
gz2="$(_compress_if_exists 'SRR9136545_2' || true)"
gzs="$(_compress_if_exists 'SRR9136545' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136546"
gz1="$(_compress_if_exists 'SRR9136546_1' || true)"
gz2="$(_compress_if_exists 'SRR9136546_2' || true)"
gzs="$(_compress_if_exists 'SRR9136546' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136547"
gz1="$(_compress_if_exists 'SRR9136547_1' || true)"
gz2="$(_compress_if_exists 'SRR9136547_2' || true)"
gzs="$(_compress_if_exists 'SRR9136547' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136548"
gz1="$(_compress_if_exists 'SRR9136548_1' || true)"
gz2="$(_compress_if_exists 'SRR9136548_2' || true)"
gzs="$(_compress_if_exists 'SRR9136548' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136549"
gz1="$(_compress_if_exists 'SRR9136549_1' || true)"
gz2="$(_compress_if_exists 'SRR9136549_2' || true)"
gzs="$(_compress_if_exists 'SRR9136549' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136550"
gz1="$(_compress_if_exists 'SRR9136550_1' || true)"
gz2="$(_compress_if_exists 'SRR9136550_2' || true)"
gzs="$(_compress_if_exists 'SRR9136550' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136551"
gz1="$(_compress_if_exists 'SRR9136551_1' || true)"
gz2="$(_compress_if_exists 'SRR9136551_2' || true)"
gzs="$(_compress_if_exists 'SRR9136551' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136552"
gz1="$(_compress_if_exists 'SRR9136552_1' || true)"
gz2="$(_compress_if_exists 'SRR9136552_2' || true)"
gzs="$(_compress_if_exists 'SRR9136552' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136553"
gz1="$(_compress_if_exists 'SRR9136553_1' || true)"
gz2="$(_compress_if_exists 'SRR9136553_2' || true)"
gzs="$(_compress_if_exists 'SRR9136553' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136554"
gz1="$(_compress_if_exists 'SRR9136554_1' || true)"
gz2="$(_compress_if_exists 'SRR9136554_2' || true)"
gzs="$(_compress_if_exists 'SRR9136554' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136555"
gz1="$(_compress_if_exists 'SRR9136555_1' || true)"
gz2="$(_compress_if_exists 'SRR9136555_2' || true)"
gzs="$(_compress_if_exists 'SRR9136555' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136556"
gz1="$(_compress_if_exists 'SRR9136556_1' || true)"
gz2="$(_compress_if_exists 'SRR9136556_2' || true)"
gzs="$(_compress_if_exists 'SRR9136556' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136557"
gz1="$(_compress_if_exists 'SRR9136557_1' || true)"
gz2="$(_compress_if_exists 'SRR9136557_2' || true)"
gzs="$(_compress_if_exists 'SRR9136557' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136558"
gz1="$(_compress_if_exists 'SRR9136558_1' || true)"
gz2="$(_compress_if_exists 'SRR9136558_2' || true)"
gzs="$(_compress_if_exists 'SRR9136558' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136559"
gz1="$(_compress_if_exists 'SRR9136559_1' || true)"
gz2="$(_compress_if_exists 'SRR9136559_2' || true)"
gzs="$(_compress_if_exists 'SRR9136559' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136560"
gz1="$(_compress_if_exists 'SRR9136560_1' || true)"
gz2="$(_compress_if_exists 'SRR9136560_2' || true)"
gzs="$(_compress_if_exists 'SRR9136560' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136561"
gz1="$(_compress_if_exists 'SRR9136561_1' || true)"
gz2="$(_compress_if_exists 'SRR9136561_2' || true)"
gzs="$(_compress_if_exists 'SRR9136561' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136562"
gz1="$(_compress_if_exists 'SRR9136562_1' || true)"
gz2="$(_compress_if_exists 'SRR9136562_2' || true)"
gzs="$(_compress_if_exists 'SRR9136562' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136563"
gz1="$(_compress_if_exists 'SRR9136563_1' || true)"
gz2="$(_compress_if_exists 'SRR9136563_2' || true)"
gzs="$(_compress_if_exists 'SRR9136563' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136564"
gz1="$(_compress_if_exists 'SRR9136564_1' || true)"
gz2="$(_compress_if_exists 'SRR9136564_2' || true)"
gzs="$(_compress_if_exists 'SRR9136564' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136565"
gz1="$(_compress_if_exists 'SRR9136565_1' || true)"
gz2="$(_compress_if_exists 'SRR9136565_2' || true)"
gzs="$(_compress_if_exists 'SRR9136565' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136566"
gz1="$(_compress_if_exists 'SRR9136566_1' || true)"
gz2="$(_compress_if_exists 'SRR9136566_2' || true)"
gzs="$(_compress_if_exists 'SRR9136566' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136567"
gz1="$(_compress_if_exists 'SRR9136567_1' || true)"
gz2="$(_compress_if_exists 'SRR9136567_2' || true)"
gzs="$(_compress_if_exists 'SRR9136567' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_naive_S21_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_naive_S21_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136568"
gz1="$(_compress_if_exists 'SRR9136568_1' || true)"
gz2="$(_compress_if_exists 'SRR9136568_2' || true)"
gzs="$(_compress_if_exists 'SRR9136568' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136569"
gz1="$(_compress_if_exists 'SRR9136569_1' || true)"
gz2="$(_compress_if_exists 'SRR9136569_2' || true)"
gzs="$(_compress_if_exists 'SRR9136569' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136570"
gz1="$(_compress_if_exists 'SRR9136570_1' || true)"
gz2="$(_compress_if_exists 'SRR9136570_2' || true)"
gzs="$(_compress_if_exists 'SRR9136570' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S4_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S4_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136571"
gz1="$(_compress_if_exists 'SRR9136571_1' || true)"
gz2="$(_compress_if_exists 'SRR9136571_2' || true)"
gzs="$(_compress_if_exists 'SRR9136571' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_naive_S22_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_naive_S22_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136572"
gz1="$(_compress_if_exists 'SRR9136572_1' || true)"
gz2="$(_compress_if_exists 'SRR9136572_2' || true)"
gzs="$(_compress_if_exists 'SRR9136572' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S1_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S1_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136573"
gz1="$(_compress_if_exists 'SRR9136573_1' || true)"
gz2="$(_compress_if_exists 'SRR9136573_2' || true)"
gzs="$(_compress_if_exists 'SRR9136573' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "naive_S2_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "naive_S2_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136574"
gz1="$(_compress_if_exists 'SRR9136574_1' || true)"
gz2="$(_compress_if_exists 'SRR9136574_2' || true)"
gzs="$(_compress_if_exists 'SRR9136574' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136575"
gz1="$(_compress_if_exists 'SRR9136575_1' || true)"
gz2="$(_compress_if_exists 'SRR9136575_2' || true)"
gzs="$(_compress_if_exists 'SRR9136575' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136576"
gz1="$(_compress_if_exists 'SRR9136576_1' || true)"
gz2="$(_compress_if_exists 'SRR9136576_2' || true)"
gzs="$(_compress_if_exists 'SRR9136576' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136577"
gz1="$(_compress_if_exists 'SRR9136577_1' || true)"
gz2="$(_compress_if_exists 'SRR9136577_2' || true)"
gzs="$(_compress_if_exists 'SRR9136577' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S21_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S21_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136578"
gz1="$(_compress_if_exists 'SRR9136578_1' || true)"
gz2="$(_compress_if_exists 'SRR9136578_2' || true)"
gzs="$(_compress_if_exists 'SRR9136578' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S24_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S24_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136579"
gz1="$(_compress_if_exists 'SRR9136579_1' || true)"
gz2="$(_compress_if_exists 'SRR9136579_2' || true)"
gzs="$(_compress_if_exists 'SRR9136579' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S13_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S13_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136580"
gz1="$(_compress_if_exists 'SRR9136580_1' || true)"
gz2="$(_compress_if_exists 'SRR9136580_2' || true)"
gzs="$(_compress_if_exists 'SRR9136580' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S26_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S26_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136581"
gz1="$(_compress_if_exists 'SRR9136581_1' || true)"
gz2="$(_compress_if_exists 'SRR9136581_2' || true)"
gzs="$(_compress_if_exists 'SRR9136581' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S14_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S14_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136582"
gz1="$(_compress_if_exists 'SRR9136582_1' || true)"
gz2="$(_compress_if_exists 'SRR9136582_2' || true)"
gzs="$(_compress_if_exists 'SRR9136582' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S15_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S15_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136583"
gz1="$(_compress_if_exists 'SRR9136583_1' || true)"
gz2="$(_compress_if_exists 'SRR9136583_2' || true)"
gzs="$(_compress_if_exists 'SRR9136583' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S16_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S16_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136584"
gz1="$(_compress_if_exists 'SRR9136584_1' || true)"
gz2="$(_compress_if_exists 'SRR9136584_2' || true)"
gzs="$(_compress_if_exists 'SRR9136584' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S22_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S22_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136585"
gz1="$(_compress_if_exists 'SRR9136585_1' || true)"
gz2="$(_compress_if_exists 'SRR9136585_2' || true)"
gzs="$(_compress_if_exists 'SRR9136585' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S13_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S13_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136586"
gz1="$(_compress_if_exists 'SRR9136586_1' || true)"
gz2="$(_compress_if_exists 'SRR9136586_2' || true)"
gzs="$(_compress_if_exists 'SRR9136586' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S14_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S14_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136587"
gz1="$(_compress_if_exists 'SRR9136587_1' || true)"
gz2="$(_compress_if_exists 'SRR9136587_2' || true)"
gzs="$(_compress_if_exists 'SRR9136587' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S15_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S15_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136588"
gz1="$(_compress_if_exists 'SRR9136588_1' || true)"
gz2="$(_compress_if_exists 'SRR9136588_2' || true)"
gzs="$(_compress_if_exists 'SRR9136588' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S16_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S16_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136589"
gz1="$(_compress_if_exists 'SRR9136589_1' || true)"
gz2="$(_compress_if_exists 'SRR9136589_2' || true)"
gzs="$(_compress_if_exists 'SRR9136589' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_2m_TRM_d4_S23_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_2m_TRM_d4_S23_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136590"
gz1="$(_compress_if_exists 'SRR9136590_1' || true)"
gz2="$(_compress_if_exists 'SRR9136590_2' || true)"
gzs="$(_compress_if_exists 'SRR9136590' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S27_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S27_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136591"
gz1="$(_compress_if_exists 'SRR9136591_1' || true)"
gz2="$(_compress_if_exists 'SRR9136591_2' || true)"
gzs="$(_compress_if_exists 'SRR9136591' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136592"
gz1="$(_compress_if_exists 'SRR9136592_1' || true)"
gz2="$(_compress_if_exists 'SRR9136592_2' || true)"
gzs="$(_compress_if_exists 'SRR9136592' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S28_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S28_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136593"
gz1="$(_compress_if_exists 'SRR9136593_1' || true)"
gz2="$(_compress_if_exists 'SRR9136593_2' || true)"
gzs="$(_compress_if_exists 'SRR9136593' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136594"
gz1="$(_compress_if_exists 'SRR9136594_1' || true)"
gz2="$(_compress_if_exists 'SRR9136594_2' || true)"
gzs="$(_compress_if_exists 'SRR9136594' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d4_TRM_S25_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d4_TRM_S25_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136595"
gz1="$(_compress_if_exists 'SRR9136595_1' || true)"
gz2="$(_compress_if_exists 'SRR9136595_2' || true)"
gzs="$(_compress_if_exists 'SRR9136595' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S10_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S10_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136596"
gz1="$(_compress_if_exists 'SRR9136596_1' || true)"
gz2="$(_compress_if_exists 'SRR9136596_2' || true)"
gzs="$(_compress_if_exists 'SRR9136596' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136597"
gz1="$(_compress_if_exists 'SRR9136597_1' || true)"
gz2="$(_compress_if_exists 'SRR9136597_2' || true)"
gzs="$(_compress_if_exists 'SRR9136597' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S4_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S4_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136598"
gz1="$(_compress_if_exists 'SRR9136598_1' || true)"
gz2="$(_compress_if_exists 'SRR9136598_2' || true)"
gzs="$(_compress_if_exists 'SRR9136598' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136599"
gz1="$(_compress_if_exists 'SRR9136599_1' || true)"
gz2="$(_compress_if_exists 'SRR9136599_2' || true)"
gzs="$(_compress_if_exists 'SRR9136599' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136600"
gz1="$(_compress_if_exists 'SRR9136600_1' || true)"
gz2="$(_compress_if_exists 'SRR9136600_2' || true)"
gzs="$(_compress_if_exists 'SRR9136600' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136601"
gz1="$(_compress_if_exists 'SRR9136601_1' || true)"
gz2="$(_compress_if_exists 'SRR9136601_2' || true)"
gzs="$(_compress_if_exists 'SRR9136601' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136602"
gz1="$(_compress_if_exists 'SRR9136602_1' || true)"
gz2="$(_compress_if_exists 'SRR9136602_2' || true)"
gzs="$(_compress_if_exists 'SRR9136602' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136603"
gz1="$(_compress_if_exists 'SRR9136603_1' || true)"
gz2="$(_compress_if_exists 'SRR9136603_2' || true)"
gzs="$(_compress_if_exists 'SRR9136603' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S12_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S12_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136604"
gz1="$(_compress_if_exists 'SRR9136604_1' || true)"
gz2="$(_compress_if_exists 'SRR9136604_2' || true)"
gzs="$(_compress_if_exists 'SRR9136604' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136605"
gz1="$(_compress_if_exists 'SRR9136605_1' || true)"
gz2="$(_compress_if_exists 'SRR9136605_2' || true)"
gzs="$(_compress_if_exists 'SRR9136605' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S4_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S4_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136606"
gz1="$(_compress_if_exists 'SRR9136606_1' || true)"
gz2="$(_compress_if_exists 'SRR9136606_2' || true)"
gzs="$(_compress_if_exists 'SRR9136606' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136607"
gz1="$(_compress_if_exists 'SRR9136607_1' || true)"
gz2="$(_compress_if_exists 'SRR9136607_2' || true)"
gzs="$(_compress_if_exists 'SRR9136607' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136608"
gz1="$(_compress_if_exists 'SRR9136608_1' || true)"
gz2="$(_compress_if_exists 'SRR9136608_2' || true)"
gzs="$(_compress_if_exists 'SRR9136608' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136609"
gz1="$(_compress_if_exists 'SRR9136609_1' || true)"
gz2="$(_compress_if_exists 'SRR9136609_2' || true)"
gzs="$(_compress_if_exists 'SRR9136609' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136610"
gz1="$(_compress_if_exists 'SRR9136610_1' || true)"
gz2="$(_compress_if_exists 'SRR9136610_2' || true)"
gzs="$(_compress_if_exists 'SRR9136610' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136611"
gz1="$(_compress_if_exists 'SRR9136611_1' || true)"
gz2="$(_compress_if_exists 'SRR9136611_2' || true)"
gzs="$(_compress_if_exists 'SRR9136611' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136612"
gz1="$(_compress_if_exists 'SRR9136612_1' || true)"
gz2="$(_compress_if_exists 'SRR9136612_2' || true)"
gzs="$(_compress_if_exists 'SRR9136612' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136613"
gz1="$(_compress_if_exists 'SRR9136613_1' || true)"
gz2="$(_compress_if_exists 'SRR9136613_2' || true)"
gzs="$(_compress_if_exists 'SRR9136613' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136614"
gz1="$(_compress_if_exists 'SRR9136614_1' || true)"
gz2="$(_compress_if_exists 'SRR9136614_2' || true)"
gzs="$(_compress_if_exists 'SRR9136614' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S9_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S9_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136615"
gz1="$(_compress_if_exists 'SRR9136615_1' || true)"
gz2="$(_compress_if_exists 'SRR9136615_2' || true)"
gzs="$(_compress_if_exists 'SRR9136615' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136616"
gz1="$(_compress_if_exists 'SRR9136616_1' || true)"
gz2="$(_compress_if_exists 'SRR9136616_2' || true)"
gzs="$(_compress_if_exists 'SRR9136616' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136617"
gz1="$(_compress_if_exists 'SRR9136617_1' || true)"
gz2="$(_compress_if_exists 'SRR9136617_2' || true)"
gzs="$(_compress_if_exists 'SRR9136617' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136618"
gz1="$(_compress_if_exists 'SRR9136618_1' || true)"
gz2="$(_compress_if_exists 'SRR9136618_2' || true)"
gzs="$(_compress_if_exists 'SRR9136618' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136619"
gz1="$(_compress_if_exists 'SRR9136619_1' || true)"
gz2="$(_compress_if_exists 'SRR9136619_2' || true)"
gzs="$(_compress_if_exists 'SRR9136619' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136620"
gz1="$(_compress_if_exists 'SRR9136620_1' || true)"
gz2="$(_compress_if_exists 'SRR9136620_2' || true)"
gzs="$(_compress_if_exists 'SRR9136620' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136621"
gz1="$(_compress_if_exists 'SRR9136621_1' || true)"
gz2="$(_compress_if_exists 'SRR9136621_2' || true)"
gzs="$(_compress_if_exists 'SRR9136621' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136622"
gz1="$(_compress_if_exists 'SRR9136622_1' || true)"
gz2="$(_compress_if_exists 'SRR9136622_2' || true)"
gzs="$(_compress_if_exists 'SRR9136622' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136623"
gz1="$(_compress_if_exists 'SRR9136623_1' || true)"
gz2="$(_compress_if_exists 'SRR9136623_2' || true)"
gzs="$(_compress_if_exists 'SRR9136623' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136624"
gz1="$(_compress_if_exists 'SRR9136624_1' || true)"
gz2="$(_compress_if_exists 'SRR9136624_2' || true)"
gzs="$(_compress_if_exists 'SRR9136624' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136625"
gz1="$(_compress_if_exists 'SRR9136625_1' || true)"
gz2="$(_compress_if_exists 'SRR9136625_2' || true)"
gzs="$(_compress_if_exists 'SRR9136625' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136626"
gz1="$(_compress_if_exists 'SRR9136626_1' || true)"
gz2="$(_compress_if_exists 'SRR9136626_2' || true)"
gzs="$(_compress_if_exists 'SRR9136626' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136627"
gz1="$(_compress_if_exists 'SRR9136627_1' || true)"
gz2="$(_compress_if_exists 'SRR9136627_2' || true)"
gzs="$(_compress_if_exists 'SRR9136627' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136628"
gz1="$(_compress_if_exists 'SRR9136628_1' || true)"
gz2="$(_compress_if_exists 'SRR9136628_2' || true)"
gzs="$(_compress_if_exists 'SRR9136628' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136629"
gz1="$(_compress_if_exists 'SRR9136629_1' || true)"
gz2="$(_compress_if_exists 'SRR9136629_2' || true)"
gzs="$(_compress_if_exists 'SRR9136629' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136630"
gz1="$(_compress_if_exists 'SRR9136630_1' || true)"
gz2="$(_compress_if_exists 'SRR9136630_2' || true)"
gzs="$(_compress_if_exists 'SRR9136630' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136631"
gz1="$(_compress_if_exists 'SRR9136631_1' || true)"
gz2="$(_compress_if_exists 'SRR9136631_2' || true)"
gzs="$(_compress_if_exists 'SRR9136631' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136632"
gz1="$(_compress_if_exists 'SRR9136632_1' || true)"
gz2="$(_compress_if_exists 'SRR9136632_2' || true)"
gzs="$(_compress_if_exists 'SRR9136632' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136633"
gz1="$(_compress_if_exists 'SRR9136633_1' || true)"
gz2="$(_compress_if_exists 'SRR9136633_2' || true)"
gzs="$(_compress_if_exists 'SRR9136633' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S29_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S29_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136634"
gz1="$(_compress_if_exists 'SRR9136634_1' || true)"
gz2="$(_compress_if_exists 'SRR9136634_2' || true)"
gzs="$(_compress_if_exists 'SRR9136634' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136635"
gz1="$(_compress_if_exists 'SRR9136635_1' || true)"
gz2="$(_compress_if_exists 'SRR9136635_2' || true)"
gzs="$(_compress_if_exists 'SRR9136635' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136636"
gz1="$(_compress_if_exists 'SRR9136636_1' || true)"
gz2="$(_compress_if_exists 'SRR9136636_2' || true)"
gzs="$(_compress_if_exists 'SRR9136636' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136637"
gz1="$(_compress_if_exists 'SRR9136637_1' || true)"
gz2="$(_compress_if_exists 'SRR9136637_2' || true)"
gzs="$(_compress_if_exists 'SRR9136637' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136638"
gz1="$(_compress_if_exists 'SRR9136638_1' || true)"
gz2="$(_compress_if_exists 'SRR9136638_2' || true)"
gzs="$(_compress_if_exists 'SRR9136638' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136639"
gz1="$(_compress_if_exists 'SRR9136639_1' || true)"
gz2="$(_compress_if_exists 'SRR9136639_2' || true)"
gzs="$(_compress_if_exists 'SRR9136639' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S30_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S30_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136640"
gz1="$(_compress_if_exists 'SRR9136640_1' || true)"
gz2="$(_compress_if_exists 'SRR9136640_2' || true)"
gzs="$(_compress_if_exists 'SRR9136640' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S31_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S31_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136641"
gz1="$(_compress_if_exists 'SRR9136641_1' || true)"
gz2="$(_compress_if_exists 'SRR9136641_2' || true)"
gzs="$(_compress_if_exists 'SRR9136641' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d5_S32_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d5_S32_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136642"
gz1="$(_compress_if_exists 'SRR9136642_1' || true)"
gz2="$(_compress_if_exists 'SRR9136642_2' || true)"
gzs="$(_compress_if_exists 'SRR9136642' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d5_S11_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d5_S11_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136643"
gz1="$(_compress_if_exists 'SRR9136643_1' || true)"
gz2="$(_compress_if_exists 'SRR9136643_2' || true)"
gzs="$(_compress_if_exists 'SRR9136643' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S13_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S13_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136644"
gz1="$(_compress_if_exists 'SRR9136644_1' || true)"
gz2="$(_compress_if_exists 'SRR9136644_2' || true)"
gzs="$(_compress_if_exists 'SRR9136644' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S6_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S6_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136645"
gz1="$(_compress_if_exists 'SRR9136645_1' || true)"
gz2="$(_compress_if_exists 'SRR9136645_2' || true)"
gzs="$(_compress_if_exists 'SRR9136645' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S8_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S8_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136646"
gz1="$(_compress_if_exists 'SRR9136646_1' || true)"
gz2="$(_compress_if_exists 'SRR9136646_2' || true)"
gzs="$(_compress_if_exists 'SRR9136646' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136647"
gz1="$(_compress_if_exists 'SRR9136647_1' || true)"
gz2="$(_compress_if_exists 'SRR9136647_2' || true)"
gzs="$(_compress_if_exists 'SRR9136647' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136648"
gz1="$(_compress_if_exists 'SRR9136648_1' || true)"
gz2="$(_compress_if_exists 'SRR9136648_2' || true)"
gzs="$(_compress_if_exists 'SRR9136648' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136649"
gz1="$(_compress_if_exists 'SRR9136649_1' || true)"
gz2="$(_compress_if_exists 'SRR9136649_2' || true)"
gzs="$(_compress_if_exists 'SRR9136649' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136650"
gz1="$(_compress_if_exists 'SRR9136650_1' || true)"
gz2="$(_compress_if_exists 'SRR9136650_2' || true)"
gzs="$(_compress_if_exists 'SRR9136650' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136651"
gz1="$(_compress_if_exists 'SRR9136651_1' || true)"
gz2="$(_compress_if_exists 'SRR9136651_2' || true)"
gzs="$(_compress_if_exists 'SRR9136651' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S15_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S15_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136652"
gz1="$(_compress_if_exists 'SRR9136652_1' || true)"
gz2="$(_compress_if_exists 'SRR9136652_2' || true)"
gzs="$(_compress_if_exists 'SRR9136652' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S6_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S6_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136653"
gz1="$(_compress_if_exists 'SRR9136653_1' || true)"
gz2="$(_compress_if_exists 'SRR9136653_2' || true)"
gzs="$(_compress_if_exists 'SRR9136653' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S8_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S8_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136654"
gz1="$(_compress_if_exists 'SRR9136654_1' || true)"
gz2="$(_compress_if_exists 'SRR9136654_2' || true)"
gzs="$(_compress_if_exists 'SRR9136654' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136655"
gz1="$(_compress_if_exists 'SRR9136655_1' || true)"
gz2="$(_compress_if_exists 'SRR9136655_2' || true)"
gzs="$(_compress_if_exists 'SRR9136655' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136656"
gz1="$(_compress_if_exists 'SRR9136656_1' || true)"
gz2="$(_compress_if_exists 'SRR9136656_2' || true)"
gzs="$(_compress_if_exists 'SRR9136656' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136657"
gz1="$(_compress_if_exists 'SRR9136657_1' || true)"
gz2="$(_compress_if_exists 'SRR9136657_2' || true)"
gzs="$(_compress_if_exists 'SRR9136657' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136658"
gz1="$(_compress_if_exists 'SRR9136658_1' || true)"
gz2="$(_compress_if_exists 'SRR9136658_2' || true)"
gzs="$(_compress_if_exists 'SRR9136658' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136659"
gz1="$(_compress_if_exists 'SRR9136659_1' || true)"
gz2="$(_compress_if_exists 'SRR9136659_2' || true)"
gzs="$(_compress_if_exists 'SRR9136659' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136660"
gz1="$(_compress_if_exists 'SRR9136660_1' || true)"
gz2="$(_compress_if_exists 'SRR9136660_2' || true)"
gzs="$(_compress_if_exists 'SRR9136660' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S16_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S16_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136661"
gz1="$(_compress_if_exists 'SRR9136661_1' || true)"
gz2="$(_compress_if_exists 'SRR9136661_2' || true)"
gzs="$(_compress_if_exists 'SRR9136661' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S6_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S6_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136662"
gz1="$(_compress_if_exists 'SRR9136662_1' || true)"
gz2="$(_compress_if_exists 'SRR9136662_2' || true)"
gzs="$(_compress_if_exists 'SRR9136662' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S8_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S8_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136663"
gz1="$(_compress_if_exists 'SRR9136663_1' || true)"
gz2="$(_compress_if_exists 'SRR9136663_2' || true)"
gzs="$(_compress_if_exists 'SRR9136663' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136664"
gz1="$(_compress_if_exists 'SRR9136664_1' || true)"
gz2="$(_compress_if_exists 'SRR9136664_2' || true)"
gzs="$(_compress_if_exists 'SRR9136664' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136665"
gz1="$(_compress_if_exists 'SRR9136665_1' || true)"
gz2="$(_compress_if_exists 'SRR9136665_2' || true)"
gzs="$(_compress_if_exists 'SRR9136665' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S7_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S7_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136666"
gz1="$(_compress_if_exists 'SRR9136666_1' || true)"
gz2="$(_compress_if_exists 'SRR9136666_2' || true)"
gzs="$(_compress_if_exists 'SRR9136666' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136667"
gz1="$(_compress_if_exists 'SRR9136667_1' || true)"
gz2="$(_compress_if_exists 'SRR9136667_2' || true)"
gzs="$(_compress_if_exists 'SRR9136667' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136668"
gz1="$(_compress_if_exists 'SRR9136668_1' || true)"
gz2="$(_compress_if_exists 'SRR9136668_2' || true)"
gzs="$(_compress_if_exists 'SRR9136668' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136669"
gz1="$(_compress_if_exists 'SRR9136669_1' || true)"
gz2="$(_compress_if_exists 'SRR9136669_2' || true)"
gzs="$(_compress_if_exists 'SRR9136669' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136670"
gz1="$(_compress_if_exists 'SRR9136670_1' || true)"
gz2="$(_compress_if_exists 'SRR9136670_2' || true)"
gzs="$(_compress_if_exists 'SRR9136670' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S7_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S7_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136671"
gz1="$(_compress_if_exists 'SRR9136671_1' || true)"
gz2="$(_compress_if_exists 'SRR9136671_2' || true)"
gzs="$(_compress_if_exists 'SRR9136671' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136672"
gz1="$(_compress_if_exists 'SRR9136672_1' || true)"
gz2="$(_compress_if_exists 'SRR9136672_2' || true)"
gzs="$(_compress_if_exists 'SRR9136672' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136673"
gz1="$(_compress_if_exists 'SRR9136673_1' || true)"
gz2="$(_compress_if_exists 'SRR9136673_2' || true)"
gzs="$(_compress_if_exists 'SRR9136673' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136674"
gz1="$(_compress_if_exists 'SRR9136674_1' || true)"
gz2="$(_compress_if_exists 'SRR9136674_2' || true)"
gzs="$(_compress_if_exists 'SRR9136674' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136675"
gz1="$(_compress_if_exists 'SRR9136675_1' || true)"
gz2="$(_compress_if_exists 'SRR9136675_2' || true)"
gzs="$(_compress_if_exists 'SRR9136675' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136676"
gz1="$(_compress_if_exists 'SRR9136676_1' || true)"
gz2="$(_compress_if_exists 'SRR9136676_2' || true)"
gzs="$(_compress_if_exists 'SRR9136676' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136677"
gz1="$(_compress_if_exists 'SRR9136677_1' || true)"
gz2="$(_compress_if_exists 'SRR9136677_2' || true)"
gzs="$(_compress_if_exists 'SRR9136677' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136678"
gz1="$(_compress_if_exists 'SRR9136678_1' || true)"
gz2="$(_compress_if_exists 'SRR9136678_2' || true)"
gzs="$(_compress_if_exists 'SRR9136678' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136679"
gz1="$(_compress_if_exists 'SRR9136679_1' || true)"
gz2="$(_compress_if_exists 'SRR9136679_2' || true)"
gzs="$(_compress_if_exists 'SRR9136679' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S7_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S7_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136680"
gz1="$(_compress_if_exists 'SRR9136680_1' || true)"
gz2="$(_compress_if_exists 'SRR9136680_2' || true)"
gzs="$(_compress_if_exists 'SRR9136680' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136681"
gz1="$(_compress_if_exists 'SRR9136681_1' || true)"
gz2="$(_compress_if_exists 'SRR9136681_2' || true)"
gzs="$(_compress_if_exists 'SRR9136681' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S33_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S33_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136682"
gz1="$(_compress_if_exists 'SRR9136682_1' || true)"
gz2="$(_compress_if_exists 'SRR9136682_2' || true)"
gzs="$(_compress_if_exists 'SRR9136682' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136683"
gz1="$(_compress_if_exists 'SRR9136683_1' || true)"
gz2="$(_compress_if_exists 'SRR9136683_2' || true)"
gzs="$(_compress_if_exists 'SRR9136683' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136684"
gz1="$(_compress_if_exists 'SRR9136684_1' || true)"
gz2="$(_compress_if_exists 'SRR9136684_2' || true)"
gzs="$(_compress_if_exists 'SRR9136684' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136685"
gz1="$(_compress_if_exists 'SRR9136685_1' || true)"
gz2="$(_compress_if_exists 'SRR9136685_2' || true)"
gzs="$(_compress_if_exists 'SRR9136685' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136686"
gz1="$(_compress_if_exists 'SRR9136686_1' || true)"
gz2="$(_compress_if_exists 'SRR9136686_2' || true)"
gzs="$(_compress_if_exists 'SRR9136686' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136687"
gz1="$(_compress_if_exists 'SRR9136687_1' || true)"
gz2="$(_compress_if_exists 'SRR9136687_2' || true)"
gzs="$(_compress_if_exists 'SRR9136687' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S34_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S34_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136688"
gz1="$(_compress_if_exists 'SRR9136688_1' || true)"
gz2="$(_compress_if_exists 'SRR9136688_2' || true)"
gzs="$(_compress_if_exists 'SRR9136688' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S35_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S35_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136689"
gz1="$(_compress_if_exists 'SRR9136689_1' || true)"
gz2="$(_compress_if_exists 'SRR9136689_2' || true)"
gzs="$(_compress_if_exists 'SRR9136689' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d6_S36_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d6_S36_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136690"
gz1="$(_compress_if_exists 'SRR9136690_1' || true)"
gz2="$(_compress_if_exists 'SRR9136690_2' || true)"
gzs="$(_compress_if_exists 'SRR9136690' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_d6_S14_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_d6_S14_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136691"
gz1="$(_compress_if_exists 'SRR9136691_1' || true)"
gz2="$(_compress_if_exists 'SRR9136691_2' || true)"
gzs="$(_compress_if_exists 'SRR9136691' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S5_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S5_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136692"
gz1="$(_compress_if_exists 'SRR9136692_1' || true)"
gz2="$(_compress_if_exists 'SRR9136692_2' || true)"
gzs="$(_compress_if_exists 'SRR9136692' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S6_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S6_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136693"
gz1="$(_compress_if_exists 'SRR9136693_1' || true)"
gz2="$(_compress_if_exists 'SRR9136693_2' || true)"
gzs="$(_compress_if_exists 'SRR9136693' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S8_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S8_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136694"
gz1="$(_compress_if_exists 'SRR9136694_1' || true)"
gz2="$(_compress_if_exists 'SRR9136694_2' || true)"
gzs="$(_compress_if_exists 'SRR9136694' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S5_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S5_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136695"
gz1="$(_compress_if_exists 'SRR9136695_1' || true)"
gz2="$(_compress_if_exists 'SRR9136695_2' || true)"
gzs="$(_compress_if_exists 'SRR9136695' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S7_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S7_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136696"
gz1="$(_compress_if_exists 'SRR9136696_1' || true)"
gz2="$(_compress_if_exists 'SRR9136696_2' || true)"
gzs="$(_compress_if_exists 'SRR9136696' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S8_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S8_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136697"
gz1="$(_compress_if_exists 'SRR9136697_1' || true)"
gz2="$(_compress_if_exists 'SRR9136697_2' || true)"
gzs="$(_compress_if_exists 'SRR9136697' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S6_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S6_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136698"
gz1="$(_compress_if_exists 'SRR9136698_1' || true)"
gz2="$(_compress_if_exists 'SRR9136698_2' || true)"
gzs="$(_compress_if_exists 'SRR9136698' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_1_S7_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_1_S7_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136699"
gz1="$(_compress_if_exists 'SRR9136699_1' || true)"
gz2="$(_compress_if_exists 'SRR9136699_2' || true)"
gzs="$(_compress_if_exists 'SRR9136699' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S10_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S10_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136700"
gz1="$(_compress_if_exists 'SRR9136700_1' || true)"
gz2="$(_compress_if_exists 'SRR9136700_2' || true)"
gzs="$(_compress_if_exists 'SRR9136700' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S11_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S11_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136701"
gz1="$(_compress_if_exists 'SRR9136701_1' || true)"
gz2="$(_compress_if_exists 'SRR9136701_2' || true)"
gzs="$(_compress_if_exists 'SRR9136701' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S9_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S9_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136702"
gz1="$(_compress_if_exists 'SRR9136702_1' || true)"
gz2="$(_compress_if_exists 'SRR9136702_2' || true)"
gzs="$(_compress_if_exists 'SRR9136702' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S10_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S10_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136703"
gz1="$(_compress_if_exists 'SRR9136703_1' || true)"
gz2="$(_compress_if_exists 'SRR9136703_2' || true)"
gzs="$(_compress_if_exists 'SRR9136703' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S12_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S12_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136704"
gz1="$(_compress_if_exists 'SRR9136704_1' || true)"
gz2="$(_compress_if_exists 'SRR9136704_2' || true)"
gzs="$(_compress_if_exists 'SRR9136704' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S9_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S9_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136705"
gz1="$(_compress_if_exists 'SRR9136705_1' || true)"
gz2="$(_compress_if_exists 'SRR9136705_2' || true)"
gzs="$(_compress_if_exists 'SRR9136705' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S11_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S11_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136706"
gz1="$(_compress_if_exists 'SRR9136706_1' || true)"
gz2="$(_compress_if_exists 'SRR9136706_2' || true)"
gzs="$(_compress_if_exists 'SRR9136706' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "D7_spleen_2_S12_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "D7_spleen_2_S12_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136707"
gz1="$(_compress_if_exists 'SRR9136707_1' || true)"
gz2="$(_compress_if_exists 'SRR9136707_2' || true)"
gzs="$(_compress_if_exists 'SRR9136707' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136708"
gz1="$(_compress_if_exists 'SRR9136708_1' || true)"
gz2="$(_compress_if_exists 'SRR9136708_2' || true)"
gzs="$(_compress_if_exists 'SRR9136708' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136709"
gz1="$(_compress_if_exists 'SRR9136709_1' || true)"
gz2="$(_compress_if_exists 'SRR9136709_2' || true)"
gzs="$(_compress_if_exists 'SRR9136709' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136710"
gz1="$(_compress_if_exists 'SRR9136710_1' || true)"
gz2="$(_compress_if_exists 'SRR9136710_2' || true)"
gzs="$(_compress_if_exists 'SRR9136710' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136711"
gz1="$(_compress_if_exists 'SRR9136711_1' || true)"
gz2="$(_compress_if_exists 'SRR9136711_2' || true)"
gzs="$(_compress_if_exists 'SRR9136711' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136712"
gz1="$(_compress_if_exists 'SRR9136712_1' || true)"
gz2="$(_compress_if_exists 'SRR9136712_2' || true)"
gzs="$(_compress_if_exists 'SRR9136712' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136713"
gz1="$(_compress_if_exists 'SRR9136713_1' || true)"
gz2="$(_compress_if_exists 'SRR9136713_2' || true)"
gzs="$(_compress_if_exists 'SRR9136713' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136714"
gz1="$(_compress_if_exists 'SRR9136714_1' || true)"
gz2="$(_compress_if_exists 'SRR9136714_2' || true)"
gzs="$(_compress_if_exists 'SRR9136714' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136715"
gz1="$(_compress_if_exists 'SRR9136715_1' || true)"
gz2="$(_compress_if_exists 'SRR9136715_2' || true)"
gzs="$(_compress_if_exists 'SRR9136715' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136716"
gz1="$(_compress_if_exists 'SRR9136716_1' || true)"
gz2="$(_compress_if_exists 'SRR9136716_2' || true)"
gzs="$(_compress_if_exists 'SRR9136716' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136717"
gz1="$(_compress_if_exists 'SRR9136717_1' || true)"
gz2="$(_compress_if_exists 'SRR9136717_2' || true)"
gzs="$(_compress_if_exists 'SRR9136717' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136718"
gz1="$(_compress_if_exists 'SRR9136718_1' || true)"
gz2="$(_compress_if_exists 'SRR9136718_2' || true)"
gzs="$(_compress_if_exists 'SRR9136718' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136719"
gz1="$(_compress_if_exists 'SRR9136719_1' || true)"
gz2="$(_compress_if_exists 'SRR9136719_2' || true)"
gzs="$(_compress_if_exists 'SRR9136719' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136720"
gz1="$(_compress_if_exists 'SRR9136720_1' || true)"
gz2="$(_compress_if_exists 'SRR9136720_2' || true)"
gzs="$(_compress_if_exists 'SRR9136720' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136721"
gz1="$(_compress_if_exists 'SRR9136721_1' || true)"
gz2="$(_compress_if_exists 'SRR9136721_2' || true)"
gzs="$(_compress_if_exists 'SRR9136721' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136722"
gz1="$(_compress_if_exists 'SRR9136722_1' || true)"
gz2="$(_compress_if_exists 'SRR9136722_2' || true)"
gzs="$(_compress_if_exists 'SRR9136722' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136723"
gz1="$(_compress_if_exists 'SRR9136723_1' || true)"
gz2="$(_compress_if_exists 'SRR9136723_2' || true)"
gzs="$(_compress_if_exists 'SRR9136723' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136724"
gz1="$(_compress_if_exists 'SRR9136724_1' || true)"
gz2="$(_compress_if_exists 'SRR9136724_2' || true)"
gzs="$(_compress_if_exists 'SRR9136724' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136725"
gz1="$(_compress_if_exists 'SRR9136725_1' || true)"
gz2="$(_compress_if_exists 'SRR9136725_2' || true)"
gzs="$(_compress_if_exists 'SRR9136725' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136726"
gz1="$(_compress_if_exists 'SRR9136726_1' || true)"
gz2="$(_compress_if_exists 'SRR9136726_2' || true)"
gzs="$(_compress_if_exists 'SRR9136726' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136727"
gz1="$(_compress_if_exists 'SRR9136727_1' || true)"
gz2="$(_compress_if_exists 'SRR9136727_2' || true)"
gzs="$(_compress_if_exists 'SRR9136727' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136728"
gz1="$(_compress_if_exists 'SRR9136728_1' || true)"
gz2="$(_compress_if_exists 'SRR9136728_2' || true)"
gzs="$(_compress_if_exists 'SRR9136728' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136729"
gz1="$(_compress_if_exists 'SRR9136729_1' || true)"
gz2="$(_compress_if_exists 'SRR9136729_2' || true)"
gzs="$(_compress_if_exists 'SRR9136729' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136730"
gz1="$(_compress_if_exists 'SRR9136730_1' || true)"
gz2="$(_compress_if_exists 'SRR9136730_2' || true)"
gzs="$(_compress_if_exists 'SRR9136730' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136731"
gz1="$(_compress_if_exists 'SRR9136731_1' || true)"
gz2="$(_compress_if_exists 'SRR9136731_2' || true)"
gzs="$(_compress_if_exists 'SRR9136731' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136732"
gz1="$(_compress_if_exists 'SRR9136732_1' || true)"
gz2="$(_compress_if_exists 'SRR9136732_2' || true)"
gzs="$(_compress_if_exists 'SRR9136732' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136733"
gz1="$(_compress_if_exists 'SRR9136733_1' || true)"
gz2="$(_compress_if_exists 'SRR9136733_2' || true)"
gzs="$(_compress_if_exists 'SRR9136733' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S17_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S17_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136734"
gz1="$(_compress_if_exists 'SRR9136734_1' || true)"
gz2="$(_compress_if_exists 'SRR9136734_2' || true)"
gzs="$(_compress_if_exists 'SRR9136734' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S18_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S18_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136735"
gz1="$(_compress_if_exists 'SRR9136735_1' || true)"
gz2="$(_compress_if_exists 'SRR9136735_2' || true)"
gzs="$(_compress_if_exists 'SRR9136735' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S19_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S19_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136736"
gz1="$(_compress_if_exists 'SRR9136736_1' || true)"
gz2="$(_compress_if_exists 'SRR9136736_2' || true)"
gzs="$(_compress_if_exists 'SRR9136736' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S20_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S20_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136737"
gz1="$(_compress_if_exists 'SRR9136737_1' || true)"
gz2="$(_compress_if_exists 'SRR9136737_2' || true)"
gzs="$(_compress_if_exists 'SRR9136737' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S25_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S25_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136738"
gz1="$(_compress_if_exists 'SRR9136738_1' || true)"
gz2="$(_compress_if_exists 'SRR9136738_2' || true)"
gzs="$(_compress_if_exists 'SRR9136738' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S28_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S28_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136739"
gz1="$(_compress_if_exists 'SRR9136739_1' || true)"
gz2="$(_compress_if_exists 'SRR9136739_2' || true)"
gzs="$(_compress_if_exists 'SRR9136739' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S17_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S17_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136740"
gz1="$(_compress_if_exists 'SRR9136740_1' || true)"
gz2="$(_compress_if_exists 'SRR9136740_2' || true)"
gzs="$(_compress_if_exists 'SRR9136740' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S42_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S42_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136741"
gz1="$(_compress_if_exists 'SRR9136741_1' || true)"
gz2="$(_compress_if_exists 'SRR9136741_2' || true)"
gzs="$(_compress_if_exists 'SRR9136741' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S18_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S18_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136742"
gz1="$(_compress_if_exists 'SRR9136742_1' || true)"
gz2="$(_compress_if_exists 'SRR9136742_2' || true)"
gzs="$(_compress_if_exists 'SRR9136742' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S19_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S19_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136743"
gz1="$(_compress_if_exists 'SRR9136743_1' || true)"
gz2="$(_compress_if_exists 'SRR9136743_2' || true)"
gzs="$(_compress_if_exists 'SRR9136743' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S20_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S20_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136744"
gz1="$(_compress_if_exists 'SRR9136744_1' || true)"
gz2="$(_compress_if_exists 'SRR9136744_2' || true)"
gzs="$(_compress_if_exists 'SRR9136744' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S26_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S26_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136745"
gz1="$(_compress_if_exists 'SRR9136745_1' || true)"
gz2="$(_compress_if_exists 'SRR9136745_2' || true)"
gzs="$(_compress_if_exists 'SRR9136745' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S17_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S17_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136746"
gz1="$(_compress_if_exists 'SRR9136746_1' || true)"
gz2="$(_compress_if_exists 'SRR9136746_2' || true)"
gzs="$(_compress_if_exists 'SRR9136746' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S18_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S18_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136747"
gz1="$(_compress_if_exists 'SRR9136747_1' || true)"
gz2="$(_compress_if_exists 'SRR9136747_2' || true)"
gzs="$(_compress_if_exists 'SRR9136747' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S19_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S19_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136748"
gz1="$(_compress_if_exists 'SRR9136748_1' || true)"
gz2="$(_compress_if_exists 'SRR9136748_2' || true)"
gzs="$(_compress_if_exists 'SRR9136748' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S20_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S20_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136749"
gz1="$(_compress_if_exists 'SRR9136749_1' || true)"
gz2="$(_compress_if_exists 'SRR9136749_2' || true)"
gzs="$(_compress_if_exists 'SRR9136749' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_100k_TRM_d7_S27_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_100k_TRM_d7_S27_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136750"
gz1="$(_compress_if_exists 'SRR9136750_1' || true)"
gz2="$(_compress_if_exists 'SRR9136750_2' || true)"
gzs="$(_compress_if_exists 'SRR9136750' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S43_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S43_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136751"
gz1="$(_compress_if_exists 'SRR9136751_1' || true)"
gz2="$(_compress_if_exists 'SRR9136751_2' || true)"
gzs="$(_compress_if_exists 'SRR9136751' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136752"
gz1="$(_compress_if_exists 'SRR9136752_1' || true)"
gz2="$(_compress_if_exists 'SRR9136752_2' || true)"
gzs="$(_compress_if_exists 'SRR9136752' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S44_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S44_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136753"
gz1="$(_compress_if_exists 'SRR9136753_1' || true)"
gz2="$(_compress_if_exists 'SRR9136753_2' || true)"
gzs="$(_compress_if_exists 'SRR9136753' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136754"
gz1="$(_compress_if_exists 'SRR9136754_1' || true)"
gz2="$(_compress_if_exists 'SRR9136754_2' || true)"
gzs="$(_compress_if_exists 'SRR9136754' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d7_TRM_S41_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d7_TRM_S41_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136755"
gz1="$(_compress_if_exists 'SRR9136755_1' || true)"
gz2="$(_compress_if_exists 'SRR9136755_2' || true)"
gzs="$(_compress_if_exists 'SRR9136755' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S1_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S1_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136756"
gz1="$(_compress_if_exists 'SRR9136756_1' || true)"
gz2="$(_compress_if_exists 'SRR9136756_2' || true)"
gzs="$(_compress_if_exists 'SRR9136756' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S3_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S3_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136757"
gz1="$(_compress_if_exists 'SRR9136757_1' || true)"
gz2="$(_compress_if_exists 'SRR9136757_2' || true)"
gzs="$(_compress_if_exists 'SRR9136757' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S1_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S1_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136758"
gz1="$(_compress_if_exists 'SRR9136758_1' || true)"
gz2="$(_compress_if_exists 'SRR9136758_2' || true)"
gzs="$(_compress_if_exists 'SRR9136758' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S3_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S3_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136759"
gz1="$(_compress_if_exists 'SRR9136759_1' || true)"
gz2="$(_compress_if_exists 'SRR9136759_2' || true)"
gzs="$(_compress_if_exists 'SRR9136759' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S2_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S2_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136760"
gz1="$(_compress_if_exists 'SRR9136760_1' || true)"
gz2="$(_compress_if_exists 'SRR9136760_2' || true)"
gzs="$(_compress_if_exists 'SRR9136760' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S4_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S4_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136761"
gz1="$(_compress_if_exists 'SRR9136761_1' || true)"
gz2="$(_compress_if_exists 'SRR9136761_2' || true)"
gzs="$(_compress_if_exists 'SRR9136761' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S2_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S2_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136762"
gz1="$(_compress_if_exists 'SRR9136762_1' || true)"
gz2="$(_compress_if_exists 'SRR9136762_2' || true)"
gzs="$(_compress_if_exists 'SRR9136762' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_1_S4_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_1_S4_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136763"
gz1="$(_compress_if_exists 'SRR9136763_1' || true)"
gz2="$(_compress_if_exists 'SRR9136763_2' || true)"
gzs="$(_compress_if_exists 'SRR9136763' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S5_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S5_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136764"
gz1="$(_compress_if_exists 'SRR9136764_1' || true)"
gz2="$(_compress_if_exists 'SRR9136764_2' || true)"
gzs="$(_compress_if_exists 'SRR9136764' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S7_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S7_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136765"
gz1="$(_compress_if_exists 'SRR9136765_1' || true)"
gz2="$(_compress_if_exists 'SRR9136765_2' || true)"
gzs="$(_compress_if_exists 'SRR9136765' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S5_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S5_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136766"
gz1="$(_compress_if_exists 'SRR9136766_1' || true)"
gz2="$(_compress_if_exists 'SRR9136766_2' || true)"
gzs="$(_compress_if_exists 'SRR9136766' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S7_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S7_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136767"
gz1="$(_compress_if_exists 'SRR9136767_1' || true)"
gz2="$(_compress_if_exists 'SRR9136767_2' || true)"
gzs="$(_compress_if_exists 'SRR9136767' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S6_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S6_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136768"
gz1="$(_compress_if_exists 'SRR9136768_1' || true)"
gz2="$(_compress_if_exists 'SRR9136768_2' || true)"
gzs="$(_compress_if_exists 'SRR9136768' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S8_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S8_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136769"
gz1="$(_compress_if_exists 'SRR9136769_1' || true)"
gz2="$(_compress_if_exists 'SRR9136769_2' || true)"
gzs="$(_compress_if_exists 'SRR9136769' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S6_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S6_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136770"
gz1="$(_compress_if_exists 'SRR9136770_1' || true)"
gz2="$(_compress_if_exists 'SRR9136770_2' || true)"
gzs="$(_compress_if_exists 'SRR9136770' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_10_P14_Armstrong_Spleen_2_S8_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_10_P14_Armstrong_Spleen_2_S8_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136771"
gz1="$(_compress_if_exists 'SRR9136771_1' || true)"
gz2="$(_compress_if_exists 'SRR9136771_2' || true)"
gzs="$(_compress_if_exists 'SRR9136771' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136772"
gz1="$(_compress_if_exists 'SRR9136772_1' || true)"
gz2="$(_compress_if_exists 'SRR9136772_2' || true)"
gzs="$(_compress_if_exists 'SRR9136772' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S15_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S15_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136773"
gz1="$(_compress_if_exists 'SRR9136773_1' || true)"
gz2="$(_compress_if_exists 'SRR9136773_2' || true)"
gzs="$(_compress_if_exists 'SRR9136773' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S16_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S16_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136774"
gz1="$(_compress_if_exists 'SRR9136774_1' || true)"
gz2="$(_compress_if_exists 'SRR9136774_2' || true)"
gzs="$(_compress_if_exists 'SRR9136774' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S22_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S22_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136775"
gz1="$(_compress_if_exists 'SRR9136775_1' || true)"
gz2="$(_compress_if_exists 'SRR9136775_2' || true)"
gzs="$(_compress_if_exists 'SRR9136775' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S13_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S13_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136776"
gz1="$(_compress_if_exists 'SRR9136776_1' || true)"
gz2="$(_compress_if_exists 'SRR9136776_2' || true)"
gzs="$(_compress_if_exists 'SRR9136776' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S15_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S15_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136777"
gz1="$(_compress_if_exists 'SRR9136777_1' || true)"
gz2="$(_compress_if_exists 'SRR9136777_2' || true)"
gzs="$(_compress_if_exists 'SRR9136777' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S13_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S13_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136778"
gz1="$(_compress_if_exists 'SRR9136778_1' || true)"
gz2="$(_compress_if_exists 'SRR9136778_2' || true)"
gzs="$(_compress_if_exists 'SRR9136778' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S14_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S14_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136779"
gz1="$(_compress_if_exists 'SRR9136779_1' || true)"
gz2="$(_compress_if_exists 'SRR9136779_2' || true)"
gzs="$(_compress_if_exists 'SRR9136779' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S15_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S15_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136780"
gz1="$(_compress_if_exists 'SRR9136780_1' || true)"
gz2="$(_compress_if_exists 'SRR9136780_2' || true)"
gzs="$(_compress_if_exists 'SRR9136780' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S16_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S16_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136781"
gz1="$(_compress_if_exists 'SRR9136781_1' || true)"
gz2="$(_compress_if_exists 'SRR9136781_2' || true)"
gzs="$(_compress_if_exists 'SRR9136781' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S23_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S23_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136782"
gz1="$(_compress_if_exists 'SRR9136782_1' || true)"
gz2="$(_compress_if_exists 'SRR9136782_2' || true)"
gzs="$(_compress_if_exists 'SRR9136782' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136783"
gz1="$(_compress_if_exists 'SRR9136783_1' || true)"
gz2="$(_compress_if_exists 'SRR9136783_2' || true)"
gzs="$(_compress_if_exists 'SRR9136783' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136784"
gz1="$(_compress_if_exists 'SRR9136784_1' || true)"
gz2="$(_compress_if_exists 'SRR9136784_2' || true)"
gzs="$(_compress_if_exists 'SRR9136784' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136785"
gz1="$(_compress_if_exists 'SRR9136785_1' || true)"
gz2="$(_compress_if_exists 'SRR9136785_2' || true)"
gzs="$(_compress_if_exists 'SRR9136785' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S13_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S13_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136786"
gz1="$(_compress_if_exists 'SRR9136786_1' || true)"
gz2="$(_compress_if_exists 'SRR9136786_2' || true)"
gzs="$(_compress_if_exists 'SRR9136786' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S14_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S14_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136787"
gz1="$(_compress_if_exists 'SRR9136787_1' || true)"
gz2="$(_compress_if_exists 'SRR9136787_2' || true)"
gzs="$(_compress_if_exists 'SRR9136787' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S15_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S15_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136788"
gz1="$(_compress_if_exists 'SRR9136788_1' || true)"
gz2="$(_compress_if_exists 'SRR9136788_2' || true)"
gzs="$(_compress_if_exists 'SRR9136788' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S16_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S16_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136789"
gz1="$(_compress_if_exists 'SRR9136789_1' || true)"
gz2="$(_compress_if_exists 'SRR9136789_2' || true)"
gzs="$(_compress_if_exists 'SRR9136789' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S24_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S24_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136790"
gz1="$(_compress_if_exists 'SRR9136790_1' || true)"
gz2="$(_compress_if_exists 'SRR9136790_2' || true)"
gzs="$(_compress_if_exists 'SRR9136790' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S14_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S14_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136791"
gz1="$(_compress_if_exists 'SRR9136791_1' || true)"
gz2="$(_compress_if_exists 'SRR9136791_2' || true)"
gzs="$(_compress_if_exists 'SRR9136791' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S16_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S16_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136792"
gz1="$(_compress_if_exists 'SRR9136792_1' || true)"
gz2="$(_compress_if_exists 'SRR9136792_2' || true)"
gzs="$(_compress_if_exists 'SRR9136792' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136793"
gz1="$(_compress_if_exists 'SRR9136793_1' || true)"
gz2="$(_compress_if_exists 'SRR9136793_2' || true)"
gzs="$(_compress_if_exists 'SRR9136793' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136794"
gz1="$(_compress_if_exists 'SRR9136794_1' || true)"
gz2="$(_compress_if_exists 'SRR9136794_2' || true)"
gzs="$(_compress_if_exists 'SRR9136794' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S21_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S21_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136795"
gz1="$(_compress_if_exists 'SRR9136795_1' || true)"
gz2="$(_compress_if_exists 'SRR9136795_2' || true)"
gzs="$(_compress_if_exists 'SRR9136795' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136796"
gz1="$(_compress_if_exists 'SRR9136796_1' || true)"
gz2="$(_compress_if_exists 'SRR9136796_2' || true)"
gzs="$(_compress_if_exists 'SRR9136796' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d10_TRM_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d10_TRM_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136797"
gz1="$(_compress_if_exists 'SRR9136797_1' || true)"
gz2="$(_compress_if_exists 'SRR9136797_2' || true)"
gzs="$(_compress_if_exists 'SRR9136797' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S13_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S13_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136798"
gz1="$(_compress_if_exists 'SRR9136798_1' || true)"
gz2="$(_compress_if_exists 'SRR9136798_2' || true)"
gzs="$(_compress_if_exists 'SRR9136798' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d10_TRM_S14_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d10_TRM_S14_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136799"
gz1="$(_compress_if_exists 'SRR9136799_1' || true)"
gz2="$(_compress_if_exists 'SRR9136799_2' || true)"
gzs="$(_compress_if_exists 'SRR9136799' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S10_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S10_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136800"
gz1="$(_compress_if_exists 'SRR9136800_1' || true)"
gz2="$(_compress_if_exists 'SRR9136800_2' || true)"
gzs="$(_compress_if_exists 'SRR9136800' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S12_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S12_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136801"
gz1="$(_compress_if_exists 'SRR9136801_1' || true)"
gz2="$(_compress_if_exists 'SRR9136801_2' || true)"
gzs="$(_compress_if_exists 'SRR9136801' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S10_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S10_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136802"
gz1="$(_compress_if_exists 'SRR9136802_1' || true)"
gz2="$(_compress_if_exists 'SRR9136802_2' || true)"
gzs="$(_compress_if_exists 'SRR9136802' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S12_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S12_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136803"
gz1="$(_compress_if_exists 'SRR9136803_1' || true)"
gz2="$(_compress_if_exists 'SRR9136803_2' || true)"
gzs="$(_compress_if_exists 'SRR9136803' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S11_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S11_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136804"
gz1="$(_compress_if_exists 'SRR9136804_1' || true)"
gz2="$(_compress_if_exists 'SRR9136804_2' || true)"
gzs="$(_compress_if_exists 'SRR9136804' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S9_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S9_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136805"
gz1="$(_compress_if_exists 'SRR9136805_1' || true)"
gz2="$(_compress_if_exists 'SRR9136805_2' || true)"
gzs="$(_compress_if_exists 'SRR9136805' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S11_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S11_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136806"
gz1="$(_compress_if_exists 'SRR9136806_1' || true)"
gz2="$(_compress_if_exists 'SRR9136806_2' || true)"
gzs="$(_compress_if_exists 'SRR9136806' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_1_S9_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_1_S9_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136807"
gz1="$(_compress_if_exists 'SRR9136807_1' || true)"
gz2="$(_compress_if_exists 'SRR9136807_2' || true)"
gzs="$(_compress_if_exists 'SRR9136807' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S13_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S13_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136808"
gz1="$(_compress_if_exists 'SRR9136808_1' || true)"
gz2="$(_compress_if_exists 'SRR9136808_2' || true)"
gzs="$(_compress_if_exists 'SRR9136808' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S15_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S15_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136809"
gz1="$(_compress_if_exists 'SRR9136809_1' || true)"
gz2="$(_compress_if_exists 'SRR9136809_2' || true)"
gzs="$(_compress_if_exists 'SRR9136809' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S13_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S13_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136810"
gz1="$(_compress_if_exists 'SRR9136810_1' || true)"
gz2="$(_compress_if_exists 'SRR9136810_2' || true)"
gzs="$(_compress_if_exists 'SRR9136810' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S15_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S15_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136811"
gz1="$(_compress_if_exists 'SRR9136811_1' || true)"
gz2="$(_compress_if_exists 'SRR9136811_2' || true)"
gzs="$(_compress_if_exists 'SRR9136811' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S14_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S14_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136812"
gz1="$(_compress_if_exists 'SRR9136812_1' || true)"
gz2="$(_compress_if_exists 'SRR9136812_2' || true)"
gzs="$(_compress_if_exists 'SRR9136812' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S16_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S16_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136813"
gz1="$(_compress_if_exists 'SRR9136813_1' || true)"
gz2="$(_compress_if_exists 'SRR9136813_2' || true)"
gzs="$(_compress_if_exists 'SRR9136813' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S14_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S14_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136814"
gz1="$(_compress_if_exists 'SRR9136814_1' || true)"
gz2="$(_compress_if_exists 'SRR9136814_2' || true)"
gzs="$(_compress_if_exists 'SRR9136814' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_14_P14_Armstrong_Spleen_2_S16_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_14_P14_Armstrong_Spleen_2_S16_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136815"
gz1="$(_compress_if_exists 'SRR9136815_1' || true)"
gz2="$(_compress_if_exists 'SRR9136815_2' || true)"
gzs="$(_compress_if_exists 'SRR9136815' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S17_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S17_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136816"
gz1="$(_compress_if_exists 'SRR9136816_1' || true)"
gz2="$(_compress_if_exists 'SRR9136816_2' || true)"
gzs="$(_compress_if_exists 'SRR9136816' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S17_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S17_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136817"
gz1="$(_compress_if_exists 'SRR9136817_1' || true)"
gz2="$(_compress_if_exists 'SRR9136817_2' || true)"
gzs="$(_compress_if_exists 'SRR9136817' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S19_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S19_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136818"
gz1="$(_compress_if_exists 'SRR9136818_1' || true)"
gz2="$(_compress_if_exists 'SRR9136818_2' || true)"
gzs="$(_compress_if_exists 'SRR9136818' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S20_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S20_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136819"
gz1="$(_compress_if_exists 'SRR9136819_1' || true)"
gz2="$(_compress_if_exists 'SRR9136819_2' || true)"
gzs="$(_compress_if_exists 'SRR9136819' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S18_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S18_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136820"
gz1="$(_compress_if_exists 'SRR9136820_1' || true)"
gz2="$(_compress_if_exists 'SRR9136820_2' || true)"
gzs="$(_compress_if_exists 'SRR9136820' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S20_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S20_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136821"
gz1="$(_compress_if_exists 'SRR9136821_1' || true)"
gz2="$(_compress_if_exists 'SRR9136821_2' || true)"
gzs="$(_compress_if_exists 'SRR9136821' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S28_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S28_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136822"
gz1="$(_compress_if_exists 'SRR9136822_1' || true)"
gz2="$(_compress_if_exists 'SRR9136822_2' || true)"
gzs="$(_compress_if_exists 'SRR9136822' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S17_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S17_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136823"
gz1="$(_compress_if_exists 'SRR9136823_1' || true)"
gz2="$(_compress_if_exists 'SRR9136823_2' || true)"
gzs="$(_compress_if_exists 'SRR9136823' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S19_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S19_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136824"
gz1="$(_compress_if_exists 'SRR9136824_1' || true)"
gz2="$(_compress_if_exists 'SRR9136824_2' || true)"
gzs="$(_compress_if_exists 'SRR9136824' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S25_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S25_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136825"
gz1="$(_compress_if_exists 'SRR9136825_1' || true)"
gz2="$(_compress_if_exists 'SRR9136825_2' || true)"
gzs="$(_compress_if_exists 'SRR9136825' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S18_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S18_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136826"
gz1="$(_compress_if_exists 'SRR9136826_1' || true)"
gz2="$(_compress_if_exists 'SRR9136826_2' || true)"
gzs="$(_compress_if_exists 'SRR9136826' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S17_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S17_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136827"
gz1="$(_compress_if_exists 'SRR9136827_1' || true)"
gz2="$(_compress_if_exists 'SRR9136827_2' || true)"
gzs="$(_compress_if_exists 'SRR9136827' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S20_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S20_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136828"
gz1="$(_compress_if_exists 'SRR9136828_1' || true)"
gz2="$(_compress_if_exists 'SRR9136828_2' || true)"
gzs="$(_compress_if_exists 'SRR9136828' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S18_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S18_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136829"
gz1="$(_compress_if_exists 'SRR9136829_1' || true)"
gz2="$(_compress_if_exists 'SRR9136829_2' || true)"
gzs="$(_compress_if_exists 'SRR9136829' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S19_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S19_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136830"
gz1="$(_compress_if_exists 'SRR9136830_1' || true)"
gz2="$(_compress_if_exists 'SRR9136830_2' || true)"
gzs="$(_compress_if_exists 'SRR9136830' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S20_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S20_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136831"
gz1="$(_compress_if_exists 'SRR9136831_1' || true)"
gz2="$(_compress_if_exists 'SRR9136831_2' || true)"
gzs="$(_compress_if_exists 'SRR9136831' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S26_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S26_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136832"
gz1="$(_compress_if_exists 'SRR9136832_1' || true)"
gz2="$(_compress_if_exists 'SRR9136832_2' || true)"
gzs="$(_compress_if_exists 'SRR9136832' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S18_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S18_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136833"
gz1="$(_compress_if_exists 'SRR9136833_1' || true)"
gz2="$(_compress_if_exists 'SRR9136833_2' || true)"
gzs="$(_compress_if_exists 'SRR9136833' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S19_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S19_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136834"
gz1="$(_compress_if_exists 'SRR9136834_1' || true)"
gz2="$(_compress_if_exists 'SRR9136834_2' || true)"
gzs="$(_compress_if_exists 'SRR9136834' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d14_TRM_S27_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d14_TRM_S27_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136835"
gz1="$(_compress_if_exists 'SRR9136835_1' || true)"
gz2="$(_compress_if_exists 'SRR9136835_2' || true)"
gzs="$(_compress_if_exists 'SRR9136835' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S17_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S17_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136836"
gz1="$(_compress_if_exists 'SRR9136836_1' || true)"
gz2="$(_compress_if_exists 'SRR9136836_2' || true)"
gzs="$(_compress_if_exists 'SRR9136836' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S19_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S19_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136837"
gz1="$(_compress_if_exists 'SRR9136837_1' || true)"
gz2="$(_compress_if_exists 'SRR9136837_2' || true)"
gzs="$(_compress_if_exists 'SRR9136837' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S17_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S17_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136838"
gz1="$(_compress_if_exists 'SRR9136838_1' || true)"
gz2="$(_compress_if_exists 'SRR9136838_2' || true)"
gzs="$(_compress_if_exists 'SRR9136838' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S19_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S19_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136839"
gz1="$(_compress_if_exists 'SRR9136839_1' || true)"
gz2="$(_compress_if_exists 'SRR9136839_2' || true)"
gzs="$(_compress_if_exists 'SRR9136839' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S18_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S18_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136840"
gz1="$(_compress_if_exists 'SRR9136840_1' || true)"
gz2="$(_compress_if_exists 'SRR9136840_2' || true)"
gzs="$(_compress_if_exists 'SRR9136840' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S18_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S18_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136841"
gz1="$(_compress_if_exists 'SRR9136841_1' || true)"
gz2="$(_compress_if_exists 'SRR9136841_2' || true)"
gzs="$(_compress_if_exists 'SRR9136841' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S20_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S20_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136842"
gz1="$(_compress_if_exists 'SRR9136842_1' || true)"
gz2="$(_compress_if_exists 'SRR9136842_2' || true)"
gzs="$(_compress_if_exists 'SRR9136842' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_1_S20_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_1_S20_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136843"
gz1="$(_compress_if_exists 'SRR9136843_1' || true)"
gz2="$(_compress_if_exists 'SRR9136843_2' || true)"
gzs="$(_compress_if_exists 'SRR9136843' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S21_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S21_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136844"
gz1="$(_compress_if_exists 'SRR9136844_1' || true)"
gz2="$(_compress_if_exists 'SRR9136844_2' || true)"
gzs="$(_compress_if_exists 'SRR9136844' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S23_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S23_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136845"
gz1="$(_compress_if_exists 'SRR9136845_1' || true)"
gz2="$(_compress_if_exists 'SRR9136845_2' || true)"
gzs="$(_compress_if_exists 'SRR9136845' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S21_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S21_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136846"
gz1="$(_compress_if_exists 'SRR9136846_1' || true)"
gz2="$(_compress_if_exists 'SRR9136846_2' || true)"
gzs="$(_compress_if_exists 'SRR9136846' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S23_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S23_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136847"
gz1="$(_compress_if_exists 'SRR9136847_1' || true)"
gz2="$(_compress_if_exists 'SRR9136847_2' || true)"
gzs="$(_compress_if_exists 'SRR9136847' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S22_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S22_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136848"
gz1="$(_compress_if_exists 'SRR9136848_1' || true)"
gz2="$(_compress_if_exists 'SRR9136848_2' || true)"
gzs="$(_compress_if_exists 'SRR9136848' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S22_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S22_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136849"
gz1="$(_compress_if_exists 'SRR9136849_1' || true)"
gz2="$(_compress_if_exists 'SRR9136849_2' || true)"
gzs="$(_compress_if_exists 'SRR9136849' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S24_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S24_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136850"
gz1="$(_compress_if_exists 'SRR9136850_1' || true)"
gz2="$(_compress_if_exists 'SRR9136850_2' || true)"
gzs="$(_compress_if_exists 'SRR9136850' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_21_P14_Armstrong_Spleen_2_S24_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_21_P14_Armstrong_Spleen_2_S24_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136851"
gz1="$(_compress_if_exists 'SRR9136851_1' || true)"
gz2="$(_compress_if_exists 'SRR9136851_2' || true)"
gzs="$(_compress_if_exists 'SRR9136851' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S21_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S21_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136852"
gz1="$(_compress_if_exists 'SRR9136852_1' || true)"
gz2="$(_compress_if_exists 'SRR9136852_2' || true)"
gzs="$(_compress_if_exists 'SRR9136852' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S23_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S23_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136853"
gz1="$(_compress_if_exists 'SRR9136853_1' || true)"
gz2="$(_compress_if_exists 'SRR9136853_2' || true)"
gzs="$(_compress_if_exists 'SRR9136853' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S24_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S24_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136854"
gz1="$(_compress_if_exists 'SRR9136854_1' || true)"
gz2="$(_compress_if_exists 'SRR9136854_2' || true)"
gzs="$(_compress_if_exists 'SRR9136854' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S30_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S30_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136855"
gz1="$(_compress_if_exists 'SRR9136855_1' || true)"
gz2="$(_compress_if_exists 'SRR9136855_2' || true)"
gzs="$(_compress_if_exists 'SRR9136855' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S21_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S21_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136856"
gz1="$(_compress_if_exists 'SRR9136856_1' || true)"
gz2="$(_compress_if_exists 'SRR9136856_2' || true)"
gzs="$(_compress_if_exists 'SRR9136856' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S23_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S23_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136857"
gz1="$(_compress_if_exists 'SRR9136857_1' || true)"
gz2="$(_compress_if_exists 'SRR9136857_2' || true)"
gzs="$(_compress_if_exists 'SRR9136857' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S21_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S21_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136858"
gz1="$(_compress_if_exists 'SRR9136858_1' || true)"
gz2="$(_compress_if_exists 'SRR9136858_2' || true)"
gzs="$(_compress_if_exists 'SRR9136858' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S22_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S22_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136859"
gz1="$(_compress_if_exists 'SRR9136859_1' || true)"
gz2="$(_compress_if_exists 'SRR9136859_2' || true)"
gzs="$(_compress_if_exists 'SRR9136859' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S23_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S23_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136860"
gz1="$(_compress_if_exists 'SRR9136860_1' || true)"
gz2="$(_compress_if_exists 'SRR9136860_2' || true)"
gzs="$(_compress_if_exists 'SRR9136860' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S24_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S24_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136861"
gz1="$(_compress_if_exists 'SRR9136861_1' || true)"
gz2="$(_compress_if_exists 'SRR9136861_2' || true)"
gzs="$(_compress_if_exists 'SRR9136861' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S31_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S31_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136862"
gz1="$(_compress_if_exists 'SRR9136862_1' || true)"
gz2="$(_compress_if_exists 'SRR9136862_2' || true)"
gzs="$(_compress_if_exists 'SRR9136862' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S22_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S22_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136863"
gz1="$(_compress_if_exists 'SRR9136863_1' || true)"
gz2="$(_compress_if_exists 'SRR9136863_2' || true)"
gzs="$(_compress_if_exists 'SRR9136863' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S22_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S22_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136864"
gz1="$(_compress_if_exists 'SRR9136864_1' || true)"
gz2="$(_compress_if_exists 'SRR9136864_2' || true)"
gzs="$(_compress_if_exists 'SRR9136864' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S24_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S24_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136865"
gz1="$(_compress_if_exists 'SRR9136865_1' || true)"
gz2="$(_compress_if_exists 'SRR9136865_2' || true)"
gzs="$(_compress_if_exists 'SRR9136865' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S21_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S21_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136866"
gz1="$(_compress_if_exists 'SRR9136866_1' || true)"
gz2="$(_compress_if_exists 'SRR9136866_2' || true)"
gzs="$(_compress_if_exists 'SRR9136866' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S22_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S22_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136867"
gz1="$(_compress_if_exists 'SRR9136867_1' || true)"
gz2="$(_compress_if_exists 'SRR9136867_2' || true)"
gzs="$(_compress_if_exists 'SRR9136867' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S23_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S23_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136868"
gz1="$(_compress_if_exists 'SRR9136868_1' || true)"
gz2="$(_compress_if_exists 'SRR9136868_2' || true)"
gzs="$(_compress_if_exists 'SRR9136868' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S24_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S24_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136869"
gz1="$(_compress_if_exists 'SRR9136869_1' || true)"
gz2="$(_compress_if_exists 'SRR9136869_2' || true)"
gzs="$(_compress_if_exists 'SRR9136869' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S32_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S32_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136870"
gz1="$(_compress_if_exists 'SRR9136870_1' || true)"
gz2="$(_compress_if_exists 'SRR9136870_2' || true)"
gzs="$(_compress_if_exists 'SRR9136870' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S22_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S22_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136871"
gz1="$(_compress_if_exists 'SRR9136871_1' || true)"
gz2="$(_compress_if_exists 'SRR9136871_2' || true)"
gzs="$(_compress_if_exists 'SRR9136871' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S24_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S24_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136872"
gz1="$(_compress_if_exists 'SRR9136872_1' || true)"
gz2="$(_compress_if_exists 'SRR9136872_2' || true)"
gzs="$(_compress_if_exists 'SRR9136872' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S23_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S23_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136873"
gz1="$(_compress_if_exists 'SRR9136873_1' || true)"
gz2="$(_compress_if_exists 'SRR9136873_2' || true)"
gzs="$(_compress_if_exists 'SRR9136873' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S24_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S24_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136874"
gz1="$(_compress_if_exists 'SRR9136874_1' || true)"
gz2="$(_compress_if_exists 'SRR9136874_2' || true)"
gzs="$(_compress_if_exists 'SRR9136874' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S29_L008_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S29_L008_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136875"
gz1="$(_compress_if_exists 'SRR9136875_1' || true)"
gz2="$(_compress_if_exists 'SRR9136875_2' || true)"
gzs="$(_compress_if_exists 'SRR9136875' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S21_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S21_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136876"
gz1="$(_compress_if_exists 'SRR9136876_1' || true)"
gz2="$(_compress_if_exists 'SRR9136876_2' || true)"
gzs="$(_compress_if_exists 'SRR9136876' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "d21_TRM_S23_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "d21_TRM_S23_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136877"
gz1="$(_compress_if_exists 'SRR9136877_1' || true)"
gz2="$(_compress_if_exists 'SRR9136877_2' || true)"
gzs="$(_compress_if_exists 'SRR9136877' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S21_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S21_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136878"
gz1="$(_compress_if_exists 'SRR9136878_1' || true)"
gz2="$(_compress_if_exists 'SRR9136878_2' || true)"
gzs="$(_compress_if_exists 'SRR9136878' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "10X_d21_TRM_S22_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "10X_d21_TRM_S22_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136879"
gz1="$(_compress_if_exists 'SRR9136879_1' || true)"
gz2="$(_compress_if_exists 'SRR9136879_2' || true)"
gzs="$(_compress_if_exists 'SRR9136879' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S25_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S25_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136880"
gz1="$(_compress_if_exists 'SRR9136880_1' || true)"
gz2="$(_compress_if_exists 'SRR9136880_2' || true)"
gzs="$(_compress_if_exists 'SRR9136880' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S27_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S27_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136881"
gz1="$(_compress_if_exists 'SRR9136881_1' || true)"
gz2="$(_compress_if_exists 'SRR9136881_2' || true)"
gzs="$(_compress_if_exists 'SRR9136881' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S25_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S25_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136882"
gz1="$(_compress_if_exists 'SRR9136882_1' || true)"
gz2="$(_compress_if_exists 'SRR9136882_2' || true)"
gzs="$(_compress_if_exists 'SRR9136882' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S27_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S27_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136883"
gz1="$(_compress_if_exists 'SRR9136883_1' || true)"
gz2="$(_compress_if_exists 'SRR9136883_2' || true)"
gzs="$(_compress_if_exists 'SRR9136883' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S26_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S26_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136884"
gz1="$(_compress_if_exists 'SRR9136884_1' || true)"
gz2="$(_compress_if_exists 'SRR9136884_2' || true)"
gzs="$(_compress_if_exists 'SRR9136884' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S28_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S28_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136885"
gz1="$(_compress_if_exists 'SRR9136885_1' || true)"
gz2="$(_compress_if_exists 'SRR9136885_2' || true)"
gzs="$(_compress_if_exists 'SRR9136885' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S26_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S26_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136886"
gz1="$(_compress_if_exists 'SRR9136886_1' || true)"
gz2="$(_compress_if_exists 'SRR9136886_2' || true)"
gzs="$(_compress_if_exists 'SRR9136886' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_Spleen_1_S28_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_Spleen_1_S28_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136887"
gz1="$(_compress_if_exists 'SRR9136887_1' || true)"
gz2="$(_compress_if_exists 'SRR9136887_2' || true)"
gzs="$(_compress_if_exists 'SRR9136887' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S33_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S33_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136888"
gz1="$(_compress_if_exists 'SRR9136888_1' || true)"
gz2="$(_compress_if_exists 'SRR9136888_2' || true)"
gzs="$(_compress_if_exists 'SRR9136888' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S35_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S35_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136889"
gz1="$(_compress_if_exists 'SRR9136889_1' || true)"
gz2="$(_compress_if_exists 'SRR9136889_2' || true)"
gzs="$(_compress_if_exists 'SRR9136889' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S33_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S33_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136890"
gz1="$(_compress_if_exists 'SRR9136890_1' || true)"
gz2="$(_compress_if_exists 'SRR9136890_2' || true)"
gzs="$(_compress_if_exists 'SRR9136890' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S35_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S35_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136891"
gz1="$(_compress_if_exists 'SRR9136891_1' || true)"
gz2="$(_compress_if_exists 'SRR9136891_2' || true)"
gzs="$(_compress_if_exists 'SRR9136891' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S34_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S34_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136892"
gz1="$(_compress_if_exists 'SRR9136892_1' || true)"
gz2="$(_compress_if_exists 'SRR9136892_2' || true)"
gzs="$(_compress_if_exists 'SRR9136892' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S36_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S36_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136893"
gz1="$(_compress_if_exists 'SRR9136893_1' || true)"
gz2="$(_compress_if_exists 'SRR9136893_2' || true)"
gzs="$(_compress_if_exists 'SRR9136893' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S34_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S34_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136894"
gz1="$(_compress_if_exists 'SRR9136894_1' || true)"
gz2="$(_compress_if_exists 'SRR9136894_2' || true)"
gzs="$(_compress_if_exists 'SRR9136894' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_1_S36_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_1_S36_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136895"
gz1="$(_compress_if_exists 'SRR9136895_1' || true)"
gz2="$(_compress_if_exists 'SRR9136895_2' || true)"
gzs="$(_compress_if_exists 'SRR9136895' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S37_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S37_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136896"
gz1="$(_compress_if_exists 'SRR9136896_1' || true)"
gz2="$(_compress_if_exists 'SRR9136896_2' || true)"
gzs="$(_compress_if_exists 'SRR9136896' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S39_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S39_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136897"
gz1="$(_compress_if_exists 'SRR9136897_1' || true)"
gz2="$(_compress_if_exists 'SRR9136897_2' || true)"
gzs="$(_compress_if_exists 'SRR9136897' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S37_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S37_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136898"
gz1="$(_compress_if_exists 'SRR9136898_1' || true)"
gz2="$(_compress_if_exists 'SRR9136898_2' || true)"
gzs="$(_compress_if_exists 'SRR9136898' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S39_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S39_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136899"
gz1="$(_compress_if_exists 'SRR9136899_1' || true)"
gz2="$(_compress_if_exists 'SRR9136899_2' || true)"
gzs="$(_compress_if_exists 'SRR9136899' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S38_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S38_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136900"
gz1="$(_compress_if_exists 'SRR9136900_1' || true)"
gz2="$(_compress_if_exists 'SRR9136900_2' || true)"
gzs="$(_compress_if_exists 'SRR9136900' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S40_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S40_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136901"
gz1="$(_compress_if_exists 'SRR9136901_1' || true)"
gz2="$(_compress_if_exists 'SRR9136901_2' || true)"
gzs="$(_compress_if_exists 'SRR9136901' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S38_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S38_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136902"
gz1="$(_compress_if_exists 'SRR9136902_1' || true)"
gz2="$(_compress_if_exists 'SRR9136902_2' || true)"
gzs="$(_compress_if_exists 'SRR9136902' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_32_P14_Armstrong_IEL_3_S40_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_32_P14_Armstrong_IEL_3_S40_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136903"
gz1="$(_compress_if_exists 'SRR9136903_1' || true)"
gz2="$(_compress_if_exists 'SRR9136903_2' || true)"
gzs="$(_compress_if_exists 'SRR9136903' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S41_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S41_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136904"
gz1="$(_compress_if_exists 'SRR9136904_1' || true)"
gz2="$(_compress_if_exists 'SRR9136904_2' || true)"
gzs="$(_compress_if_exists 'SRR9136904' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S43_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S43_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136905"
gz1="$(_compress_if_exists 'SRR9136905_1' || true)"
gz2="$(_compress_if_exists 'SRR9136905_2' || true)"
gzs="$(_compress_if_exists 'SRR9136905' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S41_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S41_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136906"
gz1="$(_compress_if_exists 'SRR9136906_1' || true)"
gz2="$(_compress_if_exists 'SRR9136906_2' || true)"
gzs="$(_compress_if_exists 'SRR9136906' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S43_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S43_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136907"
gz1="$(_compress_if_exists 'SRR9136907_1' || true)"
gz2="$(_compress_if_exists 'SRR9136907_2' || true)"
gzs="$(_compress_if_exists 'SRR9136907' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S42_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S42_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136908"
gz1="$(_compress_if_exists 'SRR9136908_1' || true)"
gz2="$(_compress_if_exists 'SRR9136908_2' || true)"
gzs="$(_compress_if_exists 'SRR9136908' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S44_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S44_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136909"
gz1="$(_compress_if_exists 'SRR9136909_1' || true)"
gz2="$(_compress_if_exists 'SRR9136909_2' || true)"
gzs="$(_compress_if_exists 'SRR9136909' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S42_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S42_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136910"
gz1="$(_compress_if_exists 'SRR9136910_1' || true)"
gz2="$(_compress_if_exists 'SRR9136910_2' || true)"
gzs="$(_compress_if_exists 'SRR9136910' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_Spleen_2_S44_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_Spleen_2_S44_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136911"
gz1="$(_compress_if_exists 'SRR9136911_1' || true)"
gz2="$(_compress_if_exists 'SRR9136911_2' || true)"
gzs="$(_compress_if_exists 'SRR9136911' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S45_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S45_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136912"
gz1="$(_compress_if_exists 'SRR9136912_1' || true)"
gz2="$(_compress_if_exists 'SRR9136912_2' || true)"
gzs="$(_compress_if_exists 'SRR9136912' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S47_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S47_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136913"
gz1="$(_compress_if_exists 'SRR9136913_1' || true)"
gz2="$(_compress_if_exists 'SRR9136913_2' || true)"
gzs="$(_compress_if_exists 'SRR9136913' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S45_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S45_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136914"
gz1="$(_compress_if_exists 'SRR9136914_1' || true)"
gz2="$(_compress_if_exists 'SRR9136914_2' || true)"
gzs="$(_compress_if_exists 'SRR9136914' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S47_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S47_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136915"
gz1="$(_compress_if_exists 'SRR9136915_1' || true)"
gz2="$(_compress_if_exists 'SRR9136915_2' || true)"
gzs="$(_compress_if_exists 'SRR9136915' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S46_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S46_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136916"
gz1="$(_compress_if_exists 'SRR9136916_1' || true)"
gz2="$(_compress_if_exists 'SRR9136916_2' || true)"
gzs="$(_compress_if_exists 'SRR9136916' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S48_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S48_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136917"
gz1="$(_compress_if_exists 'SRR9136917_1' || true)"
gz2="$(_compress_if_exists 'SRR9136917_2' || true)"
gzs="$(_compress_if_exists 'SRR9136917' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S46_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S46_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136918"
gz1="$(_compress_if_exists 'SRR9136918_1' || true)"
gz2="$(_compress_if_exists 'SRR9136918_2' || true)"
gzs="$(_compress_if_exists 'SRR9136918' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Day_60_P14_Armstrong_IEL_S48_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Day_60_P14_Armstrong_IEL_S48_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136919"
gz1="$(_compress_if_exists 'SRR9136919_1' || true)"
gz2="$(_compress_if_exists 'SRR9136919_2' || true)"
gzs="$(_compress_if_exists 'SRR9136919' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_Tcirc_S13_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_Tcirc_S13_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136920"
gz1="$(_compress_if_exists 'SRR9136920_1' || true)"
gz2="$(_compress_if_exists 'SRR9136920_2' || true)"
gzs="$(_compress_if_exists 'SRR9136920' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_Tcirc_S14_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_Tcirc_S14_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136921"
gz1="$(_compress_if_exists 'SRR9136921_1' || true)"
gz2="$(_compress_if_exists 'SRR9136921_2' || true)"
gzs="$(_compress_if_exists 'SRR9136921' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_Tcirc_S15_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_Tcirc_S15_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136922"
gz1="$(_compress_if_exists 'SRR9136922_1' || true)"
gz2="$(_compress_if_exists 'SRR9136922_2' || true)"
gzs="$(_compress_if_exists 'SRR9136922' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_Tcirc_S16_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_Tcirc_S16_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136923"
gz1="$(_compress_if_exists 'SRR9136923_1' || true)"
gz2="$(_compress_if_exists 'SRR9136923_2' || true)"
gzs="$(_compress_if_exists 'SRR9136923' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_TRM_S17_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_TRM_S17_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136924"
gz1="$(_compress_if_exists 'SRR9136924_1' || true)"
gz2="$(_compress_if_exists 'SRR9136924_2' || true)"
gzs="$(_compress_if_exists 'SRR9136924' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_TRM_S18_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_TRM_S18_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136925"
gz1="$(_compress_if_exists 'SRR9136925_1' || true)"
gz2="$(_compress_if_exists 'SRR9136925_2' || true)"
gzs="$(_compress_if_exists 'SRR9136925' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_TRM_S19_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_TRM_S19_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9136926"
gz1="$(_compress_if_exists 'SRR9136926_1' || true)"
gz2="$(_compress_if_exists 'SRR9136926_2' || true)"
gzs="$(_compress_if_exists 'SRR9136926' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "Mem_TRM_S20_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "Mem_TRM_S20_L007_R2_001.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136455/SRR9136455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136456/SRR9136456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136457/SRR9136457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136458/SRR9136458"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136459/SRR9136459"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136460/SRR9136460"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136461/SRR9136461"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136462/SRR9136462"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136463/SRR9136463"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136464/SRR9136464"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136465/SRR9136465"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136466/SRR9136466"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136467/SRR9136467"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136468/SRR9136468"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136469/SRR9136469"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136470/SRR9136470"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136471/SRR9136471"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136472/SRR9136472"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136473/SRR9136473"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136474/SRR9136474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136475/SRR9136475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136476/SRR9136476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136477/SRR9136477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136478/SRR9136478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136479/SRR9136479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136480/SRR9136480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136481/SRR9136481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136482/SRR9136482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136483/SRR9136483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136484/SRR9136484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136485/SRR9136485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136486/SRR9136486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136487/SRR9136487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136488/SRR9136488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136489/SRR9136489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136490/SRR9136490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136491/SRR9136491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136492/SRR9136492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136493/SRR9136493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136494/SRR9136494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136495/SRR9136495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136496/SRR9136496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136497/SRR9136497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136498/SRR9136498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136499/SRR9136499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136500/SRR9136500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136501/SRR9136501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136502/SRR9136502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136503/SRR9136503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136504/SRR9136504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136505/SRR9136505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136506/SRR9136506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136507/SRR9136507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136508/SRR9136508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136509/SRR9136509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136510/SRR9136510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136511/SRR9136511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136512/SRR9136512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136513/SRR9136513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136514/SRR9136514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136515/SRR9136515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136516/SRR9136516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136517/SRR9136517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136518/SRR9136518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136519/SRR9136519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136520/SRR9136520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136521/SRR9136521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136522/SRR9136522"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136523/SRR9136523"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136524/SRR9136524"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136525/SRR9136525"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136526/SRR9136526"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136527/SRR9136527"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136528/SRR9136528"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136529/SRR9136529"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136530/SRR9136530"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136531/SRR9136531"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136532/SRR9136532"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136533/SRR9136533"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136534/SRR9136534"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136535/SRR9136535"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136536/SRR9136536"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136537/SRR9136537"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136538/SRR9136538"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136539/SRR9136539"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136540/SRR9136540"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136541/SRR9136541"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136542/SRR9136542"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136543/SRR9136543"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136544/SRR9136544"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136545/SRR9136545"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136546/SRR9136546"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136547/SRR9136547"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136548/SRR9136548"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136549/SRR9136549"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136550/SRR9136550"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136551/SRR9136551"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136552/SRR9136552"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136553/SRR9136553"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136554/SRR9136554"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136555/SRR9136555"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136556/SRR9136556"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136557/SRR9136557"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136558/SRR9136558"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136559/SRR9136559"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136560/SRR9136560"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136561/SRR9136561"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136562/SRR9136562"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136563/SRR9136563"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136564/SRR9136564"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136565/SRR9136565"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136566/SRR9136566"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136567/SRR9136567"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136568/SRR9136568"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136569/SRR9136569"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136570/SRR9136570"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136571/SRR9136571"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136572/SRR9136572"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136573/SRR9136573"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136574/SRR9136574"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136575/SRR9136575"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136576/SRR9136576"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136577/SRR9136577"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136578/SRR9136578"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136579/SRR9136579"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136580/SRR9136580"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136581/SRR9136581"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136582/SRR9136582"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136583/SRR9136583"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136584/SRR9136584"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136585/SRR9136585"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136586/SRR9136586"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136587/SRR9136587"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136588/SRR9136588"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136589/SRR9136589"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136590/SRR9136590"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136591/SRR9136591"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136592/SRR9136592"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136593/SRR9136593"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136594/SRR9136594"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136595/SRR9136595"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136596/SRR9136596"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136597/SRR9136597"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136598/SRR9136598"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136599/SRR9136599"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136600/SRR9136600"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136601/SRR9136601"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136602/SRR9136602"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136603/SRR9136603"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136604/SRR9136604"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136605/SRR9136605"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136606/SRR9136606"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136607/SRR9136607"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136608/SRR9136608"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136609/SRR9136609"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136610/SRR9136610"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136611/SRR9136611"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136612/SRR9136612"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136613/SRR9136613"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136614/SRR9136614"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136615/SRR9136615"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136616/SRR9136616"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136617/SRR9136617"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136618/SRR9136618"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136619/SRR9136619"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136620/SRR9136620"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136621/SRR9136621"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136622/SRR9136622"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136623/SRR9136623"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136624/SRR9136624"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136625/SRR9136625"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136626/SRR9136626"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136627/SRR9136627"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136628/SRR9136628"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136629/SRR9136629"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136630/SRR9136630"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136631/SRR9136631"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136632/SRR9136632"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136633/SRR9136633"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136634/SRR9136634"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136635/SRR9136635"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136636/SRR9136636"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136637/SRR9136637"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136638/SRR9136638"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136639/SRR9136639"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136640/SRR9136640"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136641/SRR9136641"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136642/SRR9136642"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136643/SRR9136643"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136644/SRR9136644"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136645/SRR9136645"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136646/SRR9136646"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136647/SRR9136647"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136648/SRR9136648"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136649/SRR9136649"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136650/SRR9136650"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136651/SRR9136651"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136652/SRR9136652"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136653/SRR9136653"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136654/SRR9136654"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136655/SRR9136655"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136656/SRR9136656"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136657/SRR9136657"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136658/SRR9136658"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136659/SRR9136659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136660/SRR9136660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136661/SRR9136661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136662/SRR9136662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136663/SRR9136663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136664/SRR9136664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136665/SRR9136665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136666/SRR9136666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136667/SRR9136667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136668/SRR9136668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136669/SRR9136669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136670/SRR9136670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136671/SRR9136671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136672/SRR9136672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136673/SRR9136673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136674/SRR9136674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136675/SRR9136675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136676/SRR9136676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136677/SRR9136677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136678/SRR9136678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136679/SRR9136679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136680/SRR9136680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136681/SRR9136681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136682/SRR9136682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136683/SRR9136683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136684/SRR9136684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136685/SRR9136685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136686/SRR9136686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136687/SRR9136687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136688/SRR9136688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136689/SRR9136689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136690/SRR9136690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136691/SRR9136691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136692/SRR9136692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136693/SRR9136693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136694/SRR9136694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136695/SRR9136695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136696/SRR9136696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136697/SRR9136697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136698/SRR9136698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136699/SRR9136699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136700/SRR9136700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136701/SRR9136701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136702/SRR9136702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136703/SRR9136703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136704/SRR9136704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136705/SRR9136705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136706/SRR9136706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136707/SRR9136707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136708/SRR9136708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136709/SRR9136709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136710/SRR9136710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136711/SRR9136711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136712/SRR9136712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136713/SRR9136713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136714/SRR9136714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136715/SRR9136715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136716/SRR9136716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136717/SRR9136717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136718/SRR9136718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136719/SRR9136719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136720/SRR9136720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136721/SRR9136721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136722/SRR9136722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136723/SRR9136723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136724/SRR9136724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136725/SRR9136725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136726/SRR9136726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136727/SRR9136727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136728/SRR9136728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136729/SRR9136729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136730/SRR9136730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136731/SRR9136731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136732/SRR9136732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136733/SRR9136733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136734/SRR9136734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136735/SRR9136735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136736/SRR9136736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136737/SRR9136737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136738/SRR9136738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136739/SRR9136739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136740/SRR9136740"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136741/SRR9136741"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136742/SRR9136742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136743/SRR9136743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136744/SRR9136744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136745/SRR9136745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136746/SRR9136746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136747/SRR9136747"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136748/SRR9136748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136749/SRR9136749"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136750/SRR9136750"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136751/SRR9136751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136752/SRR9136752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136753/SRR9136753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136754/SRR9136754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136755/SRR9136755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136756/SRR9136756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136757/SRR9136757"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136758/SRR9136758"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136759/SRR9136759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136760/SRR9136760"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136761/SRR9136761"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136762/SRR9136762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136763/SRR9136763"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136764/SRR9136764"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136765/SRR9136765"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136766/SRR9136766"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136767/SRR9136767"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136768/SRR9136768"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136769/SRR9136769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136770/SRR9136770"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136771/SRR9136771"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136772/SRR9136772"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136773/SRR9136773"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136774/SRR9136774"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136775/SRR9136775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136776/SRR9136776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136777/SRR9136777"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136778/SRR9136778"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136779/SRR9136779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136780/SRR9136780"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136781/SRR9136781"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136782/SRR9136782"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136783/SRR9136783"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136784/SRR9136784"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136785/SRR9136785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136786/SRR9136786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136787/SRR9136787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136788/SRR9136788"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136789/SRR9136789"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136790/SRR9136790"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136791/SRR9136791"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136792/SRR9136792"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136793/SRR9136793"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136794/SRR9136794"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136795/SRR9136795"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136796/SRR9136796"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136797/SRR9136797"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136798/SRR9136798"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136799/SRR9136799"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136800/SRR9136800"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136801/SRR9136801"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136802/SRR9136802"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136803/SRR9136803"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136804/SRR9136804"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136805/SRR9136805"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136806/SRR9136806"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136807/SRR9136807"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136808/SRR9136808"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136809/SRR9136809"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136810/SRR9136810"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136811/SRR9136811"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136812/SRR9136812"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136813/SRR9136813"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136814/SRR9136814"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136815/SRR9136815"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136816/SRR9136816"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136817/SRR9136817"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136818/SRR9136818"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136819/SRR9136819"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136820/SRR9136820"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136821/SRR9136821"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136822/SRR9136822"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136823/SRR9136823"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136824/SRR9136824"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136825/SRR9136825"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136826/SRR9136826"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136827/SRR9136827"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136828/SRR9136828"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136829/SRR9136829"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136830/SRR9136830"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136831/SRR9136831"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136832/SRR9136832"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136833/SRR9136833"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136834/SRR9136834"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136835/SRR9136835"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136836/SRR9136836"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136837/SRR9136837"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136838/SRR9136838"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136839/SRR9136839"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136840/SRR9136840"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136841/SRR9136841"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136842/SRR9136842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136843/SRR9136843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136844/SRR9136844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136845/SRR9136845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136846/SRR9136846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136847/SRR9136847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136848/SRR9136848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136849/SRR9136849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136850/SRR9136850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136851/SRR9136851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136852/SRR9136852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136853/SRR9136853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136854/SRR9136854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136855/SRR9136855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136856/SRR9136856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136857/SRR9136857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136858/SRR9136858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136859/SRR9136859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136860/SRR9136860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136861/SRR9136861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136862/SRR9136862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136863/SRR9136863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136864/SRR9136864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136865/SRR9136865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136866/SRR9136866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136867/SRR9136867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136868/SRR9136868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136869/SRR9136869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136870/SRR9136870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136871/SRR9136871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136872/SRR9136872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136873/SRR9136873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136874/SRR9136874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136875/SRR9136875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136876/SRR9136876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136877/SRR9136877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136878/SRR9136878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136879/SRR9136879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136880/SRR9136880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136881/SRR9136881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136882/SRR9136882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136883/SRR9136883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136884/SRR9136884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136885/SRR9136885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136886/SRR9136886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136887/SRR9136887"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136888/SRR9136888"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136889/SRR9136889"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136890/SRR9136890"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136891/SRR9136891"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136892/SRR9136892"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136893/SRR9136893"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136894/SRR9136894"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136895/SRR9136895"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136896/SRR9136896"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136897/SRR9136897"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136898/SRR9136898"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136899/SRR9136899"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136900/SRR9136900"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136901/SRR9136901"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136902/SRR9136902"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136903/SRR9136903"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136904/SRR9136904"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136905/SRR9136905"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136906/SRR9136906"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136907/SRR9136907"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136908/SRR9136908"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136909/SRR9136909"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136910/SRR9136910"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136911/SRR9136911"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136912/SRR9136912"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136913/SRR9136913"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136914/SRR9136914"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136915/SRR9136915"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136916/SRR9136916"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136917/SRR9136917"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136918/SRR9136918"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136919/SRR9136919"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136920/SRR9136920"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136921/SRR9136921"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136922/SRR9136922"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136923/SRR9136923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136924/SRR9136924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136925/SRR9136925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136926/SRR9136926"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136595/SRR9136595"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136642/SRR9136642"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136603/SRR9136603"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136612/SRR9136612"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136621/SRR9136621"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136630/SRR9136630"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136606/SRR9136606"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136596/SRR9136596"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136604/SRR9136604"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136613/SRR9136613"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136622/SRR9136622"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136631/SRR9136631"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136617/SRR9136617"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136597/SRR9136597"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136605/SRR9136605"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136614/SRR9136614"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136643/SRR9136643"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136690/SRR9136690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136651/SRR9136651"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136660/SRR9136660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136669/SRR9136669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136678/SRR9136678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136654/SRR9136654"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136644/SRR9136644"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136652/SRR9136652"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136661/SRR9136661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136670/SRR9136670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136679/SRR9136679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136665/SRR9136665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136645/SRR9136645"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136653/SRR9136653"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136662/SRR9136662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136733/SRR9136733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136739/SRR9136739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136745/SRR9136745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136734/SRR9136734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136741/SRR9136741"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136746/SRR9136746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136735/SRR9136735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136742/SRR9136742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136747/SRR9136747"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136736/SRR9136736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136743/SRR9136743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136748/SRR9136748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136737/SRR9136737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136744/SRR9136744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136749/SRR9136749"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136738/SRR9136738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136566/SRR9136566"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136579/SRR9136579"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136585/SRR9136585"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136574/SRR9136574"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136581/SRR9136581"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136586/SRR9136586"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136575/SRR9136575"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136582/SRR9136582"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136587/SRR9136587"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136576/SRR9136576"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136583/SRR9136583"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136588/SRR9136588"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136577/SRR9136577"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136584/SRR9136584"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136589/SRR9136589"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136578/SRR9136578"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136771/SRR9136771"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136797/SRR9136797"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136777/SRR9136777"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136785/SRR9136785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136782/SRR9136782"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136798/SRR9136798"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136778/SRR9136778"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136786/SRR9136786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136792/SRR9136792"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136772/SRR9136772"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136779/SRR9136779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136787/SRR9136787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136793/SRR9136793"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136773/SRR9136773"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136780/SRR9136780"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136788/SRR9136788"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136794/SRR9136794"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136774/SRR9136774"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136781/SRR9136781"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136789/SRR9136789"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136815/SRR9136815"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136816/SRR9136816"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136822/SRR9136822"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136826/SRR9136826"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136832/SRR9136832"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136819/SRR9136819"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136825/SRR9136825"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136828/SRR9136828"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136817/SRR9136817"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136823/SRR9136823"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136829/SRR9136829"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136833/SRR9136833"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136820/SRR9136820"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136827/SRR9136827"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136830/SRR9136830"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136818/SRR9136818"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136824/SRR9136824"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136831/SRR9136831"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136834/SRR9136834"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136821/SRR9136821"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136851/SRR9136851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136877/SRR9136877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136857/SRR9136857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136865/SRR9136865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136862/SRR9136862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136878/SRR9136878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136858/SRR9136858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136866/SRR9136866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136872/SRR9136872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136852/SRR9136852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136859/SRR9136859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136867/SRR9136867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136873/SRR9136873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136853/SRR9136853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136860/SRR9136860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136868/SRR9136868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136874/SRR9136874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136854/SRR9136854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136861/SRR9136861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136869/SRR9136869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136484/SRR9136484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136488/SRR9136488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136497/SRR9136497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136495/SRR9136495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136511/SRR9136511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136492/SRR9136492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136501/SRR9136501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136505/SRR9136505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136489/SRR9136489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136498/SRR9136498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136506/SRR9136506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136485/SRR9136485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136493/SRR9136493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136502/SRR9136502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136507/SRR9136507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136490/SRR9136490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136499/SRR9136499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136508/SRR9136508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136486/SRR9136486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136494/SRR9136494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136512/SRR9136512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136538/SRR9136538"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136518/SRR9136518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136523/SRR9136523"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136539/SRR9136539"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136519/SRR9136519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136533/SRR9136533"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136513/SRR9136513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136520/SRR9136520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136534/SRR9136534"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136514/SRR9136514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136521/SRR9136521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136535/SRR9136535"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136515/SRR9136515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136522/SRR9136522"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136536/SRR9136536"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136516/SRR9136516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136524/SRR9136524"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136537/SRR9136537"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136517/SRR9136517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136567/SRR9136567"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136571/SRR9136571"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136461/SRR9136461"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136469/SRR9136469"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136795/SRR9136795"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136775/SRR9136775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136783/SRR9136783"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136790/SRR9136790"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136796/SRR9136796"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136776/SRR9136776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136784/SRR9136784"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136791/SRR9136791"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136875/SRR9136875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136855/SRR9136855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136863/SRR9136863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136870/SRR9136870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136876/SRR9136876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136856/SRR9136856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136864/SRR9136864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136871/SRR9136871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136503/SRR9136503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136509/SRR9136509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136491/SRR9136491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136500/SRR9136500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136510/SRR9136510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136487/SRR9136487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136496/SRR9136496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136504/SRR9136504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136525/SRR9136525"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136526/SRR9136526"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136527/SRR9136527"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136528/SRR9136528"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136529/SRR9136529"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136530/SRR9136530"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136531/SRR9136531"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136532/SRR9136532"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136540/SRR9136540"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136593/SRR9136593"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136546/SRR9136546"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136553/SRR9136553"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136559/SRR9136559"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136551/SRR9136551"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136594/SRR9136594"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136547/SRR9136547"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136554/SRR9136554"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136560/SRR9136560"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136562/SRR9136562"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136541/SRR9136541"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136548/SRR9136548"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136555/SRR9136555"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136561/SRR9136561"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136580/SRR9136580"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136542/SRR9136542"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136549/SRR9136549"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136556/SRR9136556"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136563/SRR9136563"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136590/SRR9136590"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136543/SRR9136543"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136550/SRR9136550"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136557/SRR9136557"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136564/SRR9136564"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136591/SRR9136591"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136544/SRR9136544"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136552/SRR9136552"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136558/SRR9136558"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136565/SRR9136565"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136592/SRR9136592"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136545/SRR9136545"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136623/SRR9136623"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136632/SRR9136632"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136628/SRR9136628"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136598/SRR9136598"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136607/SRR9136607"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136615/SRR9136615"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136624/SRR9136624"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136633/SRR9136633"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136638/SRR9136638"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136599/SRR9136599"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136608/SRR9136608"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136616/SRR9136616"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136625/SRR9136625"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136634/SRR9136634"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136639/SRR9136639"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136600/SRR9136600"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136609/SRR9136609"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136618/SRR9136618"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136626/SRR9136626"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136635/SRR9136635"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136640/SRR9136640"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136601/SRR9136601"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136610/SRR9136610"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136619/SRR9136619"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136627/SRR9136627"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136636/SRR9136636"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136641/SRR9136641"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136602/SRR9136602"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136611/SRR9136611"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136620/SRR9136620"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136629/SRR9136629"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136637/SRR9136637"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136671/SRR9136671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136680/SRR9136680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136676/SRR9136676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136646/SRR9136646"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136655/SRR9136655"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136663/SRR9136663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136672/SRR9136672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136681/SRR9136681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136686/SRR9136686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136647/SRR9136647"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136656/SRR9136656"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136664/SRR9136664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136673/SRR9136673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136682/SRR9136682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136687/SRR9136687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136648/SRR9136648"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136657/SRR9136657"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136666/SRR9136666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136674/SRR9136674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136683/SRR9136683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136688/SRR9136688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136649/SRR9136649"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136658/SRR9136658"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136667/SRR9136667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136675/SRR9136675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136684/SRR9136684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136689/SRR9136689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136650/SRR9136650"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136659/SRR9136659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136668/SRR9136668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136677/SRR9136677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136685/SRR9136685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136691/SRR9136691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136694/SRR9136694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136697/SRR9136697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136692/SRR9136692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136695/SRR9136695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136698/SRR9136698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136693/SRR9136693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136696/SRR9136696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136699/SRR9136699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136702/SRR9136702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136705/SRR9136705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136700/SRR9136700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136703/SRR9136703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136706/SRR9136706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136701/SRR9136701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136704/SRR9136704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136707/SRR9136707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136753/SRR9136753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136713/SRR9136713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136720/SRR9136720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136726/SRR9136726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136718/SRR9136718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136754/SRR9136754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136714/SRR9136714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136721/SRR9136721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136727/SRR9136727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136729/SRR9136729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136708/SRR9136708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136715/SRR9136715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136722/SRR9136722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136728/SRR9136728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136740/SRR9136740"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136709/SRR9136709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136716/SRR9136716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136723/SRR9136723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136730/SRR9136730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136750/SRR9136750"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136710/SRR9136710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136717/SRR9136717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136724/SRR9136724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136731/SRR9136731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136751/SRR9136751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136711/SRR9136711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136719/SRR9136719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136725/SRR9136725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136732/SRR9136732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136752/SRR9136752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136712/SRR9136712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136755/SRR9136755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136757/SRR9136757"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136759/SRR9136759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136761/SRR9136761"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136756/SRR9136756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136758/SRR9136758"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136760/SRR9136760"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136762/SRR9136762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136763/SRR9136763"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136765/SRR9136765"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136767/SRR9136767"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136769/SRR9136769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136764/SRR9136764"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136766/SRR9136766"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136768/SRR9136768"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136770/SRR9136770"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136799/SRR9136799"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136801/SRR9136801"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136803/SRR9136803"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136805/SRR9136805"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136800/SRR9136800"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136802/SRR9136802"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136804/SRR9136804"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136806/SRR9136806"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136807/SRR9136807"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136809/SRR9136809"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136811/SRR9136811"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136813/SRR9136813"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136808/SRR9136808"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136810/SRR9136810"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136812/SRR9136812"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136814/SRR9136814"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136835/SRR9136835"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136837/SRR9136837"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136839/SRR9136839"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136840/SRR9136840"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136836/SRR9136836"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136838/SRR9136838"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136841/SRR9136841"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136842/SRR9136842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136843/SRR9136843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136845/SRR9136845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136847/SRR9136847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136848/SRR9136848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136844/SRR9136844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136846/SRR9136846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136849/SRR9136849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136850/SRR9136850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136887/SRR9136887"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136889/SRR9136889"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136891/SRR9136891"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136893/SRR9136893"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136888/SRR9136888"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136890/SRR9136890"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136892/SRR9136892"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136894/SRR9136894"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136895/SRR9136895"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136897/SRR9136897"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136899/SRR9136899"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136901/SRR9136901"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136896/SRR9136896"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136898/SRR9136898"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136900/SRR9136900"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136902/SRR9136902"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136879/SRR9136879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136881/SRR9136881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136883/SRR9136883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136885/SRR9136885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136880/SRR9136880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136882/SRR9136882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136884/SRR9136884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136886/SRR9136886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136911/SRR9136911"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136913/SRR9136913"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136915/SRR9136915"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136917/SRR9136917"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136912/SRR9136912"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136914/SRR9136914"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136916/SRR9136916"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136918/SRR9136918"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136903/SRR9136903"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136905/SRR9136905"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136907/SRR9136907"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136909/SRR9136909"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136904/SRR9136904"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136906/SRR9136906"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136908/SRR9136908"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136910/SRR9136910"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136919/SRR9136919"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136920/SRR9136920"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136921/SRR9136921"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136922/SRR9136922"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136923/SRR9136923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136924/SRR9136924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136925/SRR9136925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136926/SRR9136926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136459/SRR9136459"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136483/SRR9136483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136456/SRR9136456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136465/SRR9136465"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136474/SRR9136474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136470/SRR9136470"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136572/SRR9136572"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136462/SRR9136462"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136471/SRR9136471"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136478/SRR9136478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136568/SRR9136568"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136457/SRR9136457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136466/SRR9136466"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136475/SRR9136475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136479/SRR9136479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136573/SRR9136573"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136463/SRR9136463"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136472/SRR9136472"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136480/SRR9136480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136569/SRR9136569"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136458/SRR9136458"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136467/SRR9136467"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136476/SRR9136476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136481/SRR9136481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136455/SRR9136455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136464/SRR9136464"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136473/SRR9136473"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136482/SRR9136482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136570/SRR9136570"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136460/SRR9136460"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136468/SRR9136468"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9136477/SRR9136477"

echo "Download complete. Files saved to $OUTDIR"