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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE138nnn/GSE138197/suppl/GSE138197_APAPAS_GeneLocAnno.5perc.bed.gz" -O "GSE138197_APAPAS_GeneLocAnno.5perc.bed.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE138nnn/GSE138197/suppl/GSE138197_MetaDataSequencing.txt.gz" -O "GSE138197_MetaDataSequencing.txt.gz"

# --- 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 "SRR10205923"
gz1="$(_compress_if_exists 'SRR10205923_1' || true)"
gz2="$(_compress_if_exists 'SRR10205923_2' || true)"
gzs="$(_compress_if_exists 'SRR10205923' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18486-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205924"
gz1="$(_compress_if_exists 'SRR10205924_1' || true)"
gz2="$(_compress_if_exists 'SRR10205924_2' || true)"
gzs="$(_compress_if_exists 'SRR10205924' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18486-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205925"
gz1="$(_compress_if_exists 'SRR10205925_1' || true)"
gz2="$(_compress_if_exists 'SRR10205925_2' || true)"
gzs="$(_compress_if_exists 'SRR10205925' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18499-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205926"
gz1="$(_compress_if_exists 'SRR10205926_1' || true)"
gz2="$(_compress_if_exists 'SRR10205926_2' || true)"
gzs="$(_compress_if_exists 'SRR10205926' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18499-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205927"
gz1="$(_compress_if_exists 'SRR10205927_1' || true)"
gz2="$(_compress_if_exists 'SRR10205927_2' || true)"
gzs="$(_compress_if_exists 'SRR10205927' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18501-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205928"
gz1="$(_compress_if_exists 'SRR10205928_1' || true)"
gz2="$(_compress_if_exists 'SRR10205928_2' || true)"
gzs="$(_compress_if_exists 'SRR10205928' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18501-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205929"
gz1="$(_compress_if_exists 'SRR10205929_1' || true)"
gz2="$(_compress_if_exists 'SRR10205929_2' || true)"
gzs="$(_compress_if_exists 'SRR10205929' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18505-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205930"
gz1="$(_compress_if_exists 'SRR10205930_1' || true)"
gz2="$(_compress_if_exists 'SRR10205930_2' || true)"
gzs="$(_compress_if_exists 'SRR10205930' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18505-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205931"
gz1="$(_compress_if_exists 'SRR10205931_1' || true)"
gz2="$(_compress_if_exists 'SRR10205931_2' || true)"
gzs="$(_compress_if_exists 'SRR10205931' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18508-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205932"
gz1="$(_compress_if_exists 'SRR10205932_1' || true)"
gz2="$(_compress_if_exists 'SRR10205932_2' || true)"
gzs="$(_compress_if_exists 'SRR10205932' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18508-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205933"
gz1="$(_compress_if_exists 'SRR10205933_1' || true)"
gz2="$(_compress_if_exists 'SRR10205933_2' || true)"
gzs="$(_compress_if_exists 'SRR10205933' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18853-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205934"
gz1="$(_compress_if_exists 'SRR10205934_1' || true)"
gz2="$(_compress_if_exists 'SRR10205934_2' || true)"
gzs="$(_compress_if_exists 'SRR10205934' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18853-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205935"
gz1="$(_compress_if_exists 'SRR10205935_1' || true)"
gz2="$(_compress_if_exists 'SRR10205935_2' || true)"
gzs="$(_compress_if_exists 'SRR10205935' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18870-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205936"
gz1="$(_compress_if_exists 'SRR10205936_1' || true)"
gz2="$(_compress_if_exists 'SRR10205936_2' || true)"
gzs="$(_compress_if_exists 'SRR10205936' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18870-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205937"
gz1="$(_compress_if_exists 'SRR10205937_1' || true)"
gz2="$(_compress_if_exists 'SRR10205937_2' || true)"
gzs="$(_compress_if_exists 'SRR10205937' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19141-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205938"
gz1="$(_compress_if_exists 'SRR10205938_1' || true)"
gz2="$(_compress_if_exists 'SRR10205938_2' || true)"
gzs="$(_compress_if_exists 'SRR10205938' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19141-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205939"
gz1="$(_compress_if_exists 'SRR10205939_1' || true)"
gz2="$(_compress_if_exists 'SRR10205939_2' || true)"
gzs="$(_compress_if_exists 'SRR10205939' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19193-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205940"
gz1="$(_compress_if_exists 'SRR10205940_1' || true)"
gz2="$(_compress_if_exists 'SRR10205940_2' || true)"
gzs="$(_compress_if_exists 'SRR10205940' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19193-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205941"
gz1="$(_compress_if_exists 'SRR10205941_1' || true)"
gz2="$(_compress_if_exists 'SRR10205941_2' || true)"
gzs="$(_compress_if_exists 'SRR10205941' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19209-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205942"
gz1="$(_compress_if_exists 'SRR10205942_1' || true)"
gz2="$(_compress_if_exists 'SRR10205942_2' || true)"
gzs="$(_compress_if_exists 'SRR10205942' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19209-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205943"
gz1="$(_compress_if_exists 'SRR10205943_1' || true)"
gz2="$(_compress_if_exists 'SRR10205943_2' || true)"
gzs="$(_compress_if_exists 'SRR10205943' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19223-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205944"
gz1="$(_compress_if_exists 'SRR10205944_1' || true)"
gz2="$(_compress_if_exists 'SRR10205944_2' || true)"
gzs="$(_compress_if_exists 'SRR10205944' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19223-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205945"
gz1="$(_compress_if_exists 'SRR10205945_1' || true)"
gz2="$(_compress_if_exists 'SRR10205945_2' || true)"
gzs="$(_compress_if_exists 'SRR10205945' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19225-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205946"
gz1="$(_compress_if_exists 'SRR10205946_1' || true)"
gz2="$(_compress_if_exists 'SRR10205946_2' || true)"
gzs="$(_compress_if_exists 'SRR10205946' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19225-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205947"
gz1="$(_compress_if_exists 'SRR10205947_1' || true)"
gz2="$(_compress_if_exists 'SRR10205947_2' || true)"
gzs="$(_compress_if_exists 'SRR10205947' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19238-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205948"
gz1="$(_compress_if_exists 'SRR10205948_1' || true)"
gz2="$(_compress_if_exists 'SRR10205948_2' || true)"
gzs="$(_compress_if_exists 'SRR10205948' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19238-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205949"
gz1="$(_compress_if_exists 'SRR10205949_1' || true)"
gz2="$(_compress_if_exists 'SRR10205949_2' || true)"
gzs="$(_compress_if_exists 'SRR10205949' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19239-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205950"
gz1="$(_compress_if_exists 'SRR10205950_1' || true)"
gz2="$(_compress_if_exists 'SRR10205950_2' || true)"
gzs="$(_compress_if_exists 'SRR10205950' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19239-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205951"
gz1="$(_compress_if_exists 'SRR10205951_1' || true)"
gz2="$(_compress_if_exists 'SRR10205951_2' || true)"
gzs="$(_compress_if_exists 'SRR10205951' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19257-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205952"
gz1="$(_compress_if_exists 'SRR10205952_1' || true)"
gz2="$(_compress_if_exists 'SRR10205952_2' || true)"
gzs="$(_compress_if_exists 'SRR10205952' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19257-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205953"
gz1="$(_compress_if_exists 'SRR10205953_1' || true)"
gz2="$(_compress_if_exists 'SRR10205953_2' || true)"
gzs="$(_compress_if_exists 'SRR10205953' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18511-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205954"
gz1="$(_compress_if_exists 'SRR10205954_1' || true)"
gz2="$(_compress_if_exists 'SRR10205954_2' || true)"
gzs="$(_compress_if_exists 'SRR10205954' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18511-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205955"
gz1="$(_compress_if_exists 'SRR10205955_1' || true)"
gz2="$(_compress_if_exists 'SRR10205955_2' || true)"
gzs="$(_compress_if_exists 'SRR10205955' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18519-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205956"
gz1="$(_compress_if_exists 'SRR10205956_1' || true)"
gz2="$(_compress_if_exists 'SRR10205956_2' || true)"
gzs="$(_compress_if_exists 'SRR10205956' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18519-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205957"
gz1="$(_compress_if_exists 'SRR10205957_1' || true)"
gz2="$(_compress_if_exists 'SRR10205957_2' || true)"
gzs="$(_compress_if_exists 'SRR10205957' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18520-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205958"
gz1="$(_compress_if_exists 'SRR10205958_1' || true)"
gz2="$(_compress_if_exists 'SRR10205958_2' || true)"
gzs="$(_compress_if_exists 'SRR10205958' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18520-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205959"
gz1="$(_compress_if_exists 'SRR10205959_1' || true)"
gz2="$(_compress_if_exists 'SRR10205959_2' || true)"
gzs="$(_compress_if_exists 'SRR10205959' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19092-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205960"
gz1="$(_compress_if_exists 'SRR10205960_1' || true)"
gz2="$(_compress_if_exists 'SRR10205960_2' || true)"
gzs="$(_compress_if_exists 'SRR10205960' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19092-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205961"
gz1="$(_compress_if_exists 'SRR10205961_1' || true)"
gz2="$(_compress_if_exists 'SRR10205961_2' || true)"
gzs="$(_compress_if_exists 'SRR10205961' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18858-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205962"
gz1="$(_compress_if_exists 'SRR10205962_1' || true)"
gz2="$(_compress_if_exists 'SRR10205962_2' || true)"
gzs="$(_compress_if_exists 'SRR10205962' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18858-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205963"
gz1="$(_compress_if_exists 'SRR10205963_1' || true)"
gz2="$(_compress_if_exists 'SRR10205963_2' || true)"
gzs="$(_compress_if_exists 'SRR10205963' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18861-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205964"
gz1="$(_compress_if_exists 'SRR10205964_1' || true)"
gz2="$(_compress_if_exists 'SRR10205964_2' || true)"
gzs="$(_compress_if_exists 'SRR10205964' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18861-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205965"
gz1="$(_compress_if_exists 'SRR10205965_1' || true)"
gz2="$(_compress_if_exists 'SRR10205965_2' || true)"
gzs="$(_compress_if_exists 'SRR10205965' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19119-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205966"
gz1="$(_compress_if_exists 'SRR10205966_1' || true)"
gz2="$(_compress_if_exists 'SRR10205966_2' || true)"
gzs="$(_compress_if_exists 'SRR10205966' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19119-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205967"
gz1="$(_compress_if_exists 'SRR10205967_1' || true)"
gz2="$(_compress_if_exists 'SRR10205967_2' || true)"
gzs="$(_compress_if_exists 'SRR10205967' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19130-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205968"
gz1="$(_compress_if_exists 'SRR10205968_1' || true)"
gz2="$(_compress_if_exists 'SRR10205968_2' || true)"
gzs="$(_compress_if_exists 'SRR10205968' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19130-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205969"
gz1="$(_compress_if_exists 'SRR10205969_1' || true)"
gz2="$(_compress_if_exists 'SRR10205969_2' || true)"
gzs="$(_compress_if_exists 'SRR10205969' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19210-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205970"
gz1="$(_compress_if_exists 'SRR10205970_1' || true)"
gz2="$(_compress_if_exists 'SRR10205970_2' || true)"
gzs="$(_compress_if_exists 'SRR10205970' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19210-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205971"
gz1="$(_compress_if_exists 'SRR10205971_1' || true)"
gz2="$(_compress_if_exists 'SRR10205971_2' || true)"
gzs="$(_compress_if_exists 'SRR10205971' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18909-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205972"
gz1="$(_compress_if_exists 'SRR10205972_1' || true)"
gz2="$(_compress_if_exists 'SRR10205972_2' || true)"
gzs="$(_compress_if_exists 'SRR10205972' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18909-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205973"
gz1="$(_compress_if_exists 'SRR10205973_1' || true)"
gz2="$(_compress_if_exists 'SRR10205973_2' || true)"
gzs="$(_compress_if_exists 'SRR10205973' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18916-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205974"
gz1="$(_compress_if_exists 'SRR10205974_1' || true)"
gz2="$(_compress_if_exists 'SRR10205974_2' || true)"
gzs="$(_compress_if_exists 'SRR10205974' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18916-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205975"
gz1="$(_compress_if_exists 'SRR10205975_1' || true)"
gz2="$(_compress_if_exists 'SRR10205975_2' || true)"
gzs="$(_compress_if_exists 'SRR10205975' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19160-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205976"
gz1="$(_compress_if_exists 'SRR10205976_1' || true)"
gz2="$(_compress_if_exists 'SRR10205976_2' || true)"
gzs="$(_compress_if_exists 'SRR10205976' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19160-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205977"
gz1="$(_compress_if_exists 'SRR10205977_1' || true)"
gz2="$(_compress_if_exists 'SRR10205977_2' || true)"
gzs="$(_compress_if_exists 'SRR10205977' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19171-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205978"
gz1="$(_compress_if_exists 'SRR10205978_1' || true)"
gz2="$(_compress_if_exists 'SRR10205978_2' || true)"
gzs="$(_compress_if_exists 'SRR10205978' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19171-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205979"
gz1="$(_compress_if_exists 'SRR10205979_1' || true)"
gz2="$(_compress_if_exists 'SRR10205979_2' || true)"
gzs="$(_compress_if_exists 'SRR10205979' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19200-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205980"
gz1="$(_compress_if_exists 'SRR10205980_1' || true)"
gz2="$(_compress_if_exists 'SRR10205980_2' || true)"
gzs="$(_compress_if_exists 'SRR10205980' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19200-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205981"
gz1="$(_compress_if_exists 'SRR10205981_1' || true)"
gz2="$(_compress_if_exists 'SRR10205981_2' || true)"
gzs="$(_compress_if_exists 'SRR10205981' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19137-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205982"
gz1="$(_compress_if_exists 'SRR10205982_1' || true)"
gz2="$(_compress_if_exists 'SRR10205982_2' || true)"
gzs="$(_compress_if_exists 'SRR10205982' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19137-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205983"
gz1="$(_compress_if_exists 'SRR10205983_1' || true)"
gz2="$(_compress_if_exists 'SRR10205983_2' || true)"
gzs="$(_compress_if_exists 'SRR10205983' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19152-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205984"
gz1="$(_compress_if_exists 'SRR10205984_1' || true)"
gz2="$(_compress_if_exists 'SRR10205984_2' || true)"
gzs="$(_compress_if_exists 'SRR10205984' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19152-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205985"
gz1="$(_compress_if_exists 'SRR10205985_1' || true)"
gz2="$(_compress_if_exists 'SRR10205985_2' || true)"
gzs="$(_compress_if_exists 'SRR10205985' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19153-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205986"
gz1="$(_compress_if_exists 'SRR10205986_1' || true)"
gz2="$(_compress_if_exists 'SRR10205986_2' || true)"
gzs="$(_compress_if_exists 'SRR10205986' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19153-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205987"
gz1="$(_compress_if_exists 'SRR10205987_1' || true)"
gz2="$(_compress_if_exists 'SRR10205987_2' || true)"
gzs="$(_compress_if_exists 'SRR10205987' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19093-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205988"
gz1="$(_compress_if_exists 'SRR10205988_1' || true)"
gz2="$(_compress_if_exists 'SRR10205988_2' || true)"
gzs="$(_compress_if_exists 'SRR10205988' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19093-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205989"
gz1="$(_compress_if_exists 'SRR10205989_1' || true)"
gz2="$(_compress_if_exists 'SRR10205989_2' || true)"
gzs="$(_compress_if_exists 'SRR10205989' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18912-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205990"
gz1="$(_compress_if_exists 'SRR10205990_1' || true)"
gz2="$(_compress_if_exists 'SRR10205990_2' || true)"
gzs="$(_compress_if_exists 'SRR10205990' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18912-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205991"
gz1="$(_compress_if_exists 'SRR10205991_1' || true)"
gz2="$(_compress_if_exists 'SRR10205991_2' || true)"
gzs="$(_compress_if_exists 'SRR10205991' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19144-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205992"
gz1="$(_compress_if_exists 'SRR10205992_1' || true)"
gz2="$(_compress_if_exists 'SRR10205992_2' || true)"
gzs="$(_compress_if_exists 'SRR10205992' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19144-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205993"
gz1="$(_compress_if_exists 'SRR10205993_1' || true)"
gz2="$(_compress_if_exists 'SRR10205993_2' || true)"
gzs="$(_compress_if_exists 'SRR10205993' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19140-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205994"
gz1="$(_compress_if_exists 'SRR10205994_1' || true)"
gz2="$(_compress_if_exists 'SRR10205994_2' || true)"
gzs="$(_compress_if_exists 'SRR10205994' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19140-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205995"
gz1="$(_compress_if_exists 'SRR10205995_1' || true)"
gz2="$(_compress_if_exists 'SRR10205995_2' || true)"
gzs="$(_compress_if_exists 'SRR10205995' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19131-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205996"
gz1="$(_compress_if_exists 'SRR10205996_1' || true)"
gz2="$(_compress_if_exists 'SRR10205996_2' || true)"
gzs="$(_compress_if_exists 'SRR10205996' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19131-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205997"
gz1="$(_compress_if_exists 'SRR10205997_1' || true)"
gz2="$(_compress_if_exists 'SRR10205997_2' || true)"
gzs="$(_compress_if_exists 'SRR10205997' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19207-T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205998"
gz1="$(_compress_if_exists 'SRR10205998_1' || true)"
gz2="$(_compress_if_exists 'SRR10205998_2' || true)"
gzs="$(_compress_if_exists 'SRR10205998' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19207-N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10205999"
gz1="$(_compress_if_exists 'SRR10205999_1' || true)"
gz2="$(_compress_if_exists 'SRR10205999_2' || true)"
gzs="$(_compress_if_exists 'SRR10205999' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18498_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206000"
gz1="$(_compress_if_exists 'SRR10206000_1' || true)"
gz2="$(_compress_if_exists 'SRR10206000_2' || true)"
gzs="$(_compress_if_exists 'SRR10206000' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18498_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206001"
gz1="$(_compress_if_exists 'SRR10206001_1' || true)"
gz2="$(_compress_if_exists 'SRR10206001_2' || true)"
gzs="$(_compress_if_exists 'SRR10206001' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18504_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206002"
gz1="$(_compress_if_exists 'SRR10206002_1' || true)"
gz2="$(_compress_if_exists 'SRR10206002_2' || true)"
gzs="$(_compress_if_exists 'SRR10206002' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18504_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206003"
gz1="$(_compress_if_exists 'SRR10206003_1' || true)"
gz2="$(_compress_if_exists 'SRR10206003_2' || true)"
gzs="$(_compress_if_exists 'SRR10206003' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18510_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206004"
gz1="$(_compress_if_exists 'SRR10206004_1' || true)"
gz2="$(_compress_if_exists 'SRR10206004_2' || true)"
gzs="$(_compress_if_exists 'SRR10206004' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18510_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206005"
gz1="$(_compress_if_exists 'SRR10206005_1' || true)"
gz2="$(_compress_if_exists 'SRR10206005_2' || true)"
gzs="$(_compress_if_exists 'SRR10206005' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18516_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206006"
gz1="$(_compress_if_exists 'SRR10206006_1' || true)"
gz2="$(_compress_if_exists 'SRR10206006_2' || true)"
gzs="$(_compress_if_exists 'SRR10206006' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18516_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206007"
gz1="$(_compress_if_exists 'SRR10206007_1' || true)"
gz2="$(_compress_if_exists 'SRR10206007_2' || true)"
gzs="$(_compress_if_exists 'SRR10206007' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18522_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206008"
gz1="$(_compress_if_exists 'SRR10206008_1' || true)"
gz2="$(_compress_if_exists 'SRR10206008_2' || true)"
gzs="$(_compress_if_exists 'SRR10206008' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18522_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206009"
gz1="$(_compress_if_exists 'SRR10206009_1' || true)"
gz2="$(_compress_if_exists 'SRR10206009_2' || true)"
gzs="$(_compress_if_exists 'SRR10206009' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18502_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206010"
gz1="$(_compress_if_exists 'SRR10206010_1' || true)"
gz2="$(_compress_if_exists 'SRR10206010_2' || true)"
gzs="$(_compress_if_exists 'SRR10206010' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18502_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206011"
gz1="$(_compress_if_exists 'SRR10206011_1' || true)"
gz2="$(_compress_if_exists 'SRR10206011_2' || true)"
gzs="$(_compress_if_exists 'SRR10206011' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18855_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206012"
gz1="$(_compress_if_exists 'SRR10206012_1' || true)"
gz2="$(_compress_if_exists 'SRR10206012_2' || true)"
gzs="$(_compress_if_exists 'SRR10206012' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18855_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206013"
gz1="$(_compress_if_exists 'SRR10206013_1' || true)"
gz2="$(_compress_if_exists 'SRR10206013_2' || true)"
gzs="$(_compress_if_exists 'SRR10206013' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18852_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206014"
gz1="$(_compress_if_exists 'SRR10206014_1' || true)"
gz2="$(_compress_if_exists 'SRR10206014_2' || true)"
gzs="$(_compress_if_exists 'SRR10206014' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18852_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206015"
gz1="$(_compress_if_exists 'SRR10206015_1' || true)"
gz2="$(_compress_if_exists 'SRR10206015_2' || true)"
gzs="$(_compress_if_exists 'SRR10206015' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18856_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206016"
gz1="$(_compress_if_exists 'SRR10206016_1' || true)"
gz2="$(_compress_if_exists 'SRR10206016_2' || true)"
gzs="$(_compress_if_exists 'SRR10206016' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18856_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206017"
gz1="$(_compress_if_exists 'SRR10206017_1' || true)"
gz2="$(_compress_if_exists 'SRR10206017_2' || true)"
gzs="$(_compress_if_exists 'SRR10206017' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18862_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206018"
gz1="$(_compress_if_exists 'SRR10206018_1' || true)"
gz2="$(_compress_if_exists 'SRR10206018_2' || true)"
gzs="$(_compress_if_exists 'SRR10206018' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18862_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206019"
gz1="$(_compress_if_exists 'SRR10206019_1' || true)"
gz2="$(_compress_if_exists 'SRR10206019_2' || true)"
gzs="$(_compress_if_exists 'SRR10206019' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18913_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206020"
gz1="$(_compress_if_exists 'SRR10206020_1' || true)"
gz2="$(_compress_if_exists 'SRR10206020_2' || true)"
gzs="$(_compress_if_exists 'SRR10206020' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18913_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206021"
gz1="$(_compress_if_exists 'SRR10206021_1' || true)"
gz2="$(_compress_if_exists 'SRR10206021_2' || true)"
gzs="$(_compress_if_exists 'SRR10206021' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19101_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206022"
gz1="$(_compress_if_exists 'SRR10206022_1' || true)"
gz2="$(_compress_if_exists 'SRR10206022_2' || true)"
gzs="$(_compress_if_exists 'SRR10206022' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19101_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206023"
gz1="$(_compress_if_exists 'SRR10206023_1' || true)"
gz2="$(_compress_if_exists 'SRR10206023_2' || true)"
gzs="$(_compress_if_exists 'SRR10206023' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19138_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206024"
gz1="$(_compress_if_exists 'SRR10206024_1' || true)"
gz2="$(_compress_if_exists 'SRR10206024_2' || true)"
gzs="$(_compress_if_exists 'SRR10206024' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-19138_T-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206025"
gz1="$(_compress_if_exists 'SRR10206025_1' || true)"
gz2="$(_compress_if_exists 'SRR10206025_2' || true)"
gzs="$(_compress_if_exists 'SRR10206025' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18907_N-combined.fastq.gz"
fi

fasterq-dump --split-files "SRR10206026"
gz1="$(_compress_if_exists 'SRR10206026_1' || true)"
gz2="$(_compress_if_exists 'SRR10206026_2' || true)"
gzs="$(_compress_if_exists 'SRR10206026' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "YL-SP-18907_T-combined.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205923/SRR10205923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205924/SRR10205924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205925/SRR10205925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205926/SRR10205926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205927/SRR10205927"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205928/SRR10205928"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205929/SRR10205929"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205930/SRR10205930"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205931/SRR10205931"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205932/SRR10205932"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205933/SRR10205933"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205934/SRR10205934"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205935/SRR10205935"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205936/SRR10205936"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205937/SRR10205937"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205938/SRR10205938"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205939/SRR10205939"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205940/SRR10205940"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205941/SRR10205941"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205942/SRR10205942"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205943/SRR10205943"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205944/SRR10205944"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205945/SRR10205945"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205946/SRR10205946"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205947/SRR10205947"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205948/SRR10205948"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205949/SRR10205949"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205950/SRR10205950.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205951/SRR10205951"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205952/SRR10205952"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205953/SRR10205953"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205954/SRR10205954.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205955/SRR10205955"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205956/SRR10205956"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205957/SRR10205957.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205958/SRR10205958"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205959/SRR10205959"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205960/SRR10205960.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205961/SRR10205961"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205962/SRR10205962"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205963/SRR10205963"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205964/SRR10205964"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205965/SRR10205965"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205966/SRR10205966"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205967/SRR10205967"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205968/SRR10205968"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205969/SRR10205969"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205970/SRR10205970"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205971/SRR10205971"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205972/SRR10205972"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205973/SRR10205973"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205974/SRR10205974"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205975/SRR10205975"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205976/SRR10205976"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205977/SRR10205977"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205978/SRR10205978"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205979/SRR10205979"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205980/SRR10205980"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205981/SRR10205981"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205982/SRR10205982"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205983/SRR10205983"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205984/SRR10205984"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205985/SRR10205985"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205986/SRR10205986"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205987/SRR10205987"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205988/SRR10205988"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205989/SRR10205989"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205990/SRR10205990"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205991/SRR10205991"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205992/SRR10205992"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205993/SRR10205993"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205994/SRR10205994"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205995/SRR10205995"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205996/SRR10205996"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205997/SRR10205997"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205998/SRR10205998"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205999/SRR10205999"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206000/SRR10206000"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206001/SRR10206001"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10206/SRR10206002/SRR10206002.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206003/SRR10206003"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206004/SRR10206004"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206005/SRR10206005"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206006/SRR10206006"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206007/SRR10206007"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206008/SRR10206008"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206009/SRR10206009"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206010/SRR10206010"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206011/SRR10206011"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206012/SRR10206012"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206013/SRR10206013"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206014/SRR10206014"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206015/SRR10206015"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206016/SRR10206016"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206017/SRR10206017"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206018/SRR10206018"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206019/SRR10206019"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206020/SRR10206020"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206021/SRR10206021"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206022/SRR10206022"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206023/SRR10206023"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206024/SRR10206024"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206025/SRR10206025"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206026/SRR10206026"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205930/SRR10205930"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205933/SRR10205933"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205961/SRR10205961"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205923/SRR10205923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205924/SRR10205924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205999/SRR10205999"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206000/SRR10206000"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205925/SRR10205925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205926/SRR10205926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205927/SRR10205927"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205928/SRR10205928"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206009/SRR10206009"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206010/SRR10206010"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206001/SRR10206001"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10206/SRR10206002/SRR10206002.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205929/SRR10205929"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205931/SRR10205931"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205932/SRR10205932"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206003/SRR10206003"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206004/SRR10206004"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205954/SRR10205954.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205953/SRR10205953"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206005/SRR10206005"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206006/SRR10206006"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205956/SRR10205956"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205955/SRR10205955"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205958/SRR10205958"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205957/SRR10205957.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206007/SRR10206007"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206008/SRR10206008"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206013/SRR10206013"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206014/SRR10206014"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205934/SRR10205934"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206011/SRR10206011"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206012/SRR10206012"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206015/SRR10206015"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206016/SRR10206016"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205962/SRR10205962"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205964/SRR10205964"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205963/SRR10205963"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206017/SRR10206017"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206018/SRR10206018"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205935/SRR10205935"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205936/SRR10205936"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206025/SRR10206025"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206026/SRR10206026"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205972/SRR10205972"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205971/SRR10205971"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205990/SRR10205990"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205989/SRR10205989"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206019/SRR10206019"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206020/SRR10206020"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205974/SRR10205974"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205973/SRR10205973"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205960/SRR10205960.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205959/SRR10205959"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205988/SRR10205988"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205987/SRR10205987"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206021/SRR10206021"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206022/SRR10206022"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205966/SRR10205966"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205965/SRR10205965"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205968/SRR10205968"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205967/SRR10205967"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205996/SRR10205996"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205995/SRR10205995"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205982/SRR10205982"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205981/SRR10205981"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206023/SRR10206023"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10206024/SRR10206024"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205994/SRR10205994"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205993/SRR10205993"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205937/SRR10205937"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205938/SRR10205938"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205992/SRR10205992"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205991/SRR10205991"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205984/SRR10205984"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205983/SRR10205983"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205986/SRR10205986"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205985/SRR10205985"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205976/SRR10205976"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205975/SRR10205975"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205978/SRR10205978"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205977/SRR10205977"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205939/SRR10205939"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205940/SRR10205940"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205980/SRR10205980"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205979/SRR10205979"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205998/SRR10205998"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205997/SRR10205997"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205941/SRR10205941"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205942/SRR10205942"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205970/SRR10205970"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205969/SRR10205969"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205943/SRR10205943"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205944/SRR10205944"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205945/SRR10205945"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205946/SRR10205946"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205947/SRR10205947"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205948/SRR10205948"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205949/SRR10205949"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR010/10205/SRR10205950/SRR10205950.lite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205951/SRR10205951"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10205952/SRR10205952"

echo "Download complete. Files saved to $OUTDIR"