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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_1_ECR_counts.csv.gz" -O "GSE176012_part_1_ECR_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_1_editingsites_G_counts.csv.gz" -O "GSE176012_part_1_editingsites_G_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_1_editingsites_total_counts.csv.gz" -O "GSE176012_part_1_editingsites_total_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_1_genes_counts.csv.gz" -O "GSE176012_part_1_genes_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_1_intron_counts.csv.gz" -O "GSE176012_part_1_intron_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_2_ECR_counts.csv.gz" -O "GSE176012_part_2_ECR_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_2_editingsites_G_counts.csv.gz" -O "GSE176012_part_2_editingsites_G_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_2_editingsites_total_counts.csv.gz" -O "GSE176012_part_2_editingsites_total_counts.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE176nnn/GSE176012/suppl/GSE176012_part_2_genes_counts.csv.gz" -O "GSE176012_part_2_genes_counts.csv.gz"

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

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

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

fasterq-dump --split-files "SRR14711270"
gz1="$(_compress_if_exists 'SRR14711270_1' || true)"
gz2="$(_compress_if_exists 'SRR14711270_2' || true)"
gzs="$(_compress_if_exists 'SRR14711270' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114309_SAM24343694_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114309_SAM24343694_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711271"
gz1="$(_compress_if_exists 'SRR14711271_1' || true)"
gz2="$(_compress_if_exists 'SRR14711271_2' || true)"
gzs="$(_compress_if_exists 'SRR14711271' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114310_SAM24343695_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114310_SAM24343695_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711272"
gz1="$(_compress_if_exists 'SRR14711272_1' || true)"
gz2="$(_compress_if_exists 'SRR14711272_2' || true)"
gzs="$(_compress_if_exists 'SRR14711272' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114311_SAM24343696_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114311_SAM24343696_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711273"
gz1="$(_compress_if_exists 'SRR14711273_1' || true)"
gz2="$(_compress_if_exists 'SRR14711273_2' || true)"
gzs="$(_compress_if_exists 'SRR14711273' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114312_SAM24343697_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114312_SAM24343697_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711274"
gz1="$(_compress_if_exists 'SRR14711274_1' || true)"
gz2="$(_compress_if_exists 'SRR14711274_2' || true)"
gzs="$(_compress_if_exists 'SRR14711274' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114313_SAM24343698_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114313_SAM24343698_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711275"
gz1="$(_compress_if_exists 'SRR14711275_1' || true)"
gz2="$(_compress_if_exists 'SRR14711275_2' || true)"
gzs="$(_compress_if_exists 'SRR14711275' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114323_SAM24343708_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114323_SAM24343708_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711276"
gz1="$(_compress_if_exists 'SRR14711276_1' || true)"
gz2="$(_compress_if_exists 'SRR14711276_2' || true)"
gzs="$(_compress_if_exists 'SRR14711276' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114324_SAM24343709_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114324_SAM24343709_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711277"
gz1="$(_compress_if_exists 'SRR14711277_1' || true)"
gz2="$(_compress_if_exists 'SRR14711277_2' || true)"
gzs="$(_compress_if_exists 'SRR14711277' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114325_SAM24343710_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114325_SAM24343710_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711278"
gz1="$(_compress_if_exists 'SRR14711278_1' || true)"
gz2="$(_compress_if_exists 'SRR14711278_2' || true)"
gzs="$(_compress_if_exists 'SRR14711278' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114326_SAM24343711_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114326_SAM24343711_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711279"
gz1="$(_compress_if_exists 'SRR14711279_1' || true)"
gz2="$(_compress_if_exists 'SRR14711279_2' || true)"
gzs="$(_compress_if_exists 'SRR14711279' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114327_SAM24343712_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114327_SAM24343712_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711280"
gz1="$(_compress_if_exists 'SRR14711280_1' || true)"
gz2="$(_compress_if_exists 'SRR14711280_2' || true)"
gzs="$(_compress_if_exists 'SRR14711280' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114328_SAM24343713_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114328_SAM24343713_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711281"
gz1="$(_compress_if_exists 'SRR14711281_1' || true)"
gz2="$(_compress_if_exists 'SRR14711281_2' || true)"
gzs="$(_compress_if_exists 'SRR14711281' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114329_SAM24343714_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114329_SAM24343714_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711282"
gz1="$(_compress_if_exists 'SRR14711282_1' || true)"
gz2="$(_compress_if_exists 'SRR14711282_2' || true)"
gzs="$(_compress_if_exists 'SRR14711282' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114330_SAM24343715_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114330_SAM24343715_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711283"
gz1="$(_compress_if_exists 'SRR14711283_1' || true)"
gz2="$(_compress_if_exists 'SRR14711283_2' || true)"
gzs="$(_compress_if_exists 'SRR14711283' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114331_SAM24343716_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114331_SAM24343716_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711284"
gz1="$(_compress_if_exists 'SRR14711284_1' || true)"
gz2="$(_compress_if_exists 'SRR14711284_2' || true)"
gzs="$(_compress_if_exists 'SRR14711284' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114332_SAM24343717_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114332_SAM24343717_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711285"
gz1="$(_compress_if_exists 'SRR14711285_1' || true)"
gz2="$(_compress_if_exists 'SRR14711285_2' || true)"
gzs="$(_compress_if_exists 'SRR14711285' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114333_SAM24343718_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114333_SAM24343718_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711286"
gz1="$(_compress_if_exists 'SRR14711286_1' || true)"
gz2="$(_compress_if_exists 'SRR14711286_2' || true)"
gzs="$(_compress_if_exists 'SRR14711286' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114334_SAM24343719_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114334_SAM24343719_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711287"
gz1="$(_compress_if_exists 'SRR14711287_1' || true)"
gz2="$(_compress_if_exists 'SRR14711287_2' || true)"
gzs="$(_compress_if_exists 'SRR14711287' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114335_SAM24343720_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114335_SAM24343720_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711288"
gz1="$(_compress_if_exists 'SRR14711288_1' || true)"
gz2="$(_compress_if_exists 'SRR14711288_2' || true)"
gzs="$(_compress_if_exists 'SRR14711288' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114336_SAM24343721_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114336_SAM24343721_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711289"
gz1="$(_compress_if_exists 'SRR14711289_1' || true)"
gz2="$(_compress_if_exists 'SRR14711289_2' || true)"
gzs="$(_compress_if_exists 'SRR14711289' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114337_SAM24343722_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114337_SAM24343722_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711290"
gz1="$(_compress_if_exists 'SRR14711290_1' || true)"
gz2="$(_compress_if_exists 'SRR14711290_2' || true)"
gzs="$(_compress_if_exists 'SRR14711290' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114338_SAM24343723_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114338_SAM24343723_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711291"
gz1="$(_compress_if_exists 'SRR14711291_1' || true)"
gz2="$(_compress_if_exists 'SRR14711291_2' || true)"
gzs="$(_compress_if_exists 'SRR14711291' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114339_SAM24343724_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114339_SAM24343724_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711292"
gz1="$(_compress_if_exists 'SRR14711292_1' || true)"
gz2="$(_compress_if_exists 'SRR14711292_2' || true)"
gzs="$(_compress_if_exists 'SRR14711292' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114340_SAM24343725_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114340_SAM24343725_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711293"
gz1="$(_compress_if_exists 'SRR14711293_1' || true)"
gz2="$(_compress_if_exists 'SRR14711293_2' || true)"
gzs="$(_compress_if_exists 'SRR14711293' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114359_SAM24343744_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114359_SAM24343744_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711294"
gz1="$(_compress_if_exists 'SRR14711294_1' || true)"
gz2="$(_compress_if_exists 'SRR14711294_2' || true)"
gzs="$(_compress_if_exists 'SRR14711294' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114360_SAM24343745_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114360_SAM24343745_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711295"
gz1="$(_compress_if_exists 'SRR14711295_1' || true)"
gz2="$(_compress_if_exists 'SRR14711295_2' || true)"
gzs="$(_compress_if_exists 'SRR14711295' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114361_SAM24343746_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114361_SAM24343746_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711296"
gz1="$(_compress_if_exists 'SRR14711296_1' || true)"
gz2="$(_compress_if_exists 'SRR14711296_2' || true)"
gzs="$(_compress_if_exists 'SRR14711296' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114362_SAM24343747_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114362_SAM24343747_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711297"
gz1="$(_compress_if_exists 'SRR14711297_1' || true)"
gz2="$(_compress_if_exists 'SRR14711297_2' || true)"
gzs="$(_compress_if_exists 'SRR14711297' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114363_SAM24343748_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114363_SAM24343748_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711298"
gz1="$(_compress_if_exists 'SRR14711298_1' || true)"
gz2="$(_compress_if_exists 'SRR14711298_2' || true)"
gzs="$(_compress_if_exists 'SRR14711298' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114364_SAM24343749_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114364_SAM24343749_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711299"
gz1="$(_compress_if_exists 'SRR14711299_1' || true)"
gz2="$(_compress_if_exists 'SRR14711299_2' || true)"
gzs="$(_compress_if_exists 'SRR14711299' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114365_SAM24343750_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114365_SAM24343750_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711300"
gz1="$(_compress_if_exists 'SRR14711300_1' || true)"
gz2="$(_compress_if_exists 'SRR14711300_2' || true)"
gzs="$(_compress_if_exists 'SRR14711300' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114366_SAM24343751_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114366_SAM24343751_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711301"
gz1="$(_compress_if_exists 'SRR14711301_1' || true)"
gz2="$(_compress_if_exists 'SRR14711301_2' || true)"
gzs="$(_compress_if_exists 'SRR14711301' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114367_SAM24343752_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114367_SAM24343752_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711302"
gz1="$(_compress_if_exists 'SRR14711302_1' || true)"
gz2="$(_compress_if_exists 'SRR14711302_2' || true)"
gzs="$(_compress_if_exists 'SRR14711302' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114368_SAM24343753_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114368_SAM24343753_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711303"
gz1="$(_compress_if_exists 'SRR14711303_1' || true)"
gz2="$(_compress_if_exists 'SRR14711303_2' || true)"
gzs="$(_compress_if_exists 'SRR14711303' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114369_SAM24343754_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114369_SAM24343754_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711304"
gz1="$(_compress_if_exists 'SRR14711304_1' || true)"
gz2="$(_compress_if_exists 'SRR14711304_2' || true)"
gzs="$(_compress_if_exists 'SRR14711304' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114370_SAM24343755_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114370_SAM24343755_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711305"
gz1="$(_compress_if_exists 'SRR14711305_1' || true)"
gz2="$(_compress_if_exists 'SRR14711305_2' || true)"
gzs="$(_compress_if_exists 'SRR14711305' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420086_SAM24363862_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420086_SAM24363862_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711306"
gz1="$(_compress_if_exists 'SRR14711306_1' || true)"
gz2="$(_compress_if_exists 'SRR14711306_2' || true)"
gzs="$(_compress_if_exists 'SRR14711306' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420087_SAM24363863_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420087_SAM24363863_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711307"
gz1="$(_compress_if_exists 'SRR14711307_1' || true)"
gz2="$(_compress_if_exists 'SRR14711307_2' || true)"
gzs="$(_compress_if_exists 'SRR14711307' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420088_SAM24363864_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420088_SAM24363864_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711308"
gz1="$(_compress_if_exists 'SRR14711308_1' || true)"
gz2="$(_compress_if_exists 'SRR14711308_2' || true)"
gzs="$(_compress_if_exists 'SRR14711308' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420089_SAM24363865_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420089_SAM24363865_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711309"
gz1="$(_compress_if_exists 'SRR14711309_1' || true)"
gz2="$(_compress_if_exists 'SRR14711309_2' || true)"
gzs="$(_compress_if_exists 'SRR14711309' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420090_SAM24363866_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420090_SAM24363866_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711310"
gz1="$(_compress_if_exists 'SRR14711310_1' || true)"
gz2="$(_compress_if_exists 'SRR14711310_2' || true)"
gzs="$(_compress_if_exists 'SRR14711310' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420091_SAM24363867_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420091_SAM24363867_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711311"
gz1="$(_compress_if_exists 'SRR14711311_1' || true)"
gz2="$(_compress_if_exists 'SRR14711311_2' || true)"
gzs="$(_compress_if_exists 'SRR14711311' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420092_SAM24363868_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420092_SAM24363868_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711312"
gz1="$(_compress_if_exists 'SRR14711312_1' || true)"
gz2="$(_compress_if_exists 'SRR14711312_2' || true)"
gzs="$(_compress_if_exists 'SRR14711312' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420093_SAM24363869_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420093_SAM24363869_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711313"
gz1="$(_compress_if_exists 'SRR14711313_1' || true)"
gz2="$(_compress_if_exists 'SRR14711313_2' || true)"
gzs="$(_compress_if_exists 'SRR14711313' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420094_SAM24363870_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420094_SAM24363870_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711314"
gz1="$(_compress_if_exists 'SRR14711314_1' || true)"
gz2="$(_compress_if_exists 'SRR14711314_2' || true)"
gzs="$(_compress_if_exists 'SRR14711314' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420095_SAM24363871_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420095_SAM24363871_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711315"
gz1="$(_compress_if_exists 'SRR14711315_1' || true)"
gz2="$(_compress_if_exists 'SRR14711315_2' || true)"
gzs="$(_compress_if_exists 'SRR14711315' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420096_SAM24363872_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420096_SAM24363872_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711316"
gz1="$(_compress_if_exists 'SRR14711316_1' || true)"
gz2="$(_compress_if_exists 'SRR14711316_2' || true)"
gzs="$(_compress_if_exists 'SRR14711316' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420097_SAM24363873_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420097_SAM24363873_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711317"
gz1="$(_compress_if_exists 'SRR14711317_1' || true)"
gz2="$(_compress_if_exists 'SRR14711317_2' || true)"
gzs="$(_compress_if_exists 'SRR14711317' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420098_SAM24363874_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420098_SAM24363874_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711318"
gz1="$(_compress_if_exists 'SRR14711318_1' || true)"
gz2="$(_compress_if_exists 'SRR14711318_2' || true)"
gzs="$(_compress_if_exists 'SRR14711318' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420099_SAM24363875_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420099_SAM24363875_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711319"
gz1="$(_compress_if_exists 'SRR14711319_1' || true)"
gz2="$(_compress_if_exists 'SRR14711319_2' || true)"
gzs="$(_compress_if_exists 'SRR14711319' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420100_SAM24363876_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420100_SAM24363876_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711320"
gz1="$(_compress_if_exists 'SRR14711320_1' || true)"
gz2="$(_compress_if_exists 'SRR14711320_2' || true)"
gzs="$(_compress_if_exists 'SRR14711320' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420101_SAM24363877_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420101_SAM24363877_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711321"
gz1="$(_compress_if_exists 'SRR14711321_1' || true)"
gz2="$(_compress_if_exists 'SRR14711321_2' || true)"
gzs="$(_compress_if_exists 'SRR14711321' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420102_SAM24363878_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420102_SAM24363878_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711322"
gz1="$(_compress_if_exists 'SRR14711322_1' || true)"
gz2="$(_compress_if_exists 'SRR14711322_2' || true)"
gzs="$(_compress_if_exists 'SRR14711322' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB5420103_SAM24363879_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB5420103_SAM24363879_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711323"
gz1="$(_compress_if_exists 'SRR14711323_1' || true)"
gz2="$(_compress_if_exists 'SRR14711323_2' || true)"
gzs="$(_compress_if_exists 'SRR14711323' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114296_SAM24343681_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114296_SAM24343681_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711324"
gz1="$(_compress_if_exists 'SRR14711324_1' || true)"
gz2="$(_compress_if_exists 'SRR14711324_2' || true)"
gzs="$(_compress_if_exists 'SRR14711324' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114297_SAM24343682_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114297_SAM24343682_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711325"
gz1="$(_compress_if_exists 'SRR14711325_1' || true)"
gz2="$(_compress_if_exists 'SRR14711325_2' || true)"
gzs="$(_compress_if_exists 'SRR14711325' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114298_SAM24343683_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114298_SAM24343683_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711326"
gz1="$(_compress_if_exists 'SRR14711326_1' || true)"
gz2="$(_compress_if_exists 'SRR14711326_2' || true)"
gzs="$(_compress_if_exists 'SRR14711326' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114299_SAM24343684_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114299_SAM24343684_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711327"
gz1="$(_compress_if_exists 'SRR14711327_1' || true)"
gz2="$(_compress_if_exists 'SRR14711327_2' || true)"
gzs="$(_compress_if_exists 'SRR14711327' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114300_SAM24343685_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114300_SAM24343685_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711328"
gz1="$(_compress_if_exists 'SRR14711328_1' || true)"
gz2="$(_compress_if_exists 'SRR14711328_2' || true)"
gzs="$(_compress_if_exists 'SRR14711328' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114301_SAM24343686_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114301_SAM24343686_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711329"
gz1="$(_compress_if_exists 'SRR14711329_1' || true)"
gz2="$(_compress_if_exists 'SRR14711329_2' || true)"
gzs="$(_compress_if_exists 'SRR14711329' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114302_SAM24343687_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114302_SAM24343687_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711330"
gz1="$(_compress_if_exists 'SRR14711330_1' || true)"
gz2="$(_compress_if_exists 'SRR14711330_2' || true)"
gzs="$(_compress_if_exists 'SRR14711330' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114303_SAM24343688_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114303_SAM24343688_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711331"
gz1="$(_compress_if_exists 'SRR14711331_1' || true)"
gz2="$(_compress_if_exists 'SRR14711331_2' || true)"
gzs="$(_compress_if_exists 'SRR14711331' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114304_SAM24343689_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114304_SAM24343689_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711332"
gz1="$(_compress_if_exists 'SRR14711332_1' || true)"
gz2="$(_compress_if_exists 'SRR14711332_2' || true)"
gzs="$(_compress_if_exists 'SRR14711332' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114305_SAM24343690_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114305_SAM24343690_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711333"
gz1="$(_compress_if_exists 'SRR14711333_1' || true)"
gz2="$(_compress_if_exists 'SRR14711333_2' || true)"
gzs="$(_compress_if_exists 'SRR14711333' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114306_SAM24343691_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114306_SAM24343691_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR14711334"
gz1="$(_compress_if_exists 'SRR14711334_1' || true)"
gz2="$(_compress_if_exists 'SRR14711334_2' || true)"
gzs="$(_compress_if_exists 'SRR14711334' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIB1114307_SAM24343692_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIB1114307_SAM24343692_R2.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711269/SRR14711269"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711270/SRR14711270"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711271/SRR14711271"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711272/SRR14711272"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711273/SRR14711273"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711274/SRR14711274"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711275/SRR14711275"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711276/SRR14711276"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711277/SRR14711277"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711278/SRR14711278"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711279/SRR14711279"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711280/SRR14711280"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711281/SRR14711281"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711282/SRR14711282"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711283/SRR14711283"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711284/SRR14711284"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711285/SRR14711285"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711286/SRR14711286"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711287/SRR14711287"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711288/SRR14711288"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711289/SRR14711289"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711290/SRR14711290"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711291/SRR14711291"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711292/SRR14711292"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711293/SRR14711293"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711294/SRR14711294"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711295/SRR14711295"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711296/SRR14711296"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711297/SRR14711297"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711298/SRR14711298"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711299/SRR14711299"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711300/SRR14711300"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711301/SRR14711301"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711302/SRR14711302"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711303/SRR14711303"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711304/SRR14711304"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711305/SRR14711305"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711306/SRR14711306"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711307/SRR14711307"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711308/SRR14711308"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711309/SRR14711309"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711310/SRR14711310"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711311/SRR14711311"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711312/SRR14711312"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711313/SRR14711313"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711314/SRR14711314"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711315/SRR14711315"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711316/SRR14711316"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711317/SRR14711317"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711318/SRR14711318"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711319/SRR14711319"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711320/SRR14711320"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711321/SRR14711321"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711322/SRR14711322"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711323/SRR14711323"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711324/SRR14711324"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711325/SRR14711325"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711326/SRR14711326"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711327/SRR14711327"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711328/SRR14711328"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711329/SRR14711329"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711330/SRR14711330"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711331/SRR14711331"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711332/SRR14711332"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711333/SRR14711333"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711334/SRR14711334"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711323/SRR14711323"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711324/SRR14711324"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711325/SRR14711325"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711326/SRR14711326"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711327/SRR14711327"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711328/SRR14711328"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711329/SRR14711329"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711330/SRR14711330"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711331/SRR14711331"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711332/SRR14711332"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711333/SRR14711333"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711334/SRR14711334"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711269/SRR14711269"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711270/SRR14711270"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711271/SRR14711271"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711272/SRR14711272"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711273/SRR14711273"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711274/SRR14711274"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711275/SRR14711275"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711276/SRR14711276"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711277/SRR14711277"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711278/SRR14711278"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711279/SRR14711279"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711280/SRR14711280"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711281/SRR14711281"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711282/SRR14711282"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711283/SRR14711283"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711284/SRR14711284"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711285/SRR14711285"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711286/SRR14711286"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711287/SRR14711287"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711288/SRR14711288"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711289/SRR14711289"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711290/SRR14711290"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711291/SRR14711291"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711292/SRR14711292"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711293/SRR14711293"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711294/SRR14711294"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711295/SRR14711295"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711296/SRR14711296"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711297/SRR14711297"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711298/SRR14711298"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711299/SRR14711299"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711300/SRR14711300"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711301/SRR14711301"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711302/SRR14711302"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711303/SRR14711303"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711304/SRR14711304"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711305/SRR14711305"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711306/SRR14711306"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711307/SRR14711307"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711308/SRR14711308"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711309/SRR14711309"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711310/SRR14711310"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711311/SRR14711311"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711312/SRR14711312"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711313/SRR14711313"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711314/SRR14711314"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711315/SRR14711315"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711316/SRR14711316"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711317/SRR14711317"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711318/SRR14711318"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711319/SRR14711319"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711320/SRR14711320"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711321/SRR14711321"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR14711322/SRR14711322"

echo "Download complete. Files saved to $OUTDIR"