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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE134nnn/GSE134809/suppl/GSE134809_RAW.tar" -O "GSE134809_RAW.tar"

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

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

# Option A: Download via SRA Toolkit (recommended)
fasterq-dump --split-files "SRR12565234"
gz1="$(_compress_if_exists 'SRR12565234_1' || true)"
gz2="$(_compress_if_exists 'SRR12565234_2' || true)"
gzs="$(_compress_if_exists 'SRR12565234' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "67_P5_PBMC_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "67_P5_PBMC_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565235"
gz1="$(_compress_if_exists 'SRR12565235_1' || true)"
gz2="$(_compress_if_exists 'SRR12565235_2' || true)"
gzs="$(_compress_if_exists 'SRR12565235' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "67_P5_PBMC_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "67_P5_PBMC_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565236"
gz1="$(_compress_if_exists 'SRR12565236_1' || true)"
gz2="$(_compress_if_exists 'SRR12565236_2' || true)"
gzs="$(_compress_if_exists 'SRR12565236' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "67_P5_PBMC_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "67_P5_PBMC_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565237"
gz1="$(_compress_if_exists 'SRR12565237_1' || true)"
gz2="$(_compress_if_exists 'SRR12565237_2' || true)"
gzs="$(_compress_if_exists 'SRR12565237' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "67_P5_PBMC_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "67_P5_PBMC_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565238"
gz1="$(_compress_if_exists 'SRR12565238_1' || true)"
gz2="$(_compress_if_exists 'SRR12565238_2' || true)"
gzs="$(_compress_if_exists 'SRR12565238' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "126_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "126_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565239"
gz1="$(_compress_if_exists 'SRR12565239_1' || true)"
gz2="$(_compress_if_exists 'SRR12565239_2' || true)"
gzs="$(_compress_if_exists 'SRR12565239' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "126_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "126_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565240"
gz1="$(_compress_if_exists 'SRR12565240_1' || true)"
gz2="$(_compress_if_exists 'SRR12565240_2' || true)"
gzs="$(_compress_if_exists 'SRR12565240' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "126_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "126_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565241"
gz1="$(_compress_if_exists 'SRR12565241_1' || true)"
gz2="$(_compress_if_exists 'SRR12565241_2' || true)"
gzs="$(_compress_if_exists 'SRR12565241' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "127_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "127_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565242"
gz1="$(_compress_if_exists 'SRR12565242_1' || true)"
gz2="$(_compress_if_exists 'SRR12565242_2' || true)"
gzs="$(_compress_if_exists 'SRR12565242' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "127_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "127_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565243"
gz1="$(_compress_if_exists 'SRR12565243_1' || true)"
gz2="$(_compress_if_exists 'SRR12565243_2' || true)"
gzs="$(_compress_if_exists 'SRR12565243' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "134_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "134_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565244"
gz1="$(_compress_if_exists 'SRR12565244_1' || true)"
gz2="$(_compress_if_exists 'SRR12565244_2' || true)"
gzs="$(_compress_if_exists 'SRR12565244' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "134_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "134_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565245"
gz1="$(_compress_if_exists 'SRR12565245_1' || true)"
gz2="$(_compress_if_exists 'SRR12565245_2' || true)"
gzs="$(_compress_if_exists 'SRR12565245' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "134_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "134_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565246"
gz1="$(_compress_if_exists 'SRR12565246_1' || true)"
gz2="$(_compress_if_exists 'SRR12565246_2' || true)"
gzs="$(_compress_if_exists 'SRR12565246' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "134_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "134_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565247"
gz1="$(_compress_if_exists 'SRR12565247_1' || true)"
gz2="$(_compress_if_exists 'SRR12565247_2' || true)"
gzs="$(_compress_if_exists 'SRR12565247' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "157_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "157_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565248"
gz1="$(_compress_if_exists 'SRR12565248_1' || true)"
gz2="$(_compress_if_exists 'SRR12565248_2' || true)"
gzs="$(_compress_if_exists 'SRR12565248' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "157_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "157_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565249"
gz1="$(_compress_if_exists 'SRR12565249_1' || true)"
gz2="$(_compress_if_exists 'SRR12565249_2' || true)"
gzs="$(_compress_if_exists 'SRR12565249' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "157_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "157_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565250"
gz1="$(_compress_if_exists 'SRR12565250_1' || true)"
gz2="$(_compress_if_exists 'SRR12565250_2' || true)"
gzs="$(_compress_if_exists 'SRR12565250' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "157_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "157_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565251"
gz1="$(_compress_if_exists 'SRR12565251_1' || true)"
gz2="$(_compress_if_exists 'SRR12565251_2' || true)"
gzs="$(_compress_if_exists 'SRR12565251' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "179_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "179_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565252"
gz1="$(_compress_if_exists 'SRR12565252_1' || true)"
gz2="$(_compress_if_exists 'SRR12565252_2' || true)"
gzs="$(_compress_if_exists 'SRR12565252' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "179_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "179_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565253"
gz1="$(_compress_if_exists 'SRR12565253_1' || true)"
gz2="$(_compress_if_exists 'SRR12565253_2' || true)"
gzs="$(_compress_if_exists 'SRR12565253' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "179_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "179_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565254"
gz1="$(_compress_if_exists 'SRR12565254_1' || true)"
gz2="$(_compress_if_exists 'SRR12565254_2' || true)"
gzs="$(_compress_if_exists 'SRR12565254' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "179_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "179_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565255"
gz1="$(_compress_if_exists 'SRR12565255_1' || true)"
gz2="$(_compress_if_exists 'SRR12565255_2' || true)"
gzs="$(_compress_if_exists 'SRR12565255' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "185_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "185_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565256"
gz1="$(_compress_if_exists 'SRR12565256_1' || true)"
gz2="$(_compress_if_exists 'SRR12565256_2' || true)"
gzs="$(_compress_if_exists 'SRR12565256' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "185_S4_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "185_S4_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565257"
gz1="$(_compress_if_exists 'SRR12565257_1' || true)"
gz2="$(_compress_if_exists 'SRR12565257_2' || true)"
gzs="$(_compress_if_exists 'SRR12565257' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "185_S4_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "185_S4_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565258"
gz1="$(_compress_if_exists 'SRR12565258_1' || true)"
gz2="$(_compress_if_exists 'SRR12565258_2' || true)"
gzs="$(_compress_if_exists 'SRR12565258' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "185_S4_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "185_S4_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565259"
gz1="$(_compress_if_exists 'SRR12565259_1' || true)"
gz2="$(_compress_if_exists 'SRR12565259_2' || true)"
gzs="$(_compress_if_exists 'SRR12565259' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD14P_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD14P_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565260"
gz1="$(_compress_if_exists 'SRR12565260_1' || true)"
gz2="$(_compress_if_exists 'SRR12565260_2' || true)"
gzs="$(_compress_if_exists 'SRR12565260' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD14P_S4_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD14P_S4_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565261"
gz1="$(_compress_if_exists 'SRR12565261_1' || true)"
gz2="$(_compress_if_exists 'SRR12565261_2' || true)"
gzs="$(_compress_if_exists 'SRR12565261' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD14P_S4_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD14P_S4_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565262"
gz1="$(_compress_if_exists 'SRR12565262_1' || true)"
gz2="$(_compress_if_exists 'SRR12565262_2' || true)"
gzs="$(_compress_if_exists 'SRR12565262' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD14P_S4_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD14P_S4_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565263"
gz1="$(_compress_if_exists 'SRR12565263_1' || true)"
gz2="$(_compress_if_exists 'SRR12565263_2' || true)"
gzs="$(_compress_if_exists 'SRR12565263' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD15P_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD15P_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565264"
gz1="$(_compress_if_exists 'SRR12565264_1' || true)"
gz2="$(_compress_if_exists 'SRR12565264_2' || true)"
gzs="$(_compress_if_exists 'SRR12565264' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD15P_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD15P_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565265"
gz1="$(_compress_if_exists 'SRR12565265_1' || true)"
gz2="$(_compress_if_exists 'SRR12565265_2' || true)"
gzs="$(_compress_if_exists 'SRR12565265' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD15P_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD15P_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR12565266"
gz1="$(_compress_if_exists 'SRR12565266_1' || true)"
gz2="$(_compress_if_exists 'SRR12565266_2' || true)"
gzs="$(_compress_if_exists 'SRR12565266' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CD15P_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CD15P_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827631"
gz1="$(_compress_if_exists 'SRR9827631_1' || true)"
gz2="$(_compress_if_exists 'SRR9827631_2' || true)"
gzs="$(_compress_if_exists 'SRR9827631' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827632"
gz1="$(_compress_if_exists 'SRR9827632_1' || true)"
gz2="$(_compress_if_exists 'SRR9827632_2' || true)"
gzs="$(_compress_if_exists 'SRR9827632' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S15_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S15_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827633"
gz1="$(_compress_if_exists 'SRR9827633_1' || true)"
gz2="$(_compress_if_exists 'SRR9827633_2' || true)"
gzs="$(_compress_if_exists 'SRR9827633' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S15_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S15_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827634"
gz1="$(_compress_if_exists 'SRR9827634_1' || true)"
gz2="$(_compress_if_exists 'SRR9827634_2' || true)"
gzs="$(_compress_if_exists 'SRR9827634' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S15_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S15_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827635"
gz1="$(_compress_if_exists 'SRR9827635_1' || true)"
gz2="$(_compress_if_exists 'SRR9827635_2' || true)"
gzs="$(_compress_if_exists 'SRR9827635' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827636"
gz1="$(_compress_if_exists 'SRR9827636_1' || true)"
gz2="$(_compress_if_exists 'SRR9827636_2' || true)"
gzs="$(_compress_if_exists 'SRR9827636' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S16_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S16_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827637"
gz1="$(_compress_if_exists 'SRR9827637_1' || true)"
gz2="$(_compress_if_exists 'SRR9827637_2' || true)"
gzs="$(_compress_if_exists 'SRR9827637' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S16_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S16_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827638"
gz1="$(_compress_if_exists 'SRR9827638_1' || true)"
gz2="$(_compress_if_exists 'SRR9827638_2' || true)"
gzs="$(_compress_if_exists 'SRR9827638' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S16_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S16_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827639"
gz1="$(_compress_if_exists 'SRR9827639_1' || true)"
gz2="$(_compress_if_exists 'SRR9827639_2' || true)"
gzs="$(_compress_if_exists 'SRR9827639' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S13_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S13_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827640"
gz1="$(_compress_if_exists 'SRR9827640_1' || true)"
gz2="$(_compress_if_exists 'SRR9827640_2' || true)"
gzs="$(_compress_if_exists 'SRR9827640' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S13_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S13_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827641"
gz1="$(_compress_if_exists 'SRR9827641_1' || true)"
gz2="$(_compress_if_exists 'SRR9827641_2' || true)"
gzs="$(_compress_if_exists 'SRR9827641' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S13_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S13_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827642"
gz1="$(_compress_if_exists 'SRR9827642_1' || true)"
gz2="$(_compress_if_exists 'SRR9827642_2' || true)"
gzs="$(_compress_if_exists 'SRR9827642' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827643"
gz1="$(_compress_if_exists 'SRR9827643_1' || true)"
gz2="$(_compress_if_exists 'SRR9827643_2' || true)"
gzs="$(_compress_if_exists 'SRR9827643' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S14_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S14_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827644"
gz1="$(_compress_if_exists 'SRR9827644_1' || true)"
gz2="$(_compress_if_exists 'SRR9827644_2' || true)"
gzs="$(_compress_if_exists 'SRR9827644' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S14_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S14_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827645"
gz1="$(_compress_if_exists 'SRR9827645_1' || true)"
gz2="$(_compress_if_exists 'SRR9827645_2' || true)"
gzs="$(_compress_if_exists 'SRR9827645' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S14_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S14_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827646"
gz1="$(_compress_if_exists 'SRR9827646_1' || true)"
gz2="$(_compress_if_exists 'SRR9827646_2' || true)"
gzs="$(_compress_if_exists 'SRR9827646' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "69_P5_infla_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "69_P5_infla_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827647"
gz1="$(_compress_if_exists 'SRR9827647_1' || true)"
gz2="$(_compress_if_exists 'SRR9827647_2' || true)"
gzs="$(_compress_if_exists 'SRR9827647' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S10_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S10_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827648"
gz1="$(_compress_if_exists 'SRR9827648_1' || true)"
gz2="$(_compress_if_exists 'SRR9827648_2' || true)"
gzs="$(_compress_if_exists 'SRR9827648' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S12_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S12_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827649"
gz1="$(_compress_if_exists 'SRR9827649_1' || true)"
gz2="$(_compress_if_exists 'SRR9827649_2' || true)"
gzs="$(_compress_if_exists 'SRR9827649' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S12_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S12_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827650"
gz1="$(_compress_if_exists 'SRR9827650_1' || true)"
gz2="$(_compress_if_exists 'SRR9827650_2' || true)"
gzs="$(_compress_if_exists 'SRR9827650' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S12_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S12_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827651"
gz1="$(_compress_if_exists 'SRR9827651_1' || true)"
gz2="$(_compress_if_exists 'SRR9827651_2' || true)"
gzs="$(_compress_if_exists 'SRR9827651' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S9_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S9_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827652"
gz1="$(_compress_if_exists 'SRR9827652_1' || true)"
gz2="$(_compress_if_exists 'SRR9827652_2' || true)"
gzs="$(_compress_if_exists 'SRR9827652' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S9_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S9_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827653"
gz1="$(_compress_if_exists 'SRR9827653_1' || true)"
gz2="$(_compress_if_exists 'SRR9827653_2' || true)"
gzs="$(_compress_if_exists 'SRR9827653' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S9_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S9_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827654"
gz1="$(_compress_if_exists 'SRR9827654_1' || true)"
gz2="$(_compress_if_exists 'SRR9827654_2' || true)"
gzs="$(_compress_if_exists 'SRR9827654' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S9_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S9_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827655"
gz1="$(_compress_if_exists 'SRR9827655_1' || true)"
gz2="$(_compress_if_exists 'SRR9827655_2' || true)"
gzs="$(_compress_if_exists 'SRR9827655' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "138_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "138_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827656"
gz1="$(_compress_if_exists 'SRR9827656_1' || true)"
gz2="$(_compress_if_exists 'SRR9827656_2' || true)"
gzs="$(_compress_if_exists 'SRR9827656' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "138_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "138_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827657"
gz1="$(_compress_if_exists 'SRR9827657_1' || true)"
gz2="$(_compress_if_exists 'SRR9827657_2' || true)"
gzs="$(_compress_if_exists 'SRR9827657' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "158_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "158_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827658"
gz1="$(_compress_if_exists 'SRR9827658_1' || true)"
gz2="$(_compress_if_exists 'SRR9827658_2' || true)"
gzs="$(_compress_if_exists 'SRR9827658' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "158_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "158_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827659"
gz1="$(_compress_if_exists 'SRR9827659_1' || true)"
gz2="$(_compress_if_exists 'SRR9827659_2' || true)"
gzs="$(_compress_if_exists 'SRR9827659' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "158_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "158_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827660"
gz1="$(_compress_if_exists 'SRR9827660_1' || true)"
gz2="$(_compress_if_exists 'SRR9827660_2' || true)"
gzs="$(_compress_if_exists 'SRR9827660' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "158_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "158_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827661"
gz1="$(_compress_if_exists 'SRR9827661_1' || true)"
gz2="$(_compress_if_exists 'SRR9827661_2' || true)"
gzs="$(_compress_if_exists 'SRR9827661' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "159_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "159_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827662"
gz1="$(_compress_if_exists 'SRR9827662_1' || true)"
gz2="$(_compress_if_exists 'SRR9827662_2' || true)"
gzs="$(_compress_if_exists 'SRR9827662' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "159_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "159_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827663"
gz1="$(_compress_if_exists 'SRR9827663_1' || true)"
gz2="$(_compress_if_exists 'SRR9827663_2' || true)"
gzs="$(_compress_if_exists 'SRR9827663' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "159_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "159_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827664"
gz1="$(_compress_if_exists 'SRR9827664_1' || true)"
gz2="$(_compress_if_exists 'SRR9827664_2' || true)"
gzs="$(_compress_if_exists 'SRR9827664' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "159_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "159_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827665"
gz1="$(_compress_if_exists 'SRR9827665_1' || true)"
gz2="$(_compress_if_exists 'SRR9827665_2' || true)"
gzs="$(_compress_if_exists 'SRR9827665' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_180_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_180_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827666"
gz1="$(_compress_if_exists 'SRR9827666_1' || true)"
gz2="$(_compress_if_exists 'SRR9827666_2' || true)"
gzs="$(_compress_if_exists 'SRR9827666' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_180_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_180_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827667"
gz1="$(_compress_if_exists 'SRR9827667_1' || true)"
gz2="$(_compress_if_exists 'SRR9827667_2' || true)"
gzs="$(_compress_if_exists 'SRR9827667' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_180_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_180_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827668"
gz1="$(_compress_if_exists 'SRR9827668_1' || true)"
gz2="$(_compress_if_exists 'SRR9827668_2' || true)"
gzs="$(_compress_if_exists 'SRR9827668' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_180_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_180_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827669"
gz1="$(_compress_if_exists 'SRR9827669_1' || true)"
gz2="$(_compress_if_exists 'SRR9827669_2' || true)"
gzs="$(_compress_if_exists 'SRR9827669' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_180_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_180_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827670"
gz1="$(_compress_if_exists 'SRR9827670_1' || true)"
gz2="$(_compress_if_exists 'SRR9827670_2' || true)"
gzs="$(_compress_if_exists 'SRR9827670' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_180_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_180_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827671"
gz1="$(_compress_if_exists 'SRR9827671_1' || true)"
gz2="$(_compress_if_exists 'SRR9827671_2' || true)"
gzs="$(_compress_if_exists 'SRR9827671' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_180_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_180_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827672"
gz1="$(_compress_if_exists 'SRR9827672_1' || true)"
gz2="$(_compress_if_exists 'SRR9827672_2' || true)"
gzs="$(_compress_if_exists 'SRR9827672' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_180_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_180_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827673"
gz1="$(_compress_if_exists 'SRR9827673_1' || true)"
gz2="$(_compress_if_exists 'SRR9827673_2' || true)"
gzs="$(_compress_if_exists 'SRR9827673' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_181_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_181_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827674"
gz1="$(_compress_if_exists 'SRR9827674_1' || true)"
gz2="$(_compress_if_exists 'SRR9827674_2' || true)"
gzs="$(_compress_if_exists 'SRR9827674' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_181_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_181_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827675"
gz1="$(_compress_if_exists 'SRR9827675_1' || true)"
gz2="$(_compress_if_exists 'SRR9827675_2' || true)"
gzs="$(_compress_if_exists 'SRR9827675' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_181_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_181_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827676"
gz1="$(_compress_if_exists 'SRR9827676_1' || true)"
gz2="$(_compress_if_exists 'SRR9827676_2' || true)"
gzs="$(_compress_if_exists 'SRR9827676' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_181_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_181_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827677"
gz1="$(_compress_if_exists 'SRR9827677_1' || true)"
gz2="$(_compress_if_exists 'SRR9827677_2' || true)"
gzs="$(_compress_if_exists 'SRR9827677' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_181_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_181_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827678"
gz1="$(_compress_if_exists 'SRR9827678_1' || true)"
gz2="$(_compress_if_exists 'SRR9827678_2' || true)"
gzs="$(_compress_if_exists 'SRR9827678' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_181_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_181_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827679"
gz1="$(_compress_if_exists 'SRR9827679_1' || true)"
gz2="$(_compress_if_exists 'SRR9827679_2' || true)"
gzs="$(_compress_if_exists 'SRR9827679' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_181_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_181_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827680"
gz1="$(_compress_if_exists 'SRR9827680_1' || true)"
gz2="$(_compress_if_exists 'SRR9827680_2' || true)"
gzs="$(_compress_if_exists 'SRR9827680' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_181_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_181_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827681"
gz1="$(_compress_if_exists 'SRR9827681_1' || true)"
gz2="$(_compress_if_exists 'SRR9827681_2' || true)"
gzs="$(_compress_if_exists 'SRR9827681' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_186_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_186_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827682"
gz1="$(_compress_if_exists 'SRR9827682_1' || true)"
gz2="$(_compress_if_exists 'SRR9827682_2' || true)"
gzs="$(_compress_if_exists 'SRR9827682' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_186_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_186_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827683"
gz1="$(_compress_if_exists 'SRR9827683_1' || true)"
gz2="$(_compress_if_exists 'SRR9827683_2' || true)"
gzs="$(_compress_if_exists 'SRR9827683' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_186_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_186_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827684"
gz1="$(_compress_if_exists 'SRR9827684_1' || true)"
gz2="$(_compress_if_exists 'SRR9827684_2' || true)"
gzs="$(_compress_if_exists 'SRR9827684' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_186_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_186_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827685"
gz1="$(_compress_if_exists 'SRR9827685_1' || true)"
gz2="$(_compress_if_exists 'SRR9827685_2' || true)"
gzs="$(_compress_if_exists 'SRR9827685' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_186_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_186_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827686"
gz1="$(_compress_if_exists 'SRR9827686_1' || true)"
gz2="$(_compress_if_exists 'SRR9827686_2' || true)"
gzs="$(_compress_if_exists 'SRR9827686' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_186_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_186_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827687"
gz1="$(_compress_if_exists 'SRR9827687_1' || true)"
gz2="$(_compress_if_exists 'SRR9827687_2' || true)"
gzs="$(_compress_if_exists 'SRR9827687' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_186_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_186_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827688"
gz1="$(_compress_if_exists 'SRR9827688_1' || true)"
gz2="$(_compress_if_exists 'SRR9827688_2' || true)"
gzs="$(_compress_if_exists 'SRR9827688' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_186_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_186_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827689"
gz1="$(_compress_if_exists 'SRR9827689_1' || true)"
gz2="$(_compress_if_exists 'SRR9827689_2' || true)"
gzs="$(_compress_if_exists 'SRR9827689' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_187_S6_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_187_S6_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827690"
gz1="$(_compress_if_exists 'SRR9827690_1' || true)"
gz2="$(_compress_if_exists 'SRR9827690_2' || true)"
gzs="$(_compress_if_exists 'SRR9827690' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_187_S6_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_187_S6_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827691"
gz1="$(_compress_if_exists 'SRR9827691_1' || true)"
gz2="$(_compress_if_exists 'SRR9827691_2' || true)"
gzs="$(_compress_if_exists 'SRR9827691' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_187_S6_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_187_S6_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827692"
gz1="$(_compress_if_exists 'SRR9827692_1' || true)"
gz2="$(_compress_if_exists 'SRR9827692_2' || true)"
gzs="$(_compress_if_exists 'SRR9827692' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run230_187_S6_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run230_187_S6_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827693"
gz1="$(_compress_if_exists 'SRR9827693_1' || true)"
gz2="$(_compress_if_exists 'SRR9827693_2' || true)"
gzs="$(_compress_if_exists 'SRR9827693' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_187_S6_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_187_S6_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827694"
gz1="$(_compress_if_exists 'SRR9827694_1' || true)"
gz2="$(_compress_if_exists 'SRR9827694_2' || true)"
gzs="$(_compress_if_exists 'SRR9827694' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_187_S6_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_187_S6_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827695"
gz1="$(_compress_if_exists 'SRR9827695_1' || true)"
gz2="$(_compress_if_exists 'SRR9827695_2' || true)"
gzs="$(_compress_if_exists 'SRR9827695' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_187_S6_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_187_S6_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827696"
gz1="$(_compress_if_exists 'SRR9827696_1' || true)"
gz2="$(_compress_if_exists 'SRR9827696_2' || true)"
gzs="$(_compress_if_exists 'SRR9827696' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "run231_187_S6_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "run231_187_S6_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827697"
gz1="$(_compress_if_exists 'SRR9827697_1' || true)"
gz2="$(_compress_if_exists 'SRR9827697_2' || true)"
gzs="$(_compress_if_exists 'SRR9827697' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "189_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "189_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827698"
gz1="$(_compress_if_exists 'SRR9827698_1' || true)"
gz2="$(_compress_if_exists 'SRR9827698_2' || true)"
gzs="$(_compress_if_exists 'SRR9827698' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "189_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "189_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827699"
gz1="$(_compress_if_exists 'SRR9827699_1' || true)"
gz2="$(_compress_if_exists 'SRR9827699_2' || true)"
gzs="$(_compress_if_exists 'SRR9827699' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "189_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "189_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827700"
gz1="$(_compress_if_exists 'SRR9827700_1' || true)"
gz2="$(_compress_if_exists 'SRR9827700_2' || true)"
gzs="$(_compress_if_exists 'SRR9827700' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "189_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "189_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827701"
gz1="$(_compress_if_exists 'SRR9827701_1' || true)"
gz2="$(_compress_if_exists 'SRR9827701_2' || true)"
gzs="$(_compress_if_exists 'SRR9827701' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "190_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "190_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827702"
gz1="$(_compress_if_exists 'SRR9827702_1' || true)"
gz2="$(_compress_if_exists 'SRR9827702_2' || true)"
gzs="$(_compress_if_exists 'SRR9827702' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "190_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "190_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827703"
gz1="$(_compress_if_exists 'SRR9827703_1' || true)"
gz2="$(_compress_if_exists 'SRR9827703_2' || true)"
gzs="$(_compress_if_exists 'SRR9827703' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "190_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "190_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827704"
gz1="$(_compress_if_exists 'SRR9827704_1' || true)"
gz2="$(_compress_if_exists 'SRR9827704_2' || true)"
gzs="$(_compress_if_exists 'SRR9827704' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "190_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "190_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827705"
gz1="$(_compress_if_exists 'SRR9827705_1' || true)"
gz2="$(_compress_if_exists 'SRR9827705_2' || true)"
gzs="$(_compress_if_exists 'SRR9827705' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "192_S6_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "192_S6_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827706"
gz1="$(_compress_if_exists 'SRR9827706_1' || true)"
gz2="$(_compress_if_exists 'SRR9827706_2' || true)"
gzs="$(_compress_if_exists 'SRR9827706' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "192_S6_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "192_S6_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827707"
gz1="$(_compress_if_exists 'SRR9827707_1' || true)"
gz2="$(_compress_if_exists 'SRR9827707_2' || true)"
gzs="$(_compress_if_exists 'SRR9827707' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "192_S6_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "192_S6_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827708"
gz1="$(_compress_if_exists 'SRR9827708_1' || true)"
gz2="$(_compress_if_exists 'SRR9827708_2' || true)"
gzs="$(_compress_if_exists 'SRR9827708' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "192_S6_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "192_S6_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827709"
gz1="$(_compress_if_exists 'SRR9827709_1' || true)"
gz2="$(_compress_if_exists 'SRR9827709_2' || true)"
gzs="$(_compress_if_exists 'SRR9827709' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "193_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "193_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827710"
gz1="$(_compress_if_exists 'SRR9827710_1' || true)"
gz2="$(_compress_if_exists 'SRR9827710_2' || true)"
gzs="$(_compress_if_exists 'SRR9827710' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "193_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "193_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827711"
gz1="$(_compress_if_exists 'SRR9827711_1' || true)"
gz2="$(_compress_if_exists 'SRR9827711_2' || true)"
gzs="$(_compress_if_exists 'SRR9827711' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "193_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "193_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827712"
gz1="$(_compress_if_exists 'SRR9827712_1' || true)"
gz2="$(_compress_if_exists 'SRR9827712_2' || true)"
gzs="$(_compress_if_exists 'SRR9827712' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "193_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "193_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827713"
gz1="$(_compress_if_exists 'SRR9827713_1' || true)"
gz2="$(_compress_if_exists 'SRR9827713_2' || true)"
gzs="$(_compress_if_exists 'SRR9827713' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "195_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "195_S5_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827714"
gz1="$(_compress_if_exists 'SRR9827714_1' || true)"
gz2="$(_compress_if_exists 'SRR9827714_2' || true)"
gzs="$(_compress_if_exists 'SRR9827714' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "195_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "195_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827715"
gz1="$(_compress_if_exists 'SRR9827715_1' || true)"
gz2="$(_compress_if_exists 'SRR9827715_2' || true)"
gzs="$(_compress_if_exists 'SRR9827715' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "195_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "195_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827716"
gz1="$(_compress_if_exists 'SRR9827716_1' || true)"
gz2="$(_compress_if_exists 'SRR9827716_2' || true)"
gzs="$(_compress_if_exists 'SRR9827716' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "196_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "196_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827717"
gz1="$(_compress_if_exists 'SRR9827717_1' || true)"
gz2="$(_compress_if_exists 'SRR9827717_2' || true)"
gzs="$(_compress_if_exists 'SRR9827717' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "196_S4_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "196_S4_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827718"
gz1="$(_compress_if_exists 'SRR9827718_1' || true)"
gz2="$(_compress_if_exists 'SRR9827718_2' || true)"
gzs="$(_compress_if_exists 'SRR9827718' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "196_S4_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "196_S4_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827719"
gz1="$(_compress_if_exists 'SRR9827719_1' || true)"
gz2="$(_compress_if_exists 'SRR9827719_2' || true)"
gzs="$(_compress_if_exists 'SRR9827719' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "208_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "208_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827720"
gz1="$(_compress_if_exists 'SRR9827720_1' || true)"
gz2="$(_compress_if_exists 'SRR9827720_2' || true)"
gzs="$(_compress_if_exists 'SRR9827720' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "208_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "208_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827721"
gz1="$(_compress_if_exists 'SRR9827721_1' || true)"
gz2="$(_compress_if_exists 'SRR9827721_2' || true)"
gzs="$(_compress_if_exists 'SRR9827721' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "208_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "208_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827722"
gz1="$(_compress_if_exists 'SRR9827722_1' || true)"
gz2="$(_compress_if_exists 'SRR9827722_2' || true)"
gzs="$(_compress_if_exists 'SRR9827722' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "208_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "208_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827723"
gz1="$(_compress_if_exists 'SRR9827723_1' || true)"
gz2="$(_compress_if_exists 'SRR9827723_2' || true)"
gzs="$(_compress_if_exists 'SRR9827723' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "209_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "209_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827724"
gz1="$(_compress_if_exists 'SRR9827724_1' || true)"
gz2="$(_compress_if_exists 'SRR9827724_2' || true)"
gzs="$(_compress_if_exists 'SRR9827724' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "209_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "209_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827725"
gz1="$(_compress_if_exists 'SRR9827725_1' || true)"
gz2="$(_compress_if_exists 'SRR9827725_2' || true)"
gzs="$(_compress_if_exists 'SRR9827725' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "209_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "209_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827726"
gz1="$(_compress_if_exists 'SRR9827726_1' || true)"
gz2="$(_compress_if_exists 'SRR9827726_2' || true)"
gzs="$(_compress_if_exists 'SRR9827726' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "209_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "209_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827727"
gz1="$(_compress_if_exists 'SRR9827727_1' || true)"
gz2="$(_compress_if_exists 'SRR9827727_2' || true)"
gzs="$(_compress_if_exists 'SRR9827727' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S10_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S10_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827728"
gz1="$(_compress_if_exists 'SRR9827728_1' || true)"
gz2="$(_compress_if_exists 'SRR9827728_2' || true)"
gzs="$(_compress_if_exists 'SRR9827728' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S10_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S10_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827729"
gz1="$(_compress_if_exists 'SRR9827729_1' || true)"
gz2="$(_compress_if_exists 'SRR9827729_2' || true)"
gzs="$(_compress_if_exists 'SRR9827729' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S10_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S10_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827730"
gz1="$(_compress_if_exists 'SRR9827730_1' || true)"
gz2="$(_compress_if_exists 'SRR9827730_2' || true)"
gzs="$(_compress_if_exists 'SRR9827730' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S11_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S11_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827731"
gz1="$(_compress_if_exists 'SRR9827731_1' || true)"
gz2="$(_compress_if_exists 'SRR9827731_2' || true)"
gzs="$(_compress_if_exists 'SRR9827731' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S11_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S11_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827732"
gz1="$(_compress_if_exists 'SRR9827732_1' || true)"
gz2="$(_compress_if_exists 'SRR9827732_2' || true)"
gzs="$(_compress_if_exists 'SRR9827732' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S11_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S11_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827733"
gz1="$(_compress_if_exists 'SRR9827733_1' || true)"
gz2="$(_compress_if_exists 'SRR9827733_2' || true)"
gzs="$(_compress_if_exists 'SRR9827733' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S11_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S11_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827734"
gz1="$(_compress_if_exists 'SRR9827734_1' || true)"
gz2="$(_compress_if_exists 'SRR9827734_2' || true)"
gzs="$(_compress_if_exists 'SRR9827734' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "68_P5_uninfl_S12_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "68_P5_uninfl_S12_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827735"
gz1="$(_compress_if_exists 'SRR9827735_1' || true)"
gz2="$(_compress_if_exists 'SRR9827735_2' || true)"
gzs="$(_compress_if_exists 'SRR9827735' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "122_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "122_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827736"
gz1="$(_compress_if_exists 'SRR9827736_1' || true)"
gz2="$(_compress_if_exists 'SRR9827736_2' || true)"
gzs="$(_compress_if_exists 'SRR9827736' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "122_S1_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "122_S1_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827737"
gz1="$(_compress_if_exists 'SRR9827737_1' || true)"
gz2="$(_compress_if_exists 'SRR9827737_2' || true)"
gzs="$(_compress_if_exists 'SRR9827737' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "122_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "122_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827738"
gz1="$(_compress_if_exists 'SRR9827738_1' || true)"
gz2="$(_compress_if_exists 'SRR9827738_2' || true)"
gzs="$(_compress_if_exists 'SRR9827738' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "122_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "122_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827739"
gz1="$(_compress_if_exists 'SRR9827739_1' || true)"
gz2="$(_compress_if_exists 'SRR9827739_2' || true)"
gzs="$(_compress_if_exists 'SRR9827739' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "123_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "123_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827740"
gz1="$(_compress_if_exists 'SRR9827740_1' || true)"
gz2="$(_compress_if_exists 'SRR9827740_2' || true)"
gzs="$(_compress_if_exists 'SRR9827740' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "123_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "123_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827741"
gz1="$(_compress_if_exists 'SRR9827741_1' || true)"
gz2="$(_compress_if_exists 'SRR9827741_2' || true)"
gzs="$(_compress_if_exists 'SRR9827741' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "123_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "123_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827742"
gz1="$(_compress_if_exists 'SRR9827742_1' || true)"
gz2="$(_compress_if_exists 'SRR9827742_2' || true)"
gzs="$(_compress_if_exists 'SRR9827742' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "123_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "123_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827743"
gz1="$(_compress_if_exists 'SRR9827743_1' || true)"
gz2="$(_compress_if_exists 'SRR9827743_2' || true)"
gzs="$(_compress_if_exists 'SRR9827743' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "128_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "128_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827744"
gz1="$(_compress_if_exists 'SRR9827744_1' || true)"
gz2="$(_compress_if_exists 'SRR9827744_2' || true)"
gzs="$(_compress_if_exists 'SRR9827744' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "128_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "128_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827745"
gz1="$(_compress_if_exists 'SRR9827745_1' || true)"
gz2="$(_compress_if_exists 'SRR9827745_2' || true)"
gzs="$(_compress_if_exists 'SRR9827745' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "128_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "128_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827746"
gz1="$(_compress_if_exists 'SRR9827746_1' || true)"
gz2="$(_compress_if_exists 'SRR9827746_2' || true)"
gzs="$(_compress_if_exists 'SRR9827746' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "128_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "128_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827747"
gz1="$(_compress_if_exists 'SRR9827747_1' || true)"
gz2="$(_compress_if_exists 'SRR9827747_2' || true)"
gzs="$(_compress_if_exists 'SRR9827747' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "129_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "129_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827748"
gz1="$(_compress_if_exists 'SRR9827748_1' || true)"
gz2="$(_compress_if_exists 'SRR9827748_2' || true)"
gzs="$(_compress_if_exists 'SRR9827748' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "129_S3_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "129_S3_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827749"
gz1="$(_compress_if_exists 'SRR9827749_1' || true)"
gz2="$(_compress_if_exists 'SRR9827749_2' || true)"
gzs="$(_compress_if_exists 'SRR9827749' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "129_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "129_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827750"
gz1="$(_compress_if_exists 'SRR9827750_1' || true)"
gz2="$(_compress_if_exists 'SRR9827750_2' || true)"
gzs="$(_compress_if_exists 'SRR9827750' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "129_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "129_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827751"
gz1="$(_compress_if_exists 'SRR9827751_1' || true)"
gz2="$(_compress_if_exists 'SRR9827751_2' || true)"
gzs="$(_compress_if_exists 'SRR9827751' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "135_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "135_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827752"
gz1="$(_compress_if_exists 'SRR9827752_1' || true)"
gz2="$(_compress_if_exists 'SRR9827752_2' || true)"
gzs="$(_compress_if_exists 'SRR9827752' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "135_S2_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "135_S2_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827753"
gz1="$(_compress_if_exists 'SRR9827753_1' || true)"
gz2="$(_compress_if_exists 'SRR9827753_2' || true)"
gzs="$(_compress_if_exists 'SRR9827753' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "135_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "135_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827754"
gz1="$(_compress_if_exists 'SRR9827754_1' || true)"
gz2="$(_compress_if_exists 'SRR9827754_2' || true)"
gzs="$(_compress_if_exists 'SRR9827754' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "135_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "135_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827755"
gz1="$(_compress_if_exists 'SRR9827755_1' || true)"
gz2="$(_compress_if_exists 'SRR9827755_2' || true)"
gzs="$(_compress_if_exists 'SRR9827755' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "138_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "138_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR9827756"
gz1="$(_compress_if_exists 'SRR9827756_1' || true)"
gz2="$(_compress_if_exists 'SRR9827756_2' || true)"
gzs="$(_compress_if_exists 'SRR9827756' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "138_S5_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "138_S5_L002_R2_001.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565234/SRR12565234"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565235/SRR12565235"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565236/SRR12565236"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565237/SRR12565237"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565238/SRR12565238"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565239/SRR12565239"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565240/SRR12565240"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565241/SRR12565241"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565242/SRR12565242"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565243/SRR12565243"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565244/SRR12565244"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565245/SRR12565245"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565246/SRR12565246"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565247/SRR12565247"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565248/SRR12565248"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565249/SRR12565249"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565250/SRR12565250"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565251/SRR12565251"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565252/SRR12565252"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565253/SRR12565253"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565254/SRR12565254"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565255/SRR12565255"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565256/SRR12565256"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565257/SRR12565257"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565258/SRR12565258"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565259/SRR12565259"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565260/SRR12565260"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565261/SRR12565261"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565262/SRR12565262"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565263/SRR12565263"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565264/SRR12565264"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565265/SRR12565265"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565266/SRR12565266"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827631/SRR9827631"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827632/SRR9827632"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827633/SRR9827633"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827634/SRR9827634"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827635/SRR9827635"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827636/SRR9827636"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827637/SRR9827637"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827638/SRR9827638"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827639/SRR9827639"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827640/SRR9827640"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827641/SRR9827641"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827642/SRR9827642"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827643/SRR9827643"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827644/SRR9827644"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827645/SRR9827645"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827646/SRR9827646"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827647/SRR9827647"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827648.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827649/SRR9827649"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827650/SRR9827650"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827651.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827652/SRR9827652"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827653/SRR9827653"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827654/SRR9827654"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827655/SRR9827655"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827656/SRR9827656"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827657/SRR9827657"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827658/SRR9827658"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827659/SRR9827659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827660/SRR9827660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827661/SRR9827661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827662/SRR9827662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827663/SRR9827663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827664/SRR9827664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827665/SRR9827665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827666/SRR9827666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827667/SRR9827667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827668/SRR9827668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827669/SRR9827669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827670/SRR9827670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827671/SRR9827671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827672/SRR9827672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827673/SRR9827673"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827674.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827675.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827676/SRR9827676"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos9/sra-pub-zq-922/SRR009/827/SRR9827677.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos9/sra-pub-zq-922/SRR009/827/SRR9827678.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827679/SRR9827679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827680/SRR9827680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827681/SRR9827681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827682/SRR9827682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827683/SRR9827683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827684/SRR9827684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827685/SRR9827685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827686/SRR9827686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827687/SRR9827687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827688/SRR9827688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827689/SRR9827689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827690/SRR9827690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827691/SRR9827691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827692/SRR9827692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827693/SRR9827693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827694/SRR9827694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827695/SRR9827695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827696/SRR9827696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827697/SRR9827697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827698/SRR9827698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827699/SRR9827699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827700/SRR9827700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827701/SRR9827701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827702/SRR9827702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827703/SRR9827703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827704/SRR9827704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827705/SRR9827705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827706/SRR9827706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827707/SRR9827707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827708/SRR9827708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827709/SRR9827709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827710/SRR9827710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827711/SRR9827711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827712/SRR9827712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827713/SRR9827713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827714/SRR9827714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827715/SRR9827715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827716/SRR9827716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827717/SRR9827717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827718/SRR9827718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827719/SRR9827719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827720/SRR9827720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827721/SRR9827721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827722/SRR9827722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827723/SRR9827723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827724/SRR9827724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827725/SRR9827725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827726/SRR9827726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827727/SRR9827727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827728/SRR9827728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827729/SRR9827729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827730/SRR9827730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827731/SRR9827731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827732/SRR9827732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827733/SRR9827733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827734/SRR9827734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827735/SRR9827735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827736/SRR9827736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827737/SRR9827737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827738/SRR9827738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827739/SRR9827739"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827740.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827741.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827742/SRR9827742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827743/SRR9827743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827744/SRR9827744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827745/SRR9827745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827746/SRR9827746"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827747.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827748/SRR9827748"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827749.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827750.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827751/SRR9827751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827752/SRR9827752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827753/SRR9827753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827754/SRR9827754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827755/SRR9827755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827756/SRR9827756"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827735/SRR9827735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827736/SRR9827736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827737/SRR9827737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827738/SRR9827738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827739/SRR9827739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565238/SRR12565238"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565239/SRR12565239"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565240/SRR12565240"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565241/SRR12565241"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565242/SRR12565242"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827743/SRR9827743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827744/SRR9827744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827745/SRR9827745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827746/SRR9827746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827748/SRR9827748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565243/SRR12565243"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565244/SRR12565244"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565245/SRR12565245"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565246/SRR12565246"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827751/SRR9827751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827752/SRR9827752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827753/SRR9827753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827754/SRR9827754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827755/SRR9827755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827756/SRR9827756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827655/SRR9827655"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827656/SRR9827656"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565247/SRR12565247"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565248/SRR12565248"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565249/SRR12565249"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565250/SRR12565250"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827657/SRR9827657"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827658/SRR9827658"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827659/SRR9827659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827660/SRR9827660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827661/SRR9827661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827662/SRR9827662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827663/SRR9827663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827664/SRR9827664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565251/SRR12565251"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565252/SRR12565252"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565253/SRR12565253"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565254/SRR12565254"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565255/SRR12565255"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565256/SRR12565256"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565257/SRR12565257"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565258/SRR12565258"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827697/SRR9827697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827698/SRR9827698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827699/SRR9827699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827700/SRR9827700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827701/SRR9827701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827702/SRR9827702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827703/SRR9827703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827704/SRR9827704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827705/SRR9827705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827706/SRR9827706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827707/SRR9827707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827708/SRR9827708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827709/SRR9827709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827710/SRR9827710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827711/SRR9827711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827712/SRR9827712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827713/SRR9827713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827714/SRR9827714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827715/SRR9827715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827716/SRR9827716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827717/SRR9827717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827718/SRR9827718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827719/SRR9827719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827720/SRR9827720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827721/SRR9827721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827722/SRR9827722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827723/SRR9827723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827724/SRR9827724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827725/SRR9827725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827726/SRR9827726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565234/SRR12565234"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565235/SRR12565235"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565236/SRR12565236"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565237/SRR12565237"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827647/SRR9827647"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827727/SRR9827727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827728/SRR9827728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827729/SRR9827729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827730/SRR9827730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827731/SRR9827731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827732/SRR9827732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827733/SRR9827733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827734/SRR9827734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827649/SRR9827649"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827650/SRR9827650"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827651.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827652/SRR9827652"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827653/SRR9827653"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827654/SRR9827654"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827631/SRR9827631"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827639/SRR9827639"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827640/SRR9827640"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827641/SRR9827641"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827642/SRR9827642"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827643/SRR9827643"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827644/SRR9827644"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827645/SRR9827645"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827646/SRR9827646"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827632/SRR9827632"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827633/SRR9827633"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827634/SRR9827634"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827635/SRR9827635"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827636/SRR9827636"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827637/SRR9827637"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827638/SRR9827638"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565259/SRR12565259"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565260/SRR12565260"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565261/SRR12565261"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565262/SRR12565262"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565263/SRR12565263"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565264/SRR12565264"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565265/SRR12565265"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR12565266/SRR12565266"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827665/SRR9827665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827666/SRR9827666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827667/SRR9827667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827668/SRR9827668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827673/SRR9827673"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827675.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827676/SRR9827676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827681/SRR9827681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827682/SRR9827682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827683/SRR9827683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827684/SRR9827684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827689/SRR9827689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827690/SRR9827690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827691/SRR9827691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827692/SRR9827692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827669/SRR9827669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827670/SRR9827670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827671/SRR9827671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827672/SRR9827672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827679/SRR9827679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827685/SRR9827685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827686/SRR9827686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827687/SRR9827687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827688/SRR9827688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827693/SRR9827693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827694/SRR9827694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827695/SRR9827695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827696/SRR9827696"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827648.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827674.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos9/sra-pub-zq-922/SRR009/827/SRR9827677.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos9/sra-pub-zq-922/SRR009/827/SRR9827678.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827680/SRR9827680"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827740.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827741.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR9827742/SRR9827742"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827747.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-16/SRR009/827/SRR9827749.sralite.1"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-14/SRR009/827/SRR9827750.sralite.1"

echo "Download complete. Files saved to $OUTDIR"