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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE139nnn/GSE139815/suppl/GSE139815_all.count_normalized.csv.gz" -O "GSE139815_all.count_normalized.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE139nnn/GSE139815/suppl/GSE139815_microRaft_processed.csv.gz" -O "GSE139815_microRaft_processed.csv.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 "SRR10384085"
gz1="$(_compress_if_exists 'SRR10384085_1' || true)"
gz2="$(_compress_if_exists 'SRR10384085_2' || true)"
gzs="$(_compress_if_exists 'SRR10384085' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "EWG17_S14_L003_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR10384086"
gz1="$(_compress_if_exists 'SRR10384086_1' || true)"
gz2="$(_compress_if_exists 'SRR10384086_2' || true)"
gzs="$(_compress_if_exists 'SRR10384086' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "EWG18_S15_L003_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR10384087"
gz1="$(_compress_if_exists 'SRR10384087_1' || true)"
gz2="$(_compress_if_exists 'SRR10384087_2' || true)"
gzs="$(_compress_if_exists 'SRR10384087' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "EWG19_S16_L003_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR10384088"
gz1="$(_compress_if_exists 'SRR10384088_1' || true)"
gz2="$(_compress_if_exists 'SRR10384088_2' || true)"
gzs="$(_compress_if_exists 'SRR10384088' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "EWG20_S17_L003_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR10384089"
gz1="$(_compress_if_exists 'SRR10384089_1' || true)"
gz2="$(_compress_if_exists 'SRR10384089_2' || true)"
gzs="$(_compress_if_exists 'SRR10384089' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "EWG21_S32_L004_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR10384090"
gz1="$(_compress_if_exists 'SRR10384090_1' || true)"
gz2="$(_compress_if_exists 'SRR10384090_2' || true)"
gzs="$(_compress_if_exists 'SRR10384090' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "EWG22_S33_L004_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR10384091"
gz1="$(_compress_if_exists 'SRR10384091_1' || true)"
gz2="$(_compress_if_exists 'SRR10384091_2' || true)"
gzs="$(_compress_if_exists 'SRR10384091' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG35_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384092"
gz1="$(_compress_if_exists 'SRR10384092_1' || true)"
gz2="$(_compress_if_exists 'SRR10384092_2' || true)"
gzs="$(_compress_if_exists 'SRR10384092' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG26_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384093"
gz1="$(_compress_if_exists 'SRR10384093_1' || true)"
gz2="$(_compress_if_exists 'SRR10384093_2' || true)"
gzs="$(_compress_if_exists 'SRR10384093' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG40_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384094"
gz1="$(_compress_if_exists 'SRR10384094_1' || true)"
gz2="$(_compress_if_exists 'SRR10384094_2' || true)"
gzs="$(_compress_if_exists 'SRR10384094' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG8_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384095"
gz1="$(_compress_if_exists 'SRR10384095_1' || true)"
gz2="$(_compress_if_exists 'SRR10384095_2' || true)"
gzs="$(_compress_if_exists 'SRR10384095' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG7_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384096"
gz1="$(_compress_if_exists 'SRR10384096_1' || true)"
gz2="$(_compress_if_exists 'SRR10384096_2' || true)"
gzs="$(_compress_if_exists 'SRR10384096' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG23_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384097"
gz1="$(_compress_if_exists 'SRR10384097_1' || true)"
gz2="$(_compress_if_exists 'SRR10384097_2' || true)"
gzs="$(_compress_if_exists 'SRR10384097' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG20_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384098"
gz1="$(_compress_if_exists 'SRR10384098_1' || true)"
gz2="$(_compress_if_exists 'SRR10384098_2' || true)"
gzs="$(_compress_if_exists 'SRR10384098' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG10_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384099"
gz1="$(_compress_if_exists 'SRR10384099_1' || true)"
gz2="$(_compress_if_exists 'SRR10384099_2' || true)"
gzs="$(_compress_if_exists 'SRR10384099' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG21_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384100"
gz1="$(_compress_if_exists 'SRR10384100_1' || true)"
gz2="$(_compress_if_exists 'SRR10384100_2' || true)"
gzs="$(_compress_if_exists 'SRR10384100' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG21_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384101"
gz1="$(_compress_if_exists 'SRR10384101_1' || true)"
gz2="$(_compress_if_exists 'SRR10384101_2' || true)"
gzs="$(_compress_if_exists 'SRR10384101' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG15_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384102"
gz1="$(_compress_if_exists 'SRR10384102_1' || true)"
gz2="$(_compress_if_exists 'SRR10384102_2' || true)"
gzs="$(_compress_if_exists 'SRR10384102' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG3_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384103"
gz1="$(_compress_if_exists 'SRR10384103_1' || true)"
gz2="$(_compress_if_exists 'SRR10384103_2' || true)"
gzs="$(_compress_if_exists 'SRR10384103' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG5_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384104"
gz1="$(_compress_if_exists 'SRR10384104_1' || true)"
gz2="$(_compress_if_exists 'SRR10384104_2' || true)"
gzs="$(_compress_if_exists 'SRR10384104' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG16_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384105"
gz1="$(_compress_if_exists 'SRR10384105_1' || true)"
gz2="$(_compress_if_exists 'SRR10384105_2' || true)"
gzs="$(_compress_if_exists 'SRR10384105' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG31_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384106"
gz1="$(_compress_if_exists 'SRR10384106_1' || true)"
gz2="$(_compress_if_exists 'SRR10384106_2' || true)"
gzs="$(_compress_if_exists 'SRR10384106' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG24_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384107"
gz1="$(_compress_if_exists 'SRR10384107_1' || true)"
gz2="$(_compress_if_exists 'SRR10384107_2' || true)"
gzs="$(_compress_if_exists 'SRR10384107' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG13_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384108"
gz1="$(_compress_if_exists 'SRR10384108_1' || true)"
gz2="$(_compress_if_exists 'SRR10384108_2' || true)"
gzs="$(_compress_if_exists 'SRR10384108' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG25_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384109"
gz1="$(_compress_if_exists 'SRR10384109_1' || true)"
gz2="$(_compress_if_exists 'SRR10384109_2' || true)"
gzs="$(_compress_if_exists 'SRR10384109' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG33_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384110"
gz1="$(_compress_if_exists 'SRR10384110_1' || true)"
gz2="$(_compress_if_exists 'SRR10384110_2' || true)"
gzs="$(_compress_if_exists 'SRR10384110' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG12_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384111"
gz1="$(_compress_if_exists 'SRR10384111_1' || true)"
gz2="$(_compress_if_exists 'SRR10384111_2' || true)"
gzs="$(_compress_if_exists 'SRR10384111' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG35_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384112"
gz1="$(_compress_if_exists 'SRR10384112_1' || true)"
gz2="$(_compress_if_exists 'SRR10384112_2' || true)"
gzs="$(_compress_if_exists 'SRR10384112' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG42_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384113"
gz1="$(_compress_if_exists 'SRR10384113_1' || true)"
gz2="$(_compress_if_exists 'SRR10384113_2' || true)"
gzs="$(_compress_if_exists 'SRR10384113' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG27_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384114"
gz1="$(_compress_if_exists 'SRR10384114_1' || true)"
gz2="$(_compress_if_exists 'SRR10384114_2' || true)"
gzs="$(_compress_if_exists 'SRR10384114' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG3_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384115"
gz1="$(_compress_if_exists 'SRR10384115_1' || true)"
gz2="$(_compress_if_exists 'SRR10384115_2' || true)"
gzs="$(_compress_if_exists 'SRR10384115' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG21_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384116"
gz1="$(_compress_if_exists 'SRR10384116_1' || true)"
gz2="$(_compress_if_exists 'SRR10384116_2' || true)"
gzs="$(_compress_if_exists 'SRR10384116' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG25_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384117"
gz1="$(_compress_if_exists 'SRR10384117_1' || true)"
gz2="$(_compress_if_exists 'SRR10384117_2' || true)"
gzs="$(_compress_if_exists 'SRR10384117' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG11_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384118"
gz1="$(_compress_if_exists 'SRR10384118_1' || true)"
gz2="$(_compress_if_exists 'SRR10384118_2' || true)"
gzs="$(_compress_if_exists 'SRR10384118' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG4_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384119"
gz1="$(_compress_if_exists 'SRR10384119_1' || true)"
gz2="$(_compress_if_exists 'SRR10384119_2' || true)"
gzs="$(_compress_if_exists 'SRR10384119' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG29_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384120"
gz1="$(_compress_if_exists 'SRR10384120_1' || true)"
gz2="$(_compress_if_exists 'SRR10384120_2' || true)"
gzs="$(_compress_if_exists 'SRR10384120' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG36_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384121"
gz1="$(_compress_if_exists 'SRR10384121_1' || true)"
gz2="$(_compress_if_exists 'SRR10384121_2' || true)"
gzs="$(_compress_if_exists 'SRR10384121' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG4_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384122"
gz1="$(_compress_if_exists 'SRR10384122_1' || true)"
gz2="$(_compress_if_exists 'SRR10384122_2' || true)"
gzs="$(_compress_if_exists 'SRR10384122' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG25_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384123"
gz1="$(_compress_if_exists 'SRR10384123_1' || true)"
gz2="$(_compress_if_exists 'SRR10384123_2' || true)"
gzs="$(_compress_if_exists 'SRR10384123' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG3_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384124"
gz1="$(_compress_if_exists 'SRR10384124_1' || true)"
gz2="$(_compress_if_exists 'SRR10384124_2' || true)"
gzs="$(_compress_if_exists 'SRR10384124' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG33_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384125"
gz1="$(_compress_if_exists 'SRR10384125_1' || true)"
gz2="$(_compress_if_exists 'SRR10384125_2' || true)"
gzs="$(_compress_if_exists 'SRR10384125' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG33_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384126"
gz1="$(_compress_if_exists 'SRR10384126_1' || true)"
gz2="$(_compress_if_exists 'SRR10384126_2' || true)"
gzs="$(_compress_if_exists 'SRR10384126' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG32_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384127"
gz1="$(_compress_if_exists 'SRR10384127_1' || true)"
gz2="$(_compress_if_exists 'SRR10384127_2' || true)"
gzs="$(_compress_if_exists 'SRR10384127' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG17_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384128"
gz1="$(_compress_if_exists 'SRR10384128_1' || true)"
gz2="$(_compress_if_exists 'SRR10384128_2' || true)"
gzs="$(_compress_if_exists 'SRR10384128' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG9_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384129"
gz1="$(_compress_if_exists 'SRR10384129_1' || true)"
gz2="$(_compress_if_exists 'SRR10384129_2' || true)"
gzs="$(_compress_if_exists 'SRR10384129' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG26_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384130"
gz1="$(_compress_if_exists 'SRR10384130_1' || true)"
gz2="$(_compress_if_exists 'SRR10384130_2' || true)"
gzs="$(_compress_if_exists 'SRR10384130' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG35_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384131"
gz1="$(_compress_if_exists 'SRR10384131_1' || true)"
gz2="$(_compress_if_exists 'SRR10384131_2' || true)"
gzs="$(_compress_if_exists 'SRR10384131' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG23_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384132"
gz1="$(_compress_if_exists 'SRR10384132_1' || true)"
gz2="$(_compress_if_exists 'SRR10384132_2' || true)"
gzs="$(_compress_if_exists 'SRR10384132' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG37_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384133"
gz1="$(_compress_if_exists 'SRR10384133_1' || true)"
gz2="$(_compress_if_exists 'SRR10384133_2' || true)"
gzs="$(_compress_if_exists 'SRR10384133' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG36_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384134"
gz1="$(_compress_if_exists 'SRR10384134_1' || true)"
gz2="$(_compress_if_exists 'SRR10384134_2' || true)"
gzs="$(_compress_if_exists 'SRR10384134' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG30_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384135"
gz1="$(_compress_if_exists 'SRR10384135_1' || true)"
gz2="$(_compress_if_exists 'SRR10384135_2' || true)"
gzs="$(_compress_if_exists 'SRR10384135' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG36_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384136"
gz1="$(_compress_if_exists 'SRR10384136_1' || true)"
gz2="$(_compress_if_exists 'SRR10384136_2' || true)"
gzs="$(_compress_if_exists 'SRR10384136' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG26_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384137"
gz1="$(_compress_if_exists 'SRR10384137_1' || true)"
gz2="$(_compress_if_exists 'SRR10384137_2' || true)"
gzs="$(_compress_if_exists 'SRR10384137' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG12_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384138"
gz1="$(_compress_if_exists 'SRR10384138_1' || true)"
gz2="$(_compress_if_exists 'SRR10384138_2' || true)"
gzs="$(_compress_if_exists 'SRR10384138' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG7_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384139"
gz1="$(_compress_if_exists 'SRR10384139_1' || true)"
gz2="$(_compress_if_exists 'SRR10384139_2' || true)"
gzs="$(_compress_if_exists 'SRR10384139' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG8_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384140"
gz1="$(_compress_if_exists 'SRR10384140_1' || true)"
gz2="$(_compress_if_exists 'SRR10384140_2' || true)"
gzs="$(_compress_if_exists 'SRR10384140' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG30_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384141"
gz1="$(_compress_if_exists 'SRR10384141_1' || true)"
gz2="$(_compress_if_exists 'SRR10384141_2' || true)"
gzs="$(_compress_if_exists 'SRR10384141' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG15_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384142"
gz1="$(_compress_if_exists 'SRR10384142_1' || true)"
gz2="$(_compress_if_exists 'SRR10384142_2' || true)"
gzs="$(_compress_if_exists 'SRR10384142' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG37_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384143"
gz1="$(_compress_if_exists 'SRR10384143_1' || true)"
gz2="$(_compress_if_exists 'SRR10384143_2' || true)"
gzs="$(_compress_if_exists 'SRR10384143' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG7_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384144"
gz1="$(_compress_if_exists 'SRR10384144_1' || true)"
gz2="$(_compress_if_exists 'SRR10384144_2' || true)"
gzs="$(_compress_if_exists 'SRR10384144' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG4_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384145"
gz1="$(_compress_if_exists 'SRR10384145_1' || true)"
gz2="$(_compress_if_exists 'SRR10384145_2' || true)"
gzs="$(_compress_if_exists 'SRR10384145' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG38_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384146"
gz1="$(_compress_if_exists 'SRR10384146_1' || true)"
gz2="$(_compress_if_exists 'SRR10384146_2' || true)"
gzs="$(_compress_if_exists 'SRR10384146' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG17_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384147"
gz1="$(_compress_if_exists 'SRR10384147_1' || true)"
gz2="$(_compress_if_exists 'SRR10384147_2' || true)"
gzs="$(_compress_if_exists 'SRR10384147' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG30_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384148"
gz1="$(_compress_if_exists 'SRR10384148_1' || true)"
gz2="$(_compress_if_exists 'SRR10384148_2' || true)"
gzs="$(_compress_if_exists 'SRR10384148' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG34_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384149"
gz1="$(_compress_if_exists 'SRR10384149_1' || true)"
gz2="$(_compress_if_exists 'SRR10384149_2' || true)"
gzs="$(_compress_if_exists 'SRR10384149' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG16_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384150"
gz1="$(_compress_if_exists 'SRR10384150_1' || true)"
gz2="$(_compress_if_exists 'SRR10384150_2' || true)"
gzs="$(_compress_if_exists 'SRR10384150' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG10_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384151"
gz1="$(_compress_if_exists 'SRR10384151_1' || true)"
gz2="$(_compress_if_exists 'SRR10384151_2' || true)"
gzs="$(_compress_if_exists 'SRR10384151' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG25_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384152"
gz1="$(_compress_if_exists 'SRR10384152_1' || true)"
gz2="$(_compress_if_exists 'SRR10384152_2' || true)"
gzs="$(_compress_if_exists 'SRR10384152' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG20_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384153"
gz1="$(_compress_if_exists 'SRR10384153_1' || true)"
gz2="$(_compress_if_exists 'SRR10384153_2' || true)"
gzs="$(_compress_if_exists 'SRR10384153' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG33_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384154"
gz1="$(_compress_if_exists 'SRR10384154_1' || true)"
gz2="$(_compress_if_exists 'SRR10384154_2' || true)"
gzs="$(_compress_if_exists 'SRR10384154' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG6_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384155"
gz1="$(_compress_if_exists 'SRR10384155_1' || true)"
gz2="$(_compress_if_exists 'SRR10384155_2' || true)"
gzs="$(_compress_if_exists 'SRR10384155' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG9_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384156"
gz1="$(_compress_if_exists 'SRR10384156_1' || true)"
gz2="$(_compress_if_exists 'SRR10384156_2' || true)"
gzs="$(_compress_if_exists 'SRR10384156' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG33_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384157"
gz1="$(_compress_if_exists 'SRR10384157_1' || true)"
gz2="$(_compress_if_exists 'SRR10384157_2' || true)"
gzs="$(_compress_if_exists 'SRR10384157' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG34_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384158"
gz1="$(_compress_if_exists 'SRR10384158_1' || true)"
gz2="$(_compress_if_exists 'SRR10384158_2' || true)"
gzs="$(_compress_if_exists 'SRR10384158' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG34_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384159"
gz1="$(_compress_if_exists 'SRR10384159_1' || true)"
gz2="$(_compress_if_exists 'SRR10384159_2' || true)"
gzs="$(_compress_if_exists 'SRR10384159' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG31_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384160"
gz1="$(_compress_if_exists 'SRR10384160_1' || true)"
gz2="$(_compress_if_exists 'SRR10384160_2' || true)"
gzs="$(_compress_if_exists 'SRR10384160' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG29_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384161"
gz1="$(_compress_if_exists 'SRR10384161_1' || true)"
gz2="$(_compress_if_exists 'SRR10384161_2' || true)"
gzs="$(_compress_if_exists 'SRR10384161' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG34_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384162"
gz1="$(_compress_if_exists 'SRR10384162_1' || true)"
gz2="$(_compress_if_exists 'SRR10384162_2' || true)"
gzs="$(_compress_if_exists 'SRR10384162' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG30_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384163"
gz1="$(_compress_if_exists 'SRR10384163_1' || true)"
gz2="$(_compress_if_exists 'SRR10384163_2' || true)"
gzs="$(_compress_if_exists 'SRR10384163' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG37_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384164"
gz1="$(_compress_if_exists 'SRR10384164_1' || true)"
gz2="$(_compress_if_exists 'SRR10384164_2' || true)"
gzs="$(_compress_if_exists 'SRR10384164' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG28_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384165"
gz1="$(_compress_if_exists 'SRR10384165_1' || true)"
gz2="$(_compress_if_exists 'SRR10384165_2' || true)"
gzs="$(_compress_if_exists 'SRR10384165' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG31_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384166"
gz1="$(_compress_if_exists 'SRR10384166_1' || true)"
gz2="$(_compress_if_exists 'SRR10384166_2' || true)"
gzs="$(_compress_if_exists 'SRR10384166' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG32_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384167"
gz1="$(_compress_if_exists 'SRR10384167_1' || true)"
gz2="$(_compress_if_exists 'SRR10384167_2' || true)"
gzs="$(_compress_if_exists 'SRR10384167' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG11_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384168"
gz1="$(_compress_if_exists 'SRR10384168_1' || true)"
gz2="$(_compress_if_exists 'SRR10384168_2' || true)"
gzs="$(_compress_if_exists 'SRR10384168' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG38_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384169"
gz1="$(_compress_if_exists 'SRR10384169_1' || true)"
gz2="$(_compress_if_exists 'SRR10384169_2' || true)"
gzs="$(_compress_if_exists 'SRR10384169' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG11_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384170"
gz1="$(_compress_if_exists 'SRR10384170_1' || true)"
gz2="$(_compress_if_exists 'SRR10384170_2' || true)"
gzs="$(_compress_if_exists 'SRR10384170' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG36_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384171"
gz1="$(_compress_if_exists 'SRR10384171_1' || true)"
gz2="$(_compress_if_exists 'SRR10384171_2' || true)"
gzs="$(_compress_if_exists 'SRR10384171' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG34_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384172"
gz1="$(_compress_if_exists 'SRR10384172_1' || true)"
gz2="$(_compress_if_exists 'SRR10384172_2' || true)"
gzs="$(_compress_if_exists 'SRR10384172' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG14_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384173"
gz1="$(_compress_if_exists 'SRR10384173_1' || true)"
gz2="$(_compress_if_exists 'SRR10384173_2' || true)"
gzs="$(_compress_if_exists 'SRR10384173' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG35_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384174"
gz1="$(_compress_if_exists 'SRR10384174_1' || true)"
gz2="$(_compress_if_exists 'SRR10384174_2' || true)"
gzs="$(_compress_if_exists 'SRR10384174' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG27_130.fastq.gz"
fi

fasterq-dump --split-files "SRR10384175"
gz1="$(_compress_if_exists 'SRR10384175_1' || true)"
gz2="$(_compress_if_exists 'SRR10384175_2' || true)"
gzs="$(_compress_if_exists 'SRR10384175' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG27_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384176"
gz1="$(_compress_if_exists 'SRR10384176_1' || true)"
gz2="$(_compress_if_exists 'SRR10384176_2' || true)"
gzs="$(_compress_if_exists 'SRR10384176' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG40_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384177"
gz1="$(_compress_if_exists 'SRR10384177_1' || true)"
gz2="$(_compress_if_exists 'SRR10384177_2' || true)"
gzs="$(_compress_if_exists 'SRR10384177' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG41_132.fastq.gz"
fi

fasterq-dump --split-files "SRR10384178"
gz1="$(_compress_if_exists 'SRR10384178_1' || true)"
gz2="$(_compress_if_exists 'SRR10384178_2' || true)"
gzs="$(_compress_if_exists 'SRR10384178' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG22_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384179"
gz1="$(_compress_if_exists 'SRR10384179_1' || true)"
gz2="$(_compress_if_exists 'SRR10384179_2' || true)"
gzs="$(_compress_if_exists 'SRR10384179' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG22_143.fastq.gz"
fi

fasterq-dump --split-files "SRR10384180"
gz1="$(_compress_if_exists 'SRR10384180_1' || true)"
gz2="$(_compress_if_exists 'SRR10384180_2' || true)"
gzs="$(_compress_if_exists 'SRR10384180' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG34_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384181"
gz1="$(_compress_if_exists 'SRR10384181_1' || true)"
gz2="$(_compress_if_exists 'SRR10384181_2' || true)"
gzs="$(_compress_if_exists 'SRR10384181' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG22_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384182"
gz1="$(_compress_if_exists 'SRR10384182_1' || true)"
gz2="$(_compress_if_exists 'SRR10384182_2' || true)"
gzs="$(_compress_if_exists 'SRR10384182' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG15_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384183"
gz1="$(_compress_if_exists 'SRR10384183_1' || true)"
gz2="$(_compress_if_exists 'SRR10384183_2' || true)"
gzs="$(_compress_if_exists 'SRR10384183' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG15_133.fastq.gz"
fi

fasterq-dump --split-files "SRR10384184"
gz1="$(_compress_if_exists 'SRR10384184_1' || true)"
gz2="$(_compress_if_exists 'SRR10384184_2' || true)"
gzs="$(_compress_if_exists 'SRR10384184' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG16_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384185"
gz1="$(_compress_if_exists 'SRR10384185_1' || true)"
gz2="$(_compress_if_exists 'SRR10384185_2' || true)"
gzs="$(_compress_if_exists 'SRR10384185' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG16_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384186"
gz1="$(_compress_if_exists 'SRR10384186_1' || true)"
gz2="$(_compress_if_exists 'SRR10384186_2' || true)"
gzs="$(_compress_if_exists 'SRR10384186' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG17_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384187"
gz1="$(_compress_if_exists 'SRR10384187_1' || true)"
gz2="$(_compress_if_exists 'SRR10384187_2' || true)"
gzs="$(_compress_if_exists 'SRR10384187' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG35_142.fastq.gz"
fi

fasterq-dump --split-files "SRR10384188"
gz1="$(_compress_if_exists 'SRR10384188_1' || true)"
gz2="$(_compress_if_exists 'SRR10384188_2' || true)"
gzs="$(_compress_if_exists 'SRR10384188' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG35_144.fastq.gz"
fi

fasterq-dump --split-files "SRR10384189"
gz1="$(_compress_if_exists 'SRR10384189_1' || true)"
gz2="$(_compress_if_exists 'SRR10384189_2' || true)"
gzs="$(_compress_if_exists 'SRR10384189' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG36_145.fastq.gz"
fi

fasterq-dump --split-files "SRR10384190"
gz1="$(_compress_if_exists 'SRR10384190_1' || true)"
gz2="$(_compress_if_exists 'SRR10384190_2' || true)"
gzs="$(_compress_if_exists 'SRR10384190' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG23_131.fastq.gz"
fi

fasterq-dump --split-files "SRR10384191"
gz1="$(_compress_if_exists 'SRR10384191_1' || true)"
gz2="$(_compress_if_exists 'SRR10384191_2' || true)"
gzs="$(_compress_if_exists 'SRR10384191' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "SG39_143.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384085/SRR10384085"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384086/SRR10384086"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384087/SRR10384087"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384088/SRR10384088"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384089/SRR10384089"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384090/SRR10384090"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384091/SRR10384091"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384092/SRR10384092"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384093/SRR10384093"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384094/SRR10384094"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384095/SRR10384095"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384096/SRR10384096"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384097/SRR10384097"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384098/SRR10384098"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384099/SRR10384099"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384100/SRR10384100"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384101/SRR10384101"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384102/SRR10384102"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384103/SRR10384103"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384104/SRR10384104"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384105/SRR10384105"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384106/SRR10384106"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384107/SRR10384107"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384108/SRR10384108"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384109/SRR10384109"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384110/SRR10384110"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384111/SRR10384111"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384112/SRR10384112"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384113/SRR10384113"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384114/SRR10384114"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384115/SRR10384115"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384116/SRR10384116"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384117/SRR10384117"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384118/SRR10384118"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384119/SRR10384119"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384120/SRR10384120"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384121/SRR10384121"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384122/SRR10384122"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384123/SRR10384123"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384124/SRR10384124"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384125/SRR10384125"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384126/SRR10384126"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384127/SRR10384127"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384128/SRR10384128"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384129/SRR10384129"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384130/SRR10384130"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384131/SRR10384131"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384132/SRR10384132"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384133/SRR10384133"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384134/SRR10384134"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384135/SRR10384135"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384136/SRR10384136"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384137/SRR10384137"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384138/SRR10384138"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384139/SRR10384139"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384140/SRR10384140"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384141/SRR10384141"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384142/SRR10384142"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384143/SRR10384143"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384144/SRR10384144"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384145/SRR10384145"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384146/SRR10384146"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384147/SRR10384147"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384148/SRR10384148"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384149/SRR10384149"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384150/SRR10384150"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384151/SRR10384151"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384152/SRR10384152"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384153/SRR10384153"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384154/SRR10384154"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384155/SRR10384155"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384156/SRR10384156"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384157/SRR10384157"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384158/SRR10384158"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384159/SRR10384159"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384160/SRR10384160"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384161/SRR10384161"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384162/SRR10384162"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384163/SRR10384163"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384164/SRR10384164"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384165/SRR10384165"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384166/SRR10384166"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384167/SRR10384167"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384168/SRR10384168"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384169/SRR10384169"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384170/SRR10384170"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384171/SRR10384171"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384172/SRR10384172"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384173/SRR10384173"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384174/SRR10384174"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384175/SRR10384175"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384176/SRR10384176"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384177/SRR10384177"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384178/SRR10384178"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384179/SRR10384179"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384180/SRR10384180"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384181/SRR10384181"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384182/SRR10384182"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384183/SRR10384183"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384184/SRR10384184"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384185/SRR10384185"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384186/SRR10384186"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384187/SRR10384187"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384188/SRR10384188"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384189/SRR10384189"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384190/SRR10384190"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384191/SRR10384191"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384085/SRR10384085"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384086/SRR10384086"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384087/SRR10384087"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384088/SRR10384088"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384089/SRR10384089"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384090/SRR10384090"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384150/SRR10384150"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384098/SRR10384098"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384167/SRR10384167"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384117/SRR10384117"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384169/SRR10384169"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384110/SRR10384110"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384137/SRR10384137"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384107/SRR10384107"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384172/SRR10384172"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384101/SRR10384101"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384182/SRR10384182"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384141/SRR10384141"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384183/SRR10384183"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384184/SRR10384184"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384104/SRR10384104"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384185/SRR10384185"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384149/SRR10384149"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384146/SRR10384146"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384186/SRR10384186"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384127/SRR10384127"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384152/SRR10384152"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384097/SRR10384097"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384100/SRR10384100"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384099/SRR10384099"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384115/SRR10384115"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384178/SRR10384178"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384179/SRR10384179"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384181/SRR10384181"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384096/SRR10384096"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384190/SRR10384190"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384131/SRR10384131"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384106/SRR10384106"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384151/SRR10384151"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384116/SRR10384116"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384122/SRR10384122"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384108/SRR10384108"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384129/SRR10384129"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384136/SRR10384136"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384092/SRR10384092"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384174/SRR10384174"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384175/SRR10384175"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384113/SRR10384113"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384164/SRR10384164"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384160/SRR10384160"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384119/SRR10384119"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384140/SRR10384140"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384162/SRR10384162"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384134/SRR10384134"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384147/SRR10384147"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384159/SRR10384159"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384105/SRR10384105"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384165/SRR10384165"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384102/SRR10384102"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384123/SRR10384123"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384114/SRR10384114"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384166/SRR10384166"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384126/SRR10384126"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384109/SRR10384109"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384124/SRR10384124"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384156/SRR10384156"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384153/SRR10384153"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384125/SRR10384125"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384161/SRR10384161"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384171/SRR10384171"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384157/SRR10384157"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384158/SRR10384158"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384180/SRR10384180"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384148/SRR10384148"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384091/SRR10384091"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384130/SRR10384130"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384187/SRR10384187"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384111/SRR10384111"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384188/SRR10384188"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384173/SRR10384173"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384135/SRR10384135"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384133/SRR10384133"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384170/SRR10384170"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384120/SRR10384120"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384189/SRR10384189"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384142/SRR10384142"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384163/SRR10384163"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384132/SRR10384132"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384168/SRR10384168"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384145/SRR10384145"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384191/SRR10384191"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384176/SRR10384176"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384093/SRR10384093"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384177/SRR10384177"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384121/SRR10384121"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384118/SRR10384118"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384144/SRR10384144"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384112/SRR10384112"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384103/SRR10384103"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384154/SRR10384154"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384095/SRR10384095"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384138/SRR10384138"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384143/SRR10384143"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384094/SRR10384094"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384139/SRR10384139"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384155/SRR10384155"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR10384128/SRR10384128"

echo "Download complete. Files saved to $OUTDIR"