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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE102nnn/GSE102497/suppl/GSE102497_RAW.tar" -O "GSE102497_RAW.tar"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE102nnn/GSE102497/suppl/GSE102497_featureCounts_hg19_mirnas_only_mirbase_features.txt.gz" -O "GSE102497_featureCounts_hg19_mirnas_only_mirbase_features.txt.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE102nnn/GSE102497/suppl/GSE102497_featureCounts_hg19_mirnas_only_mirbase_features_batch2.txt.gz" -O "GSE102497_featureCounts_hg19_mirnas_only_mirbase_features_batch2.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 "SRR5925665"
gz1="$(_compress_if_exists 'SRR5925665_1' || true)"
gz2="$(_compress_if_exists 'SRR5925665_2' || true)"
gzs="$(_compress_if_exists 'SRR5925665' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "b8p42_hepg2_sh_bud13_r1_S24_L005_R1_001.fastq.gz"
fi

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925665/SRR5925665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925666/SRR5925666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925667/SRR5925667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925668/SRR5925668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925669/SRR5925669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925670/SRR5925670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925671/SRR5925671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925672/SRR5925672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925673/SRR5925673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925674/SRR5925674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925675/SRR5925675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925676/SRR5925676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925677/SRR5925677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925678/SRR5925678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925679/SRR5925679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925680/SRR5925680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925681/SRR5925681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925682/SRR5925682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925683/SRR5925683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925684/SRR5925684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925685/SRR5925685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925686/SRR5925686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925687/SRR5925687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925688/SRR5925688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925689/SRR5925689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925690/SRR5925690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925691/SRR5925691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925692/SRR5925692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925693/SRR5925693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925694/SRR5925694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925695/SRR5925695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925696/SRR5925696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925697/SRR5925697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925698/SRR5925698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925699/SRR5925699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925700/SRR5925700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925701/SRR5925701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925702/SRR5925702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925703/SRR5925703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925704/SRR5925704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925705/SRR5925705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925706/SRR5925706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925707/SRR5925707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925708/SRR5925708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925709/SRR5925709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925710/SRR5925710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925711/SRR5925711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925712/SRR5925712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925713/SRR5925713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925714/SRR5925714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925715/SRR5925715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925716/SRR5925716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925717/SRR5925717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925718/SRR5925718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925719/SRR5925719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925720/SRR5925720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925721/SRR5925721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925722/SRR5925722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925723/SRR5925723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925724/SRR5925724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925725/SRR5925725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925726/SRR5925726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925727/SRR5925727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925728/SRR5925728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925729/SRR5925729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925730/SRR5925730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925731/SRR5925731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925732/SRR5925732"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925665/SRR5925665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925666/SRR5925666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925667/SRR5925667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925668/SRR5925668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925669/SRR5925669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925670/SRR5925670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925671/SRR5925671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925672/SRR5925672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925673/SRR5925673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925674/SRR5925674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925675/SRR5925675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925676/SRR5925676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925677/SRR5925677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925678/SRR5925678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925679/SRR5925679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925680/SRR5925680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925681/SRR5925681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925682/SRR5925682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925683/SRR5925683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925684/SRR5925684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925685/SRR5925685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925686/SRR5925686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925687/SRR5925687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925688/SRR5925688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925689/SRR5925689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925690/SRR5925690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925691/SRR5925691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925692/SRR5925692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925693/SRR5925693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925694/SRR5925694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925695/SRR5925695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925696/SRR5925696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925697/SRR5925697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925698/SRR5925698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925699/SRR5925699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925700/SRR5925700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925701/SRR5925701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925702/SRR5925702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925703/SRR5925703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925704/SRR5925704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925705/SRR5925705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925706/SRR5925706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925707/SRR5925707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925708/SRR5925708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925709/SRR5925709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925710/SRR5925710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925711/SRR5925711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925712/SRR5925712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925713/SRR5925713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925714/SRR5925714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925715/SRR5925715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925716/SRR5925716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925717/SRR5925717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925718/SRR5925718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925719/SRR5925719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925720/SRR5925720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925721/SRR5925721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925722/SRR5925722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925723/SRR5925723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925724/SRR5925724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925725/SRR5925725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925726/SRR5925726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925727/SRR5925727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925728/SRR5925728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925729/SRR5925729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925730/SRR5925730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925731/SRR5925731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925732/SRR5925732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925702/SRR5925702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR5925704/SRR5925704"

echo "Download complete. Files saved to $OUTDIR"