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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE71nnn/GSE71536/suppl/GSE71536_RAW.tar" -O "GSE71536_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 "SRR2134474"
gz1="$(_compress_if_exists 'SRR2134474_1' || true)"
gz2="$(_compress_if_exists 'SRR2134474_2' || true)"
gzs="$(_compress_if_exists 'SRR2134474' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample1_Expt1_input-U1-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134475"
gz1="$(_compress_if_exists 'SRR2134475_1' || true)"
gz2="$(_compress_if_exists 'SRR2134475_2' || true)"
gzs="$(_compress_if_exists 'SRR2134475' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample2_Expt1_input-U1-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134476"
gz1="$(_compress_if_exists 'SRR2134476_1' || true)"
gz2="$(_compress_if_exists 'SRR2134476_2' || true)"
gzs="$(_compress_if_exists 'SRR2134476' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample3_Expt1_input-U1-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134477"
gz1="$(_compress_if_exists 'SRR2134477_1' || true)"
gz2="$(_compress_if_exists 'SRR2134477_2' || true)"
gzs="$(_compress_if_exists 'SRR2134477' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample4_Expt1_input-U1-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134478"
gz1="$(_compress_if_exists 'SRR2134478_1' || true)"
gz2="$(_compress_if_exists 'SRR2134478_2' || true)"
gzs="$(_compress_if_exists 'SRR2134478' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample5_Expt1_elu-U1-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134479"
gz1="$(_compress_if_exists 'SRR2134479_1' || true)"
gz2="$(_compress_if_exists 'SRR2134479_2' || true)"
gzs="$(_compress_if_exists 'SRR2134479' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample6_Expt1_elu-U1-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134480"
gz1="$(_compress_if_exists 'SRR2134480_1' || true)"
gz2="$(_compress_if_exists 'SRR2134480_2' || true)"
gzs="$(_compress_if_exists 'SRR2134480' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample7_Expt1_input-U2-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134481"
gz1="$(_compress_if_exists 'SRR2134481_1' || true)"
gz2="$(_compress_if_exists 'SRR2134481_2' || true)"
gzs="$(_compress_if_exists 'SRR2134481' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample8_Expt1_input-U2-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134482"
gz1="$(_compress_if_exists 'SRR2134482_1' || true)"
gz2="$(_compress_if_exists 'SRR2134482_2' || true)"
gzs="$(_compress_if_exists 'SRR2134482' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample9_Expt1_input-U2-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134483"
gz1="$(_compress_if_exists 'SRR2134483_1' || true)"
gz2="$(_compress_if_exists 'SRR2134483_2' || true)"
gzs="$(_compress_if_exists 'SRR2134483' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample10_Expt1_input-U2-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134484"
gz1="$(_compress_if_exists 'SRR2134484_1' || true)"
gz2="$(_compress_if_exists 'SRR2134484_2' || true)"
gzs="$(_compress_if_exists 'SRR2134484' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample11_Expt1_elu-U2-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134485"
gz1="$(_compress_if_exists 'SRR2134485_1' || true)"
gz2="$(_compress_if_exists 'SRR2134485_2' || true)"
gzs="$(_compress_if_exists 'SRR2134485' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample12_Expt1_elu-U2-Deaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134486"
gz1="$(_compress_if_exists 'SRR2134486_1' || true)"
gz2="$(_compress_if_exists 'SRR2134486_2' || true)"
gzs="$(_compress_if_exists 'SRR2134486' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample13_Expt2_input-U1-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134487"
gz1="$(_compress_if_exists 'SRR2134487_1' || true)"
gz2="$(_compress_if_exists 'SRR2134487_2' || true)"
gzs="$(_compress_if_exists 'SRR2134487' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample14_Expt2_input-U1-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134488"
gz1="$(_compress_if_exists 'SRR2134488_1' || true)"
gz2="$(_compress_if_exists 'SRR2134488_2' || true)"
gzs="$(_compress_if_exists 'SRR2134488' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample15_Expt2_input-U1-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134489"
gz1="$(_compress_if_exists 'SRR2134489_1' || true)"
gz2="$(_compress_if_exists 'SRR2134489_2' || true)"
gzs="$(_compress_if_exists 'SRR2134489' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample16_Expt2_input-U1-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134490"
gz1="$(_compress_if_exists 'SRR2134490_1' || true)"
gz2="$(_compress_if_exists 'SRR2134490_2' || true)"
gzs="$(_compress_if_exists 'SRR2134490' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample17_Expt2_elu-U1-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134491"
gz1="$(_compress_if_exists 'SRR2134491_1' || true)"
gz2="$(_compress_if_exists 'SRR2134491_2' || true)"
gzs="$(_compress_if_exists 'SRR2134491' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample18_Expt2_elu-U1-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134492"
gz1="$(_compress_if_exists 'SRR2134492_1' || true)"
gz2="$(_compress_if_exists 'SRR2134492_2' || true)"
gzs="$(_compress_if_exists 'SRR2134492' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample19_Expt2_input-U2-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134493"
gz1="$(_compress_if_exists 'SRR2134493_1' || true)"
gz2="$(_compress_if_exists 'SRR2134493_2' || true)"
gzs="$(_compress_if_exists 'SRR2134493' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample20_Expt2_input-U2-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134494"
gz1="$(_compress_if_exists 'SRR2134494_1' || true)"
gz2="$(_compress_if_exists 'SRR2134494_2' || true)"
gzs="$(_compress_if_exists 'SRR2134494' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample21_Expt2_input-U2-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134495"
gz1="$(_compress_if_exists 'SRR2134495_1' || true)"
gz2="$(_compress_if_exists 'SRR2134495_2' || true)"
gzs="$(_compress_if_exists 'SRR2134495' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample22_Expt2_input-U2-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134496"
gz1="$(_compress_if_exists 'SRR2134496_1' || true)"
gz2="$(_compress_if_exists 'SRR2134496_2' || true)"
gzs="$(_compress_if_exists 'SRR2134496' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample23_Expt2_elu-U2-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134497"
gz1="$(_compress_if_exists 'SRR2134497_1' || true)"
gz2="$(_compress_if_exists 'SRR2134497_2' || true)"
gzs="$(_compress_if_exists 'SRR2134497' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample24_Expt2_elu-U2-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134498"
gz1="$(_compress_if_exists 'SRR2134498_1' || true)"
gz2="$(_compress_if_exists 'SRR2134498_2' || true)"
gzs="$(_compress_if_exists 'SRR2134498' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample25_Expt2_input-U4-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134499"
gz1="$(_compress_if_exists 'SRR2134499_1' || true)"
gz2="$(_compress_if_exists 'SRR2134499_2' || true)"
gzs="$(_compress_if_exists 'SRR2134499' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample26_Expt2_input-U4-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134500"
gz1="$(_compress_if_exists 'SRR2134500_1' || true)"
gz2="$(_compress_if_exists 'SRR2134500_2' || true)"
gzs="$(_compress_if_exists 'SRR2134500' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample27_Expt2_input-U4-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134501"
gz1="$(_compress_if_exists 'SRR2134501_1' || true)"
gz2="$(_compress_if_exists 'SRR2134501_2' || true)"
gzs="$(_compress_if_exists 'SRR2134501' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample28_Expt2_input-U4-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134502"
gz1="$(_compress_if_exists 'SRR2134502_1' || true)"
gz2="$(_compress_if_exists 'SRR2134502_2' || true)"
gzs="$(_compress_if_exists 'SRR2134502' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample29_Expt2_elu-U4-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134503"
gz1="$(_compress_if_exists 'SRR2134503_1' || true)"
gz2="$(_compress_if_exists 'SRR2134503_2' || true)"
gzs="$(_compress_if_exists 'SRR2134503' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample30_Expt2_elu-U4-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134504"
gz1="$(_compress_if_exists 'SRR2134504_1' || true)"
gz2="$(_compress_if_exists 'SRR2134504_2' || true)"
gzs="$(_compress_if_exists 'SRR2134504' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample31_Expt2_input-U5-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134505"
gz1="$(_compress_if_exists 'SRR2134505_1' || true)"
gz2="$(_compress_if_exists 'SRR2134505_2' || true)"
gzs="$(_compress_if_exists 'SRR2134505' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample32_Expt2_input-U5-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134506"
gz1="$(_compress_if_exists 'SRR2134506_1' || true)"
gz2="$(_compress_if_exists 'SRR2134506_2' || true)"
gzs="$(_compress_if_exists 'SRR2134506' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample33_Expt2_elu-U5-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134507"
gz1="$(_compress_if_exists 'SRR2134507_1' || true)"
gz2="$(_compress_if_exists 'SRR2134507_2' || true)"
gzs="$(_compress_if_exists 'SRR2134507' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample34_Expt2_elu-U5-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134508"
gz1="$(_compress_if_exists 'SRR2134508_1' || true)"
gz2="$(_compress_if_exists 'SRR2134508_2' || true)"
gzs="$(_compress_if_exists 'SRR2134508' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample35_Expt2_input-U6-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134509"
gz1="$(_compress_if_exists 'SRR2134509_1' || true)"
gz2="$(_compress_if_exists 'SRR2134509_2' || true)"
gzs="$(_compress_if_exists 'SRR2134509' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample36_Expt2_input-U6-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134510"
gz1="$(_compress_if_exists 'SRR2134510_1' || true)"
gz2="$(_compress_if_exists 'SRR2134510_2' || true)"
gzs="$(_compress_if_exists 'SRR2134510' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample37_Expt2_input-U6-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134511"
gz1="$(_compress_if_exists 'SRR2134511_1' || true)"
gz2="$(_compress_if_exists 'SRR2134511_2' || true)"
gzs="$(_compress_if_exists 'SRR2134511' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample38_Expt2_input-U6-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134512"
gz1="$(_compress_if_exists 'SRR2134512_1' || true)"
gz2="$(_compress_if_exists 'SRR2134512_2' || true)"
gzs="$(_compress_if_exists 'SRR2134512' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample39_Expt2_elu-U6-Wtaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134513"
gz1="$(_compress_if_exists 'SRR2134513_1' || true)"
gz2="$(_compress_if_exists 'SRR2134513_2' || true)"
gzs="$(_compress_if_exists 'SRR2134513' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample40_Expt2_elu-U6-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134514"
gz1="$(_compress_if_exists 'SRR2134514_1' || true)"
gz2="$(_compress_if_exists 'SRR2134514_2' || true)"
gzs="$(_compress_if_exists 'SRR2134514' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample41_Expt3_input-U1-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134515"
gz1="$(_compress_if_exists 'SRR2134515_1' || true)"
gz2="$(_compress_if_exists 'SRR2134515_2' || true)"
gzs="$(_compress_if_exists 'SRR2134515' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample42_Expt3_input-U1-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134516"
gz1="$(_compress_if_exists 'SRR2134516_1' || true)"
gz2="$(_compress_if_exists 'SRR2134516_2' || true)"
gzs="$(_compress_if_exists 'SRR2134516' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample43_Expt3_input-U1-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134517"
gz1="$(_compress_if_exists 'SRR2134517_1' || true)"
gz2="$(_compress_if_exists 'SRR2134517_2' || true)"
gzs="$(_compress_if_exists 'SRR2134517' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample44_Expt3_input-U1-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134518"
gz1="$(_compress_if_exists 'SRR2134518_1' || true)"
gz2="$(_compress_if_exists 'SRR2134518_2' || true)"
gzs="$(_compress_if_exists 'SRR2134518' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample45_Expt3_elu-U1-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134519"
gz1="$(_compress_if_exists 'SRR2134519_1' || true)"
gz2="$(_compress_if_exists 'SRR2134519_2' || true)"
gzs="$(_compress_if_exists 'SRR2134519' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample46_Expt3_elu-U1-Deaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134520"
gz1="$(_compress_if_exists 'SRR2134520_1' || true)"
gz2="$(_compress_if_exists 'SRR2134520_2' || true)"
gzs="$(_compress_if_exists 'SRR2134520' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample47_Expt3_input-U2-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134521"
gz1="$(_compress_if_exists 'SRR2134521_1' || true)"
gz2="$(_compress_if_exists 'SRR2134521_2' || true)"
gzs="$(_compress_if_exists 'SRR2134521' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample48_Expt3_input-U2-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134522"
gz1="$(_compress_if_exists 'SRR2134522_1' || true)"
gz2="$(_compress_if_exists 'SRR2134522_2' || true)"
gzs="$(_compress_if_exists 'SRR2134522' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample49_Expt3_input-U2-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134523"
gz1="$(_compress_if_exists 'SRR2134523_1' || true)"
gz2="$(_compress_if_exists 'SRR2134523_2' || true)"
gzs="$(_compress_if_exists 'SRR2134523' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample50_Expt3_input-U2-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134524"
gz1="$(_compress_if_exists 'SRR2134524_1' || true)"
gz2="$(_compress_if_exists 'SRR2134524_2' || true)"
gzs="$(_compress_if_exists 'SRR2134524' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample51_Expt3_elu-U2-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134525"
gz1="$(_compress_if_exists 'SRR2134525_1' || true)"
gz2="$(_compress_if_exists 'SRR2134525_2' || true)"
gzs="$(_compress_if_exists 'SRR2134525' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample52_Expt3_elu-U2-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134526"
gz1="$(_compress_if_exists 'SRR2134526_1' || true)"
gz2="$(_compress_if_exists 'SRR2134526_2' || true)"
gzs="$(_compress_if_exists 'SRR2134526' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample53_Expt3_input-U4-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134527"
gz1="$(_compress_if_exists 'SRR2134527_1' || true)"
gz2="$(_compress_if_exists 'SRR2134527_2' || true)"
gzs="$(_compress_if_exists 'SRR2134527' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample54_Expt3_input-U4-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134528"
gz1="$(_compress_if_exists 'SRR2134528_1' || true)"
gz2="$(_compress_if_exists 'SRR2134528_2' || true)"
gzs="$(_compress_if_exists 'SRR2134528' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample55_Expt3_input-U4-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134529"
gz1="$(_compress_if_exists 'SRR2134529_1' || true)"
gz2="$(_compress_if_exists 'SRR2134529_2' || true)"
gzs="$(_compress_if_exists 'SRR2134529' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample56_Expt3_input-U4-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134530"
gz1="$(_compress_if_exists 'SRR2134530_1' || true)"
gz2="$(_compress_if_exists 'SRR2134530_2' || true)"
gzs="$(_compress_if_exists 'SRR2134530' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample57_Expt3_elu-U4-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134531"
gz1="$(_compress_if_exists 'SRR2134531_1' || true)"
gz2="$(_compress_if_exists 'SRR2134531_2' || true)"
gzs="$(_compress_if_exists 'SRR2134531' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample58_Expt3_elu-U4-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134532"
gz1="$(_compress_if_exists 'SRR2134532_1' || true)"
gz2="$(_compress_if_exists 'SRR2134532_2' || true)"
gzs="$(_compress_if_exists 'SRR2134532' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample59_Expt3_input-U5-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134533"
gz1="$(_compress_if_exists 'SRR2134533_1' || true)"
gz2="$(_compress_if_exists 'SRR2134533_2' || true)"
gzs="$(_compress_if_exists 'SRR2134533' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample60_Expt3_input-U5-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134534"
gz1="$(_compress_if_exists 'SRR2134534_1' || true)"
gz2="$(_compress_if_exists 'SRR2134534_2' || true)"
gzs="$(_compress_if_exists 'SRR2134534' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample61_Expt3_elu-U5-WTaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134535"
gz1="$(_compress_if_exists 'SRR2134535_1' || true)"
gz2="$(_compress_if_exists 'SRR2134535_2' || true)"
gzs="$(_compress_if_exists 'SRR2134535' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample62_Expt3_elu-U5-DEaddback.fastq.gz"
fi

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

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

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

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

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

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

fasterq-dump --split-files "SRR2134542"
gz1="$(_compress_if_exists 'SRR2134542_1' || true)"
gz2="$(_compress_if_exists 'SRR2134542_2' || true)"
gzs="$(_compress_if_exists 'SRR2134542' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample69_Expt4_input-U5-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134543"
gz1="$(_compress_if_exists 'SRR2134543_1' || true)"
gz2="$(_compress_if_exists 'SRR2134543_2' || true)"
gzs="$(_compress_if_exists 'SRR2134543' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample70_Expt4_input-U5-FLAGonly-Caf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134544"
gz1="$(_compress_if_exists 'SRR2134544_1' || true)"
gz2="$(_compress_if_exists 'SRR2134544_2' || true)"
gzs="$(_compress_if_exists 'SRR2134544' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample71_Expt5_FU1-Vs-01_V173_rip.fastq.gz"
fi

fasterq-dump --split-files "SRR2134545"
gz1="$(_compress_if_exists 'SRR2134545_1' || true)"
gz2="$(_compress_if_exists 'SRR2134545_2' || true)"
gzs="$(_compress_if_exists 'SRR2134545' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample72_Expt5_FU1-Vs-02_E220_rip.fastq.gz"
fi

fasterq-dump --split-files "SRR2134546"
gz1="$(_compress_if_exists 'SRR2134546_1' || true)"
gz2="$(_compress_if_exists 'SRR2134546_2' || true)"
gzs="$(_compress_if_exists 'SRR2134546' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample73_Expt5_FU1-Vs-03_wt_rip.fastq.gz"
fi

fasterq-dump --split-files "SRR2134547"
gz1="$(_compress_if_exists 'SRR2134547_1' || true)"
gz2="$(_compress_if_exists 'SRR2134547_2' || true)"
gzs="$(_compress_if_exists 'SRR2134547' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample74_Expt5_FU1-Vs-04_de_rip.fastq.gz"
fi

fasterq-dump --split-files "SRR2134548"
gz1="$(_compress_if_exists 'SRR2134548_1' || true)"
gz2="$(_compress_if_exists 'SRR2134548_2' || true)"
gzs="$(_compress_if_exists 'SRR2134548' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample75_Expt5_FU1-Vs-05_a103_rip.fastq.gz"
fi

fasterq-dump --split-files "SRR2134549"
gz1="$(_compress_if_exists 'SRR2134549_1' || true)"
gz2="$(_compress_if_exists 'SRR2134549_2' || true)"
gzs="$(_compress_if_exists 'SRR2134549' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample76_Expt5_FU1-Vs-06_f148_rip.fastq.gz"
fi

fasterq-dump --split-files "SRR2134550"
gz1="$(_compress_if_exists 'SRR2134550_1' || true)"
gz2="$(_compress_if_exists 'SRR2134550_2' || true)"
gzs="$(_compress_if_exists 'SRR2134550' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample77_Expt5_FU1-Vs-12_siL_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134551"
gz1="$(_compress_if_exists 'SRR2134551_1' || true)"
gz2="$(_compress_if_exists 'SRR2134551_2' || true)"
gzs="$(_compress_if_exists 'SRR2134551' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample78_Expt5_FU1-Vs-13_siC_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134552"
gz1="$(_compress_if_exists 'SRR2134552_1' || true)"
gz2="$(_compress_if_exists 'SRR2134552_2' || true)"
gzs="$(_compress_if_exists 'SRR2134552' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample79_Expt5_FU1-Vs-14_wt_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134553"
gz1="$(_compress_if_exists 'SRR2134553_1' || true)"
gz2="$(_compress_if_exists 'SRR2134553_2' || true)"
gzs="$(_compress_if_exists 'SRR2134553' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample80_Expt5_FU1-Vs-15_de_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134554"
gz1="$(_compress_if_exists 'SRR2134554_1' || true)"
gz2="$(_compress_if_exists 'SRR2134554_2' || true)"
gzs="$(_compress_if_exists 'SRR2134554' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample81_Expt5_FU1-Vs-16_a103_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134555"
gz1="$(_compress_if_exists 'SRR2134555_1' || true)"
gz2="$(_compress_if_exists 'SRR2134555_2' || true)"
gzs="$(_compress_if_exists 'SRR2134555' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample82_Expt5_FU1-Vs-17_f148_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134556"
gz1="$(_compress_if_exists 'SRR2134556_1' || true)"
gz2="$(_compress_if_exists 'SRR2134556_2' || true)"
gzs="$(_compress_if_exists 'SRR2134556' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample83_Expt5_FU1-Vs-18_v173_tot.fastq.gz"
fi

fasterq-dump --split-files "SRR2134557"
gz1="$(_compress_if_exists 'SRR2134557_1' || true)"
gz2="$(_compress_if_exists 'SRR2134557_2' || true)"
gzs="$(_compress_if_exists 'SRR2134557' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample84_Expt5_FU1-Vs-19_e220_tot.fastq.gz"
fi

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

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

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

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

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

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

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

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

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

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

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

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

fasterq-dump --split-files "SRR2134570"
gz1="$(_compress_if_exists 'SRR2134570_1' || true)"
gz2="$(_compress_if_exists 'SRR2134570_2' || true)"
gzs="$(_compress_if_exists 'SRR2134570' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample97_Expt2_FU5-09_siLuc_totalrip35.fastq.gz"
fi

fasterq-dump --split-files "SRR2134571"
gz1="$(_compress_if_exists 'SRR2134571_1' || true)"
gz2="$(_compress_if_exists 'SRR2134571_2' || true)"
gzs="$(_compress_if_exists 'SRR2134571' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample98_Expt2_FU5-10_siCaf_totalrip35.fastq.gz"
fi

fasterq-dump --split-files "SRR2134572"
gz1="$(_compress_if_exists 'SRR2134572_1' || true)"
gz2="$(_compress_if_exists 'SRR2134572_2' || true)"
gzs="$(_compress_if_exists 'SRR2134572' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample99_Expt3_input-U6-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134573"
gz1="$(_compress_if_exists 'SRR2134573_1' || true)"
gz2="$(_compress_if_exists 'SRR2134573_2' || true)"
gzs="$(_compress_if_exists 'SRR2134573' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample100_Expt3_input-U6-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134574"
gz1="$(_compress_if_exists 'SRR2134574_1' || true)"
gz2="$(_compress_if_exists 'SRR2134574_2' || true)"
gzs="$(_compress_if_exists 'SRR2134574' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample101_Expt3_input-U6-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134575"
gz1="$(_compress_if_exists 'SRR2134575_1' || true)"
gz2="$(_compress_if_exists 'SRR2134575_2' || true)"
gzs="$(_compress_if_exists 'SRR2134575' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample102_Expt3_input-U6-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134576"
gz1="$(_compress_if_exists 'SRR2134576_1' || true)"
gz2="$(_compress_if_exists 'SRR2134576_2' || true)"
gzs="$(_compress_if_exists 'SRR2134576' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample103_Expt3_elu-U6-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134577"
gz1="$(_compress_if_exists 'SRR2134577_1' || true)"
gz2="$(_compress_if_exists 'SRR2134577_2' || true)"
gzs="$(_compress_if_exists 'SRR2134577' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample104_Expt4_input-U6-FLAGonly-siLuc.fastq.gz"
fi

fasterq-dump --split-files "SRR2134578"
gz1="$(_compress_if_exists 'SRR2134578_1' || true)"
gz2="$(_compress_if_exists 'SRR2134578_2' || true)"
gzs="$(_compress_if_exists 'SRR2134578' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample105_Expt4_input-U6-FLAGonly-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134579"
gz1="$(_compress_if_exists 'SRR2134579_1' || true)"
gz2="$(_compress_if_exists 'SRR2134579_2' || true)"
gzs="$(_compress_if_exists 'SRR2134579' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample106_Expt4_input-U6-WTaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134580"
gz1="$(_compress_if_exists 'SRR2134580_1' || true)"
gz2="$(_compress_if_exists 'SRR2134580_2' || true)"
gzs="$(_compress_if_exists 'SRR2134580' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample107_Expt4_input-U6-DEaddback-siCaf1z.fastq.gz"
fi

fasterq-dump --split-files "SRR2134581"
gz1="$(_compress_if_exists 'SRR2134581_1' || true)"
gz2="$(_compress_if_exists 'SRR2134581_2' || true)"
gzs="$(_compress_if_exists 'SRR2134581' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample108_Expt4_elu-U6-Wtaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134582"
gz1="$(_compress_if_exists 'SRR2134582_1' || true)"
gz2="$(_compress_if_exists 'SRR2134582_2' || true)"
gzs="$(_compress_if_exists 'SRR2134582' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample109_Expt4_elu-U6-DEaddback.fastq.gz"
fi

fasterq-dump --split-files "SRR2134583"
gz1="$(_compress_if_exists 'SRR2134583_1' || true)"
gz2="$(_compress_if_exists 'SRR2134583_2' || true)"
gzs="$(_compress_if_exists 'SRR2134583' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample110_Expt4_FU4-01_siLUCtot_rip41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134584"
gz1="$(_compress_if_exists 'SRR2134584_1' || true)"
gz2="$(_compress_if_exists 'SRR2134584_2' || true)"
gzs="$(_compress_if_exists 'SRR2134584' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample111_Expt4_FU4-02_siCaf1ztot_rip41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134585"
gz1="$(_compress_if_exists 'SRR2134585_1' || true)"
gz2="$(_compress_if_exists 'SRR2134585_2' || true)"
gzs="$(_compress_if_exists 'SRR2134585' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample112_Expt4_FU4-03_WTtot_rip41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134586"
gz1="$(_compress_if_exists 'SRR2134586_1' || true)"
gz2="$(_compress_if_exists 'SRR2134586_2' || true)"
gzs="$(_compress_if_exists 'SRR2134586' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample113_Expt4_FU4-04_DEtot_rip41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134587"
gz1="$(_compress_if_exists 'SRR2134587_1' || true)"
gz2="$(_compress_if_exists 'SRR2134587_2' || true)"
gzs="$(_compress_if_exists 'SRR2134587' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample114_Expt4_FU4-05_WTrip_rip41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134588"
gz1="$(_compress_if_exists 'SRR2134588_1' || true)"
gz2="$(_compress_if_exists 'SRR2134588_2' || true)"
gzs="$(_compress_if_exists 'SRR2134588' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample115_Expt4_FU4-06_DErip_rip41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134589"
gz1="$(_compress_if_exists 'SRR2134589_1' || true)"
gz2="$(_compress_if_exists 'SRR2134589_2' || true)"
gzs="$(_compress_if_exists 'SRR2134589' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample116_Expt6_FU1-Vs-09_siL_tot_42.fastq.gz"
fi

fasterq-dump --split-files "SRR2134590"
gz1="$(_compress_if_exists 'SRR2134590_1' || true)"
gz2="$(_compress_if_exists 'SRR2134590_2' || true)"
gzs="$(_compress_if_exists 'SRR2134590' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample117_Expt6_FU1-Vs-10_siC_tot_42.fastq.gz"
fi

fasterq-dump --split-files "SRR2134591"
gz1="$(_compress_if_exists 'SRR2134591_1' || true)"
gz2="$(_compress_if_exists 'SRR2134591_2' || true)"
gzs="$(_compress_if_exists 'SRR2134591' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample118_Expt6_FU1-Vs-11_WT_tot_42.fastq.gz"
fi

fasterq-dump --split-files "SRR2134592"
gz1="$(_compress_if_exists 'SRR2134592_1' || true)"
gz2="$(_compress_if_exists 'SRR2134592_2' || true)"
gzs="$(_compress_if_exists 'SRR2134592' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample119_Expt6_FU1-Vs-12_DE_tot_42.fastq.gz"
fi

fasterq-dump --split-files "SRR2134593"
gz1="$(_compress_if_exists 'SRR2134593_1' || true)"
gz2="$(_compress_if_exists 'SRR2134593_2' || true)"
gzs="$(_compress_if_exists 'SRR2134593' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample120_Expt6_FU1-Vs-01_WT_el_42_trizol.fastq.gz"
fi

fasterq-dump --split-files "SRR2134594"
gz1="$(_compress_if_exists 'SRR2134594_1' || true)"
gz2="$(_compress_if_exists 'SRR2134594_2' || true)"
gzs="$(_compress_if_exists 'SRR2134594' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample121_Expt6_FU1-Vs-02_WT_el_42_Mg.fastq.gz"
fi

fasterq-dump --split-files "SRR2134595"
gz1="$(_compress_if_exists 'SRR2134595_1' || true)"
gz2="$(_compress_if_exists 'SRR2134595_2' || true)"
gzs="$(_compress_if_exists 'SRR2134595' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample122_Expt6_FU1-Vs-03_WT_el_42_EDTA.fastq.gz"
fi

fasterq-dump --split-files "SRR2134596"
gz1="$(_compress_if_exists 'SRR2134596_1' || true)"
gz2="$(_compress_if_exists 'SRR2134596_2' || true)"
gzs="$(_compress_if_exists 'SRR2134596' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample123_Expt6_FU1-Vs-04_DE_el_42_trizol.fastq.gz"
fi

fasterq-dump --split-files "SRR2134597"
gz1="$(_compress_if_exists 'SRR2134597_1' || true)"
gz2="$(_compress_if_exists 'SRR2134597_2' || true)"
gzs="$(_compress_if_exists 'SRR2134597' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample124_Expt6_FU1-Vs-05_DE_el__42_Mg.fastq.gz"
fi

fasterq-dump --split-files "SRR2134598"
gz1="$(_compress_if_exists 'SRR2134598_1' || true)"
gz2="$(_compress_if_exists 'SRR2134598_2' || true)"
gzs="$(_compress_if_exists 'SRR2134598' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample125_Expt6_FU1-Vs-06_DE_el__42_EDTA.fastq.gz"
fi

fasterq-dump --split-files "SRR2134599"
gz1="$(_compress_if_exists 'SRR2134599_1' || true)"
gz2="$(_compress_if_exists 'SRR2134599_2' || true)"
gzs="$(_compress_if_exists 'SRR2134599' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample126_Expt7_FU1-Vs-20_siL_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134600"
gz1="$(_compress_if_exists 'SRR2134600_1' || true)"
gz2="$(_compress_if_exists 'SRR2134600_2' || true)"
gzs="$(_compress_if_exists 'SRR2134600' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample127_Expt7_FU1-Vs-21_siC_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134601"
gz1="$(_compress_if_exists 'SRR2134601_1' || true)"
gz2="$(_compress_if_exists 'SRR2134601_2' || true)"
gzs="$(_compress_if_exists 'SRR2134601' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample128_Expt7_FU1-Vs-22_WT_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134602"
gz1="$(_compress_if_exists 'SRR2134602_1' || true)"
gz2="$(_compress_if_exists 'SRR2134602_2' || true)"
gzs="$(_compress_if_exists 'SRR2134602' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample129_Expt7_FU1-Vs-07_DE_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134603"
gz1="$(_compress_if_exists 'SRR2134603_1' || true)"
gz2="$(_compress_if_exists 'SRR2134603_2' || true)"
gzs="$(_compress_if_exists 'SRR2134603' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample130_Expt7_FU1-Vs-13_A103_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134604"
gz1="$(_compress_if_exists 'SRR2134604_1' || true)"
gz2="$(_compress_if_exists 'SRR2134604_2' || true)"
gzs="$(_compress_if_exists 'SRR2134604' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample131_Expt7_FU1-Vs-14_F148_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134605"
gz1="$(_compress_if_exists 'SRR2134605_1' || true)"
gz2="$(_compress_if_exists 'SRR2134605_2' || true)"
gzs="$(_compress_if_exists 'SRR2134605' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample132_Expt7_FU1-Vs-15_V173_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134606"
gz1="$(_compress_if_exists 'SRR2134606_1' || true)"
gz2="$(_compress_if_exists 'SRR2134606_2' || true)"
gzs="$(_compress_if_exists 'SRR2134606' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample133_Expt7_FU1-Vs-16_E220_tot_40.fastq.gz"
fi

fasterq-dump --split-files "SRR2134607"
gz1="$(_compress_if_exists 'SRR2134607_1' || true)"
gz2="$(_compress_if_exists 'SRR2134607_2' || true)"
gzs="$(_compress_if_exists 'SRR2134607' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample134_Expt9_FU1V68-01_NPC__ATCC.fastq.gz"
fi

fasterq-dump --split-files "SRR2134608"
gz1="$(_compress_if_exists 'SRR2134608_1' || true)"
gz2="$(_compress_if_exists 'SRR2134608_2' || true)"
gzs="$(_compress_if_exists 'SRR2134608' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample135_Expt9_FU1V68-02_NPC_1603A1.fastq.gz"
fi

fasterq-dump --split-files "SRR2134609"
gz1="$(_compress_if_exists 'SRR2134609_1' || true)"
gz2="$(_compress_if_exists 'SRR2134609_2' || true)"
gzs="$(_compress_if_exists 'SRR2134609' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample136_Expt9_FU1V68-03_NPC_1603A3.fastq.gz"
fi

fasterq-dump --split-files "SRR2134610"
gz1="$(_compress_if_exists 'SRR2134610_1' || true)"
gz2="$(_compress_if_exists 'SRR2134610_2' || true)"
gzs="$(_compress_if_exists 'SRR2134610' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample137_Expt9_FU1V68-04_NPC_1603U3.fastq.gz"
fi

fasterq-dump --split-files "SRR2134611"
gz1="$(_compress_if_exists 'SRR2134611_1' || true)"
gz2="$(_compress_if_exists 'SRR2134611_2' || true)"
gzs="$(_compress_if_exists 'SRR2134611' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample138_Expt9_FU1V68-05_NPC_1603U4.fastq.gz"
fi

fasterq-dump --split-files "SRR2134612"
gz1="$(_compress_if_exists 'SRR2134612_1' || true)"
gz2="$(_compress_if_exists 'SRR2134612_2' || true)"
gzs="$(_compress_if_exists 'SRR2134612' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample139_Expt9_FU2-01_NPC__ATCC.fastq.gz"
fi

fasterq-dump --split-files "SRR2134613"
gz1="$(_compress_if_exists 'SRR2134613_1' || true)"
gz2="$(_compress_if_exists 'SRR2134613_2' || true)"
gzs="$(_compress_if_exists 'SRR2134613' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample140_Expt9_FU2-02_NPC_1603A1.fastq.gz"
fi

fasterq-dump --split-files "SRR2134614"
gz1="$(_compress_if_exists 'SRR2134614_1' || true)"
gz2="$(_compress_if_exists 'SRR2134614_2' || true)"
gzs="$(_compress_if_exists 'SRR2134614' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample141_Expt9_FU2-03_NPC_1603A3.fastq.gz"
fi

fasterq-dump --split-files "SRR2134615"
gz1="$(_compress_if_exists 'SRR2134615_1' || true)"
gz2="$(_compress_if_exists 'SRR2134615_2' || true)"
gzs="$(_compress_if_exists 'SRR2134615' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample142_Expt9_FU2-04_NPC_1603U3.fastq.gz"
fi

fasterq-dump --split-files "SRR2134616"
gz1="$(_compress_if_exists 'SRR2134616_1' || true)"
gz2="$(_compress_if_exists 'SRR2134616_2' || true)"
gzs="$(_compress_if_exists 'SRR2134616' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample143_Expt9_FU2-05_NPC_1603U4.fastq.gz"
fi

fasterq-dump --split-files "SRR2134617"
gz1="$(_compress_if_exists 'SRR2134617_1' || true)"
gz2="$(_compress_if_exists 'SRR2134617_2' || true)"
gzs="$(_compress_if_exists 'SRR2134617' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample144_Expt9_FU5-03_NPC__ATCC.fastq.gz"
fi

fasterq-dump --split-files "SRR2134618"
gz1="$(_compress_if_exists 'SRR2134618_1' || true)"
gz2="$(_compress_if_exists 'SRR2134618_2' || true)"
gzs="$(_compress_if_exists 'SRR2134618' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample145_Expt9_FU5-04_NPC_1603A1.fastq.gz"
fi

fasterq-dump --split-files "SRR2134619"
gz1="$(_compress_if_exists 'SRR2134619_1' || true)"
gz2="$(_compress_if_exists 'SRR2134619_2' || true)"
gzs="$(_compress_if_exists 'SRR2134619' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample146_Expt9_FU5-05_NPC_1603A3.fastq.gz"
fi

fasterq-dump --split-files "SRR2134620"
gz1="$(_compress_if_exists 'SRR2134620_1' || true)"
gz2="$(_compress_if_exists 'SRR2134620_2' || true)"
gzs="$(_compress_if_exists 'SRR2134620' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample147_Expt9_FU5-06_NPC_1603U3.fastq.gz"
fi

fasterq-dump --split-files "SRR2134621"
gz1="$(_compress_if_exists 'SRR2134621_1' || true)"
gz2="$(_compress_if_exists 'SRR2134621_2' || true)"
gzs="$(_compress_if_exists 'SRR2134621' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample148_Expt9_FU5-07_NPC_1603U4.fastq.gz"
fi

fasterq-dump --split-files "SRR2134622"
gz1="$(_compress_if_exists 'SRR2134622_1' || true)"
gz2="$(_compress_if_exists 'SRR2134622_2' || true)"
gzs="$(_compress_if_exists 'SRR2134622' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample149_Expt4_FU5-08_siLuc_tot_41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134623"
gz1="$(_compress_if_exists 'SRR2134623_1' || true)"
gz2="$(_compress_if_exists 'SRR2134623_2' || true)"
gzs="$(_compress_if_exists 'SRR2134623' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample150_Expt4_FU5-09_siC_tot_41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134624"
gz1="$(_compress_if_exists 'SRR2134624_1' || true)"
gz2="$(_compress_if_exists 'SRR2134624_2' || true)"
gzs="$(_compress_if_exists 'SRR2134624' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample151_Expt4_FU5-10_WT_tot_41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134625"
gz1="$(_compress_if_exists 'SRR2134625_1' || true)"
gz2="$(_compress_if_exists 'SRR2134625_2' || true)"
gzs="$(_compress_if_exists 'SRR2134625' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample152_Expt4_FU5-11_DE_tot_41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134626"
gz1="$(_compress_if_exists 'SRR2134626_1' || true)"
gz2="$(_compress_if_exists 'SRR2134626_2' || true)"
gzs="$(_compress_if_exists 'SRR2134626' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample153_Expt4_FU5-12_WT_el_41.fastq.gz"
fi

fasterq-dump --split-files "SRR2134627"
gz1="$(_compress_if_exists 'SRR2134627_1' || true)"
gz2="$(_compress_if_exists 'SRR2134627_2' || true)"
gzs="$(_compress_if_exists 'SRR2134627' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "Sample154_Expt4_FU5-13_DE_el_41.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134474/SRR2134474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134475/SRR2134475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134476/SRR2134476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134477/SRR2134477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134478/SRR2134478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134479/SRR2134479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134480/SRR2134480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134481/SRR2134481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134482/SRR2134482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134483/SRR2134483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134484/SRR2134484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134485/SRR2134485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134486/SRR2134486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134487/SRR2134487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134488/SRR2134488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134489/SRR2134489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134490/SRR2134490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134491/SRR2134491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134492/SRR2134492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134493/SRR2134493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134494/SRR2134494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134495/SRR2134495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134496/SRR2134496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134497/SRR2134497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134498/SRR2134498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134499/SRR2134499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134500/SRR2134500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134501/SRR2134501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134502/SRR2134502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134503/SRR2134503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134504/SRR2134504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134505/SRR2134505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134506/SRR2134506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134507/SRR2134507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134508/SRR2134508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134509/SRR2134509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134510/SRR2134510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134511/SRR2134511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134512/SRR2134512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134513/SRR2134513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134514/SRR2134514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134515/SRR2134515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134516/SRR2134516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134517/SRR2134517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134518/SRR2134518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134519/SRR2134519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134520/SRR2134520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134521/SRR2134521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134522/SRR2134522"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134523/SRR2134523"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134524/SRR2134524"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134525/SRR2134525"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134526/SRR2134526"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134527/SRR2134527"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134528/SRR2134528"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134529/SRR2134529"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134530/SRR2134530"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134531/SRR2134531"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134532/SRR2134532"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134533/SRR2134533"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134534/SRR2134534"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134535/SRR2134535"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134536/SRR2134536"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134537/SRR2134537"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134538/SRR2134538"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134539/SRR2134539"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134540/SRR2134540"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134541/SRR2134541"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134542/SRR2134542"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134543/SRR2134543"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134544/SRR2134544"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134545/SRR2134545"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134546/SRR2134546"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134547/SRR2134547"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134548/SRR2134548"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134549/SRR2134549"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134550/SRR2134550"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134551/SRR2134551"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134552/SRR2134552"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134553/SRR2134553"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134554/SRR2134554"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134555/SRR2134555"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134556/SRR2134556"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134557/SRR2134557"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134558/SRR2134558"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134559/SRR2134559"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134560/SRR2134560"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134561/SRR2134561"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134562/SRR2134562"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134563/SRR2134563"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134564/SRR2134564"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134565/SRR2134565"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134566/SRR2134566"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134567/SRR2134567"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134568/SRR2134568"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134569/SRR2134569"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134570/SRR2134570"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134571/SRR2134571"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134572/SRR2134572"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134573/SRR2134573"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134574/SRR2134574"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134575/SRR2134575"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134576/SRR2134576"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134577/SRR2134577"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134578/SRR2134578"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134579/SRR2134579"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134580/SRR2134580"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134581/SRR2134581"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134582/SRR2134582"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134583/SRR2134583"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134584/SRR2134584"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134585/SRR2134585"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134586/SRR2134586"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134587/SRR2134587"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134588/SRR2134588"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134589/SRR2134589"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134590/SRR2134590"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134591/SRR2134591"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134592/SRR2134592"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134593/SRR2134593"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134594/SRR2134594"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134595/SRR2134595"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134596/SRR2134596"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134597/SRR2134597"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134598/SRR2134598"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134599/SRR2134599"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134600/SRR2134600"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134601/SRR2134601"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134602/SRR2134602"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134603/SRR2134603"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134604/SRR2134604"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134605/SRR2134605"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134606/SRR2134606"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134607/SRR2134607"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134608/SRR2134608"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134609/SRR2134609"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134610/SRR2134610"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134611/SRR2134611"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134612/SRR2134612"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134613/SRR2134613"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134614/SRR2134614"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134615/SRR2134615"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134616/SRR2134616"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134617/SRR2134617"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134618/SRR2134618"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134619/SRR2134619"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134620/SRR2134620"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134621/SRR2134621"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134622/SRR2134622"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134623/SRR2134623"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134624/SRR2134624"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134625/SRR2134625"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134626/SRR2134626"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134627/SRR2134627"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134576/SRR2134576"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134581/SRR2134581"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134582/SRR2134582"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134587/SRR2134587"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134588/SRR2134588"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134484/SRR2134484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134593/SRR2134593"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134594/SRR2134594"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134595/SRR2134595"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134596/SRR2134596"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134597/SRR2134597"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134598/SRR2134598"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134485/SRR2134485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134626/SRR2134626"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134627/SRR2134627"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134490/SRR2134490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134491/SRR2134491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134496/SRR2134496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134497/SRR2134497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134502/SRR2134502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134503/SRR2134503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134506/SRR2134506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134507/SRR2134507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134512/SRR2134512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134513/SRR2134513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134518/SRR2134518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134519/SRR2134519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134524/SRR2134524"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134525/SRR2134525"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134530/SRR2134530"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134531/SRR2134531"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134478/SRR2134478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134534/SRR2134534"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134535/SRR2134535"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134542/SRR2134542"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134479/SRR2134479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134543/SRR2134543"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134544/SRR2134544"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134545/SRR2134545"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134546/SRR2134546"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134547/SRR2134547"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134548/SRR2134548"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134549/SRR2134549"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134573/SRR2134573"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134574/SRR2134574"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134575/SRR2134575"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134577/SRR2134577"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134578/SRR2134578"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134579/SRR2134579"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134580/SRR2134580"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134483/SRR2134483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134583/SRR2134583"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134584/SRR2134584"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134585/SRR2134585"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134586/SRR2134586"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134589/SRR2134589"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134590/SRR2134590"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134591/SRR2134591"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134592/SRR2134592"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134599/SRR2134599"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134600/SRR2134600"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134601/SRR2134601"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134602/SRR2134602"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134603/SRR2134603"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134604/SRR2134604"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134605/SRR2134605"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134606/SRR2134606"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134607/SRR2134607"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134608/SRR2134608"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134609/SRR2134609"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134610/SRR2134610"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134611/SRR2134611"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134612/SRR2134612"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134486/SRR2134486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134613/SRR2134613"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134614/SRR2134614"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134615/SRR2134615"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134616/SRR2134616"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134617/SRR2134617"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134618/SRR2134618"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134619/SRR2134619"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134620/SRR2134620"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134621/SRR2134621"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134622/SRR2134622"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134487/SRR2134487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134623/SRR2134623"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134624/SRR2134624"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134625/SRR2134625"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134488/SRR2134488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134489/SRR2134489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134492/SRR2134492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134474/SRR2134474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134493/SRR2134493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134494/SRR2134494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134495/SRR2134495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134498/SRR2134498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134499/SRR2134499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134500/SRR2134500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134501/SRR2134501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134475/SRR2134475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134504/SRR2134504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134505/SRR2134505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134508/SRR2134508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134509/SRR2134509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134510/SRR2134510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134511/SRR2134511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134476/SRR2134476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134514/SRR2134514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134515/SRR2134515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134516/SRR2134516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134517/SRR2134517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134520/SRR2134520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134521/SRR2134521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134522/SRR2134522"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134477/SRR2134477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134523/SRR2134523"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134526/SRR2134526"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134527/SRR2134527"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134528/SRR2134528"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134529/SRR2134529"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134532/SRR2134532"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134533/SRR2134533"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134536/SRR2134536"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134537/SRR2134537"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134538/SRR2134538"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134539/SRR2134539"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134540/SRR2134540"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134541/SRR2134541"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134550/SRR2134550"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134551/SRR2134551"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134552/SRR2134552"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134480/SRR2134480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134553/SRR2134553"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134554/SRR2134554"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134555/SRR2134555"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134556/SRR2134556"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134557/SRR2134557"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134558/SRR2134558"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134559/SRR2134559"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134560/SRR2134560"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134561/SRR2134561"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134562/SRR2134562"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134481/SRR2134481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134563/SRR2134563"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134564/SRR2134564"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134565/SRR2134565"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134566/SRR2134566"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134567/SRR2134567"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134568/SRR2134568"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134569/SRR2134569"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134570/SRR2134570"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134571/SRR2134571"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134572/SRR2134572"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2134482/SRR2134482"

echo "Download complete. Files saved to $OUTDIR"