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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE107nnn/GSE107766/suppl/GSE107766_RAW.tar" -O "GSE107766_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 "SRR6458659"
gz1="$(_compress_if_exists 'SRR6458659_1' || true)"
gz2="$(_compress_if_exists 'SRR6458659_2' || true)"
gzs="$(_compress_if_exists 'SRR6458659' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "266_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "266_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458660"
gz1="$(_compress_if_exists 'SRR6458660_1' || true)"
gz2="$(_compress_if_exists 'SRR6458660_2' || true)"
gzs="$(_compress_if_exists 'SRR6458660' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "266_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "266_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458661"
gz1="$(_compress_if_exists 'SRR6458661_1' || true)"
gz2="$(_compress_if_exists 'SRR6458661_2' || true)"
gzs="$(_compress_if_exists 'SRR6458661' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "264_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "264_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458662"
gz1="$(_compress_if_exists 'SRR6458662_1' || true)"
gz2="$(_compress_if_exists 'SRR6458662_2' || true)"
gzs="$(_compress_if_exists 'SRR6458662' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "264_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "264_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458663"
gz1="$(_compress_if_exists 'SRR6458663_1' || true)"
gz2="$(_compress_if_exists 'SRR6458663_2' || true)"
gzs="$(_compress_if_exists 'SRR6458663' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "299_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "299_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458664"
gz1="$(_compress_if_exists 'SRR6458664_1' || true)"
gz2="$(_compress_if_exists 'SRR6458664_2' || true)"
gzs="$(_compress_if_exists 'SRR6458664' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "299_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "299_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458665"
gz1="$(_compress_if_exists 'SRR6458665_1' || true)"
gz2="$(_compress_if_exists 'SRR6458665_2' || true)"
gzs="$(_compress_if_exists 'SRR6458665' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "463_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "463_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458666"
gz1="$(_compress_if_exists 'SRR6458666_1' || true)"
gz2="$(_compress_if_exists 'SRR6458666_2' || true)"
gzs="$(_compress_if_exists 'SRR6458666' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "463_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "463_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458667"
gz1="$(_compress_if_exists 'SRR6458667_1' || true)"
gz2="$(_compress_if_exists 'SRR6458667_2' || true)"
gzs="$(_compress_if_exists 'SRR6458667' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "419_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "419_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458668"
gz1="$(_compress_if_exists 'SRR6458668_1' || true)"
gz2="$(_compress_if_exists 'SRR6458668_2' || true)"
gzs="$(_compress_if_exists 'SRR6458668' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "419_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "419_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458669"
gz1="$(_compress_if_exists 'SRR6458669_1' || true)"
gz2="$(_compress_if_exists 'SRR6458669_2' || true)"
gzs="$(_compress_if_exists 'SRR6458669' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "496_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "496_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458670"
gz1="$(_compress_if_exists 'SRR6458670_1' || true)"
gz2="$(_compress_if_exists 'SRR6458670_2' || true)"
gzs="$(_compress_if_exists 'SRR6458670' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "496_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "496_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458671"
gz1="$(_compress_if_exists 'SRR6458671_1' || true)"
gz2="$(_compress_if_exists 'SRR6458671_2' || true)"
gzs="$(_compress_if_exists 'SRR6458671' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "498_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "498_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458672"
gz1="$(_compress_if_exists 'SRR6458672_1' || true)"
gz2="$(_compress_if_exists 'SRR6458672_2' || true)"
gzs="$(_compress_if_exists 'SRR6458672' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "498_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "498_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458673"
gz1="$(_compress_if_exists 'SRR6458673_1' || true)"
gz2="$(_compress_if_exists 'SRR6458673_2' || true)"
gzs="$(_compress_if_exists 'SRR6458673' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "499_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "499_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458674"
gz1="$(_compress_if_exists 'SRR6458674_1' || true)"
gz2="$(_compress_if_exists 'SRR6458674_2' || true)"
gzs="$(_compress_if_exists 'SRR6458674' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "499_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "499_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458675"
gz1="$(_compress_if_exists 'SRR6458675_1' || true)"
gz2="$(_compress_if_exists 'SRR6458675_2' || true)"
gzs="$(_compress_if_exists 'SRR6458675' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "512_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "512_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458676"
gz1="$(_compress_if_exists 'SRR6458676_1' || true)"
gz2="$(_compress_if_exists 'SRR6458676_2' || true)"
gzs="$(_compress_if_exists 'SRR6458676' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "512_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "512_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458677"
gz1="$(_compress_if_exists 'SRR6458677_1' || true)"
gz2="$(_compress_if_exists 'SRR6458677_2' || true)"
gzs="$(_compress_if_exists 'SRR6458677' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "459_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "459_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458678"
gz1="$(_compress_if_exists 'SRR6458678_1' || true)"
gz2="$(_compress_if_exists 'SRR6458678_2' || true)"
gzs="$(_compress_if_exists 'SRR6458678' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "459_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "459_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458679"
gz1="$(_compress_if_exists 'SRR6458679_1' || true)"
gz2="$(_compress_if_exists 'SRR6458679_2' || true)"
gzs="$(_compress_if_exists 'SRR6458679' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "471_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "471_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458680"
gz1="$(_compress_if_exists 'SRR6458680_1' || true)"
gz2="$(_compress_if_exists 'SRR6458680_2' || true)"
gzs="$(_compress_if_exists 'SRR6458680' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "471_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "471_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458681"
gz1="$(_compress_if_exists 'SRR6458681_1' || true)"
gz2="$(_compress_if_exists 'SRR6458681_2' || true)"
gzs="$(_compress_if_exists 'SRR6458681' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "510_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "510_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458682"
gz1="$(_compress_if_exists 'SRR6458682_1' || true)"
gz2="$(_compress_if_exists 'SRR6458682_2' || true)"
gzs="$(_compress_if_exists 'SRR6458682' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "510_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "510_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458683"
gz1="$(_compress_if_exists 'SRR6458683_1' || true)"
gz2="$(_compress_if_exists 'SRR6458683_2' || true)"
gzs="$(_compress_if_exists 'SRR6458683' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "513_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "513_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458684"
gz1="$(_compress_if_exists 'SRR6458684_1' || true)"
gz2="$(_compress_if_exists 'SRR6458684_2' || true)"
gzs="$(_compress_if_exists 'SRR6458684' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "513_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "513_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458685"
gz1="$(_compress_if_exists 'SRR6458685_1' || true)"
gz2="$(_compress_if_exists 'SRR6458685_2' || true)"
gzs="$(_compress_if_exists 'SRR6458685' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "535_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "535_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458686"
gz1="$(_compress_if_exists 'SRR6458686_1' || true)"
gz2="$(_compress_if_exists 'SRR6458686_2' || true)"
gzs="$(_compress_if_exists 'SRR6458686' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "535_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "535_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458687"
gz1="$(_compress_if_exists 'SRR6458687_1' || true)"
gz2="$(_compress_if_exists 'SRR6458687_2' || true)"
gzs="$(_compress_if_exists 'SRR6458687' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "536_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "536_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458688"
gz1="$(_compress_if_exists 'SRR6458688_1' || true)"
gz2="$(_compress_if_exists 'SRR6458688_2' || true)"
gzs="$(_compress_if_exists 'SRR6458688' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "536_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "536_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458689"
gz1="$(_compress_if_exists 'SRR6458689_1' || true)"
gz2="$(_compress_if_exists 'SRR6458689_2' || true)"
gzs="$(_compress_if_exists 'SRR6458689' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "541_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "541_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458690"
gz1="$(_compress_if_exists 'SRR6458690_1' || true)"
gz2="$(_compress_if_exists 'SRR6458690_2' || true)"
gzs="$(_compress_if_exists 'SRR6458690' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "541_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "541_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458691"
gz1="$(_compress_if_exists 'SRR6458691_1' || true)"
gz2="$(_compress_if_exists 'SRR6458691_2' || true)"
gzs="$(_compress_if_exists 'SRR6458691' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "547_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "547_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458692"
gz1="$(_compress_if_exists 'SRR6458692_1' || true)"
gz2="$(_compress_if_exists 'SRR6458692_2' || true)"
gzs="$(_compress_if_exists 'SRR6458692' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "547_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "547_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458693"
gz1="$(_compress_if_exists 'SRR6458693_1' || true)"
gz2="$(_compress_if_exists 'SRR6458693_2' || true)"
gzs="$(_compress_if_exists 'SRR6458693' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "355_01_4000.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "355_01_4000.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458694"
gz1="$(_compress_if_exists 'SRR6458694_1' || true)"
gz2="$(_compress_if_exists 'SRR6458694_2' || true)"
gzs="$(_compress_if_exists 'SRR6458694' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "355_02_4000.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "355_02_4000.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458695"
gz1="$(_compress_if_exists 'SRR6458695_1' || true)"
gz2="$(_compress_if_exists 'SRR6458695_2' || true)"
gzs="$(_compress_if_exists 'SRR6458695' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "534_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "534_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458696"
gz1="$(_compress_if_exists 'SRR6458696_1' || true)"
gz2="$(_compress_if_exists 'SRR6458696_2' || true)"
gzs="$(_compress_if_exists 'SRR6458696' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "534_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "534_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458697"
gz1="$(_compress_if_exists 'SRR6458697_1' || true)"
gz2="$(_compress_if_exists 'SRR6458697_2' || true)"
gzs="$(_compress_if_exists 'SRR6458697' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "598_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "598_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458698"
gz1="$(_compress_if_exists 'SRR6458698_1' || true)"
gz2="$(_compress_if_exists 'SRR6458698_2' || true)"
gzs="$(_compress_if_exists 'SRR6458698' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "598_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "598_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458699"
gz1="$(_compress_if_exists 'SRR6458699_1' || true)"
gz2="$(_compress_if_exists 'SRR6458699_2' || true)"
gzs="$(_compress_if_exists 'SRR6458699' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "520_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "520_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458700"
gz1="$(_compress_if_exists 'SRR6458700_1' || true)"
gz2="$(_compress_if_exists 'SRR6458700_2' || true)"
gzs="$(_compress_if_exists 'SRR6458700' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "520_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "520_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458701"
gz1="$(_compress_if_exists 'SRR6458701_1' || true)"
gz2="$(_compress_if_exists 'SRR6458701_2' || true)"
gzs="$(_compress_if_exists 'SRR6458701' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "523_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "523_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458702"
gz1="$(_compress_if_exists 'SRR6458702_1' || true)"
gz2="$(_compress_if_exists 'SRR6458702_2' || true)"
gzs="$(_compress_if_exists 'SRR6458702' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "523_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "523_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458703"
gz1="$(_compress_if_exists 'SRR6458703_1' || true)"
gz2="$(_compress_if_exists 'SRR6458703_2' || true)"
gzs="$(_compress_if_exists 'SRR6458703' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "611_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "611_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458704"
gz1="$(_compress_if_exists 'SRR6458704_1' || true)"
gz2="$(_compress_if_exists 'SRR6458704_2' || true)"
gzs="$(_compress_if_exists 'SRR6458704' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "611_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "611_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458705"
gz1="$(_compress_if_exists 'SRR6458705_1' || true)"
gz2="$(_compress_if_exists 'SRR6458705_2' || true)"
gzs="$(_compress_if_exists 'SRR6458705' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "616_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "616_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458706"
gz1="$(_compress_if_exists 'SRR6458706_1' || true)"
gz2="$(_compress_if_exists 'SRR6458706_2' || true)"
gzs="$(_compress_if_exists 'SRR6458706' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "616_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "616_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458707"
gz1="$(_compress_if_exists 'SRR6458707_1' || true)"
gz2="$(_compress_if_exists 'SRR6458707_2' || true)"
gzs="$(_compress_if_exists 'SRR6458707' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "451_01_4000.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "451_01_4000.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458708"
gz1="$(_compress_if_exists 'SRR6458708_1' || true)"
gz2="$(_compress_if_exists 'SRR6458708_2' || true)"
gzs="$(_compress_if_exists 'SRR6458708' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "451_02_4000.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "451_02_4000.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458709"
gz1="$(_compress_if_exists 'SRR6458709_1' || true)"
gz2="$(_compress_if_exists 'SRR6458709_2' || true)"
gzs="$(_compress_if_exists 'SRR6458709' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "485_01_4000.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "485_01_4000.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458710"
gz1="$(_compress_if_exists 'SRR6458710_1' || true)"
gz2="$(_compress_if_exists 'SRR6458710_2' || true)"
gzs="$(_compress_if_exists 'SRR6458710' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "485_02_4000.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "485_02_4000.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458711"
gz1="$(_compress_if_exists 'SRR6458711_1' || true)"
gz2="$(_compress_if_exists 'SRR6458711_2' || true)"
gzs="$(_compress_if_exists 'SRR6458711' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "555_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "555_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458712"
gz1="$(_compress_if_exists 'SRR6458712_1' || true)"
gz2="$(_compress_if_exists 'SRR6458712_2' || true)"
gzs="$(_compress_if_exists 'SRR6458712' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "555_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "555_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458713"
gz1="$(_compress_if_exists 'SRR6458713_1' || true)"
gz2="$(_compress_if_exists 'SRR6458713_2' || true)"
gzs="$(_compress_if_exists 'SRR6458713' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "609_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "609_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458714"
gz1="$(_compress_if_exists 'SRR6458714_1' || true)"
gz2="$(_compress_if_exists 'SRR6458714_2' || true)"
gzs="$(_compress_if_exists 'SRR6458714' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "609_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "609_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458715"
gz1="$(_compress_if_exists 'SRR6458715_1' || true)"
gz2="$(_compress_if_exists 'SRR6458715_2' || true)"
gzs="$(_compress_if_exists 'SRR6458715' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "674_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "674_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458716"
gz1="$(_compress_if_exists 'SRR6458716_1' || true)"
gz2="$(_compress_if_exists 'SRR6458716_2' || true)"
gzs="$(_compress_if_exists 'SRR6458716' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "674_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "674_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458717"
gz1="$(_compress_if_exists 'SRR6458717_1' || true)"
gz2="$(_compress_if_exists 'SRR6458717_2' || true)"
gzs="$(_compress_if_exists 'SRR6458717' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "721_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "721_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458718"
gz1="$(_compress_if_exists 'SRR6458718_1' || true)"
gz2="$(_compress_if_exists 'SRR6458718_2' || true)"
gzs="$(_compress_if_exists 'SRR6458718' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "721_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "721_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458719"
gz1="$(_compress_if_exists 'SRR6458719_1' || true)"
gz2="$(_compress_if_exists 'SRR6458719_2' || true)"
gzs="$(_compress_if_exists 'SRR6458719' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "724_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "724_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458720"
gz1="$(_compress_if_exists 'SRR6458720_1' || true)"
gz2="$(_compress_if_exists 'SRR6458720_2' || true)"
gzs="$(_compress_if_exists 'SRR6458720' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "724_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "724_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458721"
gz1="$(_compress_if_exists 'SRR6458721_1' || true)"
gz2="$(_compress_if_exists 'SRR6458721_2' || true)"
gzs="$(_compress_if_exists 'SRR6458721' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "662_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "662_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458722"
gz1="$(_compress_if_exists 'SRR6458722_1' || true)"
gz2="$(_compress_if_exists 'SRR6458722_2' || true)"
gzs="$(_compress_if_exists 'SRR6458722' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "662_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "662_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458723"
gz1="$(_compress_if_exists 'SRR6458723_1' || true)"
gz2="$(_compress_if_exists 'SRR6458723_2' || true)"
gzs="$(_compress_if_exists 'SRR6458723' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "706_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "706_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458724"
gz1="$(_compress_if_exists 'SRR6458724_1' || true)"
gz2="$(_compress_if_exists 'SRR6458724_2' || true)"
gzs="$(_compress_if_exists 'SRR6458724' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "706_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "706_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458725"
gz1="$(_compress_if_exists 'SRR6458725_1' || true)"
gz2="$(_compress_if_exists 'SRR6458725_2' || true)"
gzs="$(_compress_if_exists 'SRR6458725' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "739_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "739_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458726"
gz1="$(_compress_if_exists 'SRR6458726_1' || true)"
gz2="$(_compress_if_exists 'SRR6458726_2' || true)"
gzs="$(_compress_if_exists 'SRR6458726' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "739_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "739_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458727"
gz1="$(_compress_if_exists 'SRR6458727_1' || true)"
gz2="$(_compress_if_exists 'SRR6458727_2' || true)"
gzs="$(_compress_if_exists 'SRR6458727' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "669_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "669_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458728"
gz1="$(_compress_if_exists 'SRR6458728_1' || true)"
gz2="$(_compress_if_exists 'SRR6458728_2' || true)"
gzs="$(_compress_if_exists 'SRR6458728' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "669_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "669_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR6458729"
gz1="$(_compress_if_exists 'SRR6458729_1' || true)"
gz2="$(_compress_if_exists 'SRR6458729_2' || true)"
gzs="$(_compress_if_exists 'SRR6458729' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "264_INPUT_GAGATTCC-AGGCGAAG_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "264_INPUT_GAGATTCC-AGGCGAAG_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458730"
gz1="$(_compress_if_exists 'SRR6458730_1' || true)"
gz2="$(_compress_if_exists 'SRR6458730_2' || true)"
gzs="$(_compress_if_exists 'SRR6458730' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "266_INPUT_ATTCAGAA-GGCTCTGA_L006_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "266_INPUT_ATTCAGAA-GGCTCTGA_L006_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458731"
gz1="$(_compress_if_exists 'SRR6458731_1' || true)"
gz2="$(_compress_if_exists 'SRR6458731_2' || true)"
gzs="$(_compress_if_exists 'SRR6458731' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "299_INPUT_ATTACTCG-AGG_L003_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "299_INPUT_ATTACTCG-AGG_L003_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458732"
gz1="$(_compress_if_exists 'SRR6458732_1' || true)"
gz2="$(_compress_if_exists 'SRR6458732_2' || true)"
gzs="$(_compress_if_exists 'SRR6458732' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "355_INPUT_ATTCAGAA-AGGCGAAG_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "355_INPUT_ATTCAGAA-AGGCGAAG_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458733"
gz1="$(_compress_if_exists 'SRR6458733_1' || true)"
gz2="$(_compress_if_exists 'SRR6458733_2' || true)"
gzs="$(_compress_if_exists 'SRR6458733' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "419_INPUT_S14_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "419_INPUT_S14_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458734"
gz1="$(_compress_if_exists 'SRR6458734_1' || true)"
gz2="$(_compress_if_exists 'SRR6458734_2' || true)"
gzs="$(_compress_if_exists 'SRR6458734' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "451_INPUT_4000_S82_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "451_INPUT_4000_S82_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458735"
gz1="$(_compress_if_exists 'SRR6458735_1' || true)"
gz2="$(_compress_if_exists 'SRR6458735_2' || true)"
gzs="$(_compress_if_exists 'SRR6458735' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "459_INPUT_S30_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "459_INPUT_S30_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458736"
gz1="$(_compress_if_exists 'SRR6458736_1' || true)"
gz2="$(_compress_if_exists 'SRR6458736_2' || true)"
gzs="$(_compress_if_exists 'SRR6458736' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "463_INPUT_GAGATTCC-CCTATCCT_L003_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "463_INPUT_GAGATTCC-CCTATCCT_L003_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458737"
gz1="$(_compress_if_exists 'SRR6458737_1' || true)"
gz2="$(_compress_if_exists 'SRR6458737_2' || true)"
gzs="$(_compress_if_exists 'SRR6458737' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "471_INPUT_S28_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "471_INPUT_S28_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458738"
gz1="$(_compress_if_exists 'SRR6458738_1' || true)"
gz2="$(_compress_if_exists 'SRR6458738_2' || true)"
gzs="$(_compress_if_exists 'SRR6458738' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "485_INPUT_S42_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "485_INPUT_S42_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458739"
gz1="$(_compress_if_exists 'SRR6458739_1' || true)"
gz2="$(_compress_if_exists 'SRR6458739_2' || true)"
gzs="$(_compress_if_exists 'SRR6458739' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "496_INPUT_S69_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "496_INPUT_S69_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458740"
gz1="$(_compress_if_exists 'SRR6458740_1' || true)"
gz2="$(_compress_if_exists 'SRR6458740_2' || true)"
gzs="$(_compress_if_exists 'SRR6458740' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "498_INPUT_S46_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "498_INPUT_S46_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458741"
gz1="$(_compress_if_exists 'SRR6458741_1' || true)"
gz2="$(_compress_if_exists 'SRR6458741_2' || true)"
gzs="$(_compress_if_exists 'SRR6458741' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "499_INPUT_S48_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "499_INPUT_S48_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458742"
gz1="$(_compress_if_exists 'SRR6458742_1' || true)"
gz2="$(_compress_if_exists 'SRR6458742_2' || true)"
gzs="$(_compress_if_exists 'SRR6458742' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "510_INPUT_S4_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "510_INPUT_S4_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458743"
gz1="$(_compress_if_exists 'SRR6458743_1' || true)"
gz2="$(_compress_if_exists 'SRR6458743_2' || true)"
gzs="$(_compress_if_exists 'SRR6458743' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "512_INPUT_S67_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "512_INPUT_S67_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458744"
gz1="$(_compress_if_exists 'SRR6458744_1' || true)"
gz2="$(_compress_if_exists 'SRR6458744_2' || true)"
gzs="$(_compress_if_exists 'SRR6458744' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "513_INPUT_S45_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "513_INPUT_S45_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458745"
gz1="$(_compress_if_exists 'SRR6458745_1' || true)"
gz2="$(_compress_if_exists 'SRR6458745_2' || true)"
gzs="$(_compress_if_exists 'SRR6458745' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "520_INPUT_S24_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "520_INPUT_S24_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458746"
gz1="$(_compress_if_exists 'SRR6458746_1' || true)"
gz2="$(_compress_if_exists 'SRR6458746_2' || true)"
gzs="$(_compress_if_exists 'SRR6458746' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "523_INPUT_S6_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "523_INPUT_S6_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458747"
gz1="$(_compress_if_exists 'SRR6458747_1' || true)"
gz2="$(_compress_if_exists 'SRR6458747_2' || true)"
gzs="$(_compress_if_exists 'SRR6458747' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "534_INPUT_S2_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "534_INPUT_S2_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458748"
gz1="$(_compress_if_exists 'SRR6458748_1' || true)"
gz2="$(_compress_if_exists 'SRR6458748_2' || true)"
gzs="$(_compress_if_exists 'SRR6458748' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "535_INPUT_S57_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "535_INPUT_S57_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458749"
gz1="$(_compress_if_exists 'SRR6458749_1' || true)"
gz2="$(_compress_if_exists 'SRR6458749_2' || true)"
gzs="$(_compress_if_exists 'SRR6458749' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "536_INPUT_S23_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "536_INPUT_S23_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458750"
gz1="$(_compress_if_exists 'SRR6458750_1' || true)"
gz2="$(_compress_if_exists 'SRR6458750_2' || true)"
gzs="$(_compress_if_exists 'SRR6458750' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "541_INPUT_S61_L007_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "541_INPUT_S61_L007_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458751"
gz1="$(_compress_if_exists 'SRR6458751_1' || true)"
gz2="$(_compress_if_exists 'SRR6458751_2' || true)"
gzs="$(_compress_if_exists 'SRR6458751' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "547_INPUT_S5_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "547_INPUT_S5_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458752"
gz1="$(_compress_if_exists 'SRR6458752_1' || true)"
gz2="$(_compress_if_exists 'SRR6458752_2' || true)"
gzs="$(_compress_if_exists 'SRR6458752' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "555_INPUT_S5_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "555_INPUT_S5_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458753"
gz1="$(_compress_if_exists 'SRR6458753_1' || true)"
gz2="$(_compress_if_exists 'SRR6458753_2' || true)"
gzs="$(_compress_if_exists 'SRR6458753' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "598_INPUT_S18_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "598_INPUT_S18_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458754"
gz1="$(_compress_if_exists 'SRR6458754_1' || true)"
gz2="$(_compress_if_exists 'SRR6458754_2' || true)"
gzs="$(_compress_if_exists 'SRR6458754' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "609_INPUT_S39_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "609_INPUT_S39_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458755"
gz1="$(_compress_if_exists 'SRR6458755_1' || true)"
gz2="$(_compress_if_exists 'SRR6458755_2' || true)"
gzs="$(_compress_if_exists 'SRR6458755' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "611_INPUT_S30_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "611_INPUT_S30_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458756"
gz1="$(_compress_if_exists 'SRR6458756_1' || true)"
gz2="$(_compress_if_exists 'SRR6458756_2' || true)"
gzs="$(_compress_if_exists 'SRR6458756' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "616_INPUT_S6_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "616_INPUT_S6_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458757"
gz1="$(_compress_if_exists 'SRR6458757_1' || true)"
gz2="$(_compress_if_exists 'SRR6458757_2' || true)"
gzs="$(_compress_if_exists 'SRR6458757' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "662_INPUT_S7_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "662_INPUT_S7_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458758"
gz1="$(_compress_if_exists 'SRR6458758_1' || true)"
gz2="$(_compress_if_exists 'SRR6458758_2' || true)"
gzs="$(_compress_if_exists 'SRR6458758' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "669_INPUT_S12_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "669_INPUT_S12_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458759"
gz1="$(_compress_if_exists 'SRR6458759_1' || true)"
gz2="$(_compress_if_exists 'SRR6458759_2' || true)"
gzs="$(_compress_if_exists 'SRR6458759' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "674_INPUT_S78_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "674_INPUT_S78_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458760"
gz1="$(_compress_if_exists 'SRR6458760_1' || true)"
gz2="$(_compress_if_exists 'SRR6458760_2' || true)"
gzs="$(_compress_if_exists 'SRR6458760' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "706_INPUT_S49_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "706_INPUT_S49_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458761"
gz1="$(_compress_if_exists 'SRR6458761_1' || true)"
gz2="$(_compress_if_exists 'SRR6458761_2' || true)"
gzs="$(_compress_if_exists 'SRR6458761' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "721_INPUT_S77_L007_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "721_INPUT_S77_L007_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458762"
gz1="$(_compress_if_exists 'SRR6458762_1' || true)"
gz2="$(_compress_if_exists 'SRR6458762_2' || true)"
gzs="$(_compress_if_exists 'SRR6458762' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "724_INPUT_S83_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "724_INPUT_S83_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458763"
gz1="$(_compress_if_exists 'SRR6458763_1' || true)"
gz2="$(_compress_if_exists 'SRR6458763_2' || true)"
gzs="$(_compress_if_exists 'SRR6458763' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "739_INPUT_S112_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "739_INPUT_S112_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889842"
gz1="$(_compress_if_exists 'SRR7889842_1' || true)"
gz2="$(_compress_if_exists 'SRR7889842_2' || true)"
gzs="$(_compress_if_exists 'SRR7889842' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "332_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "332_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889843"
gz1="$(_compress_if_exists 'SRR7889843_1' || true)"
gz2="$(_compress_if_exists 'SRR7889843_2' || true)"
gzs="$(_compress_if_exists 'SRR7889843' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "332_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "332_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889844"
gz1="$(_compress_if_exists 'SRR7889844_1' || true)"
gz2="$(_compress_if_exists 'SRR7889844_2' || true)"
gzs="$(_compress_if_exists 'SRR7889844' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "366_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "366_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889845"
gz1="$(_compress_if_exists 'SRR7889845_1' || true)"
gz2="$(_compress_if_exists 'SRR7889845_2' || true)"
gzs="$(_compress_if_exists 'SRR7889845' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "366_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "366_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889846"
gz1="$(_compress_if_exists 'SRR7889846_1' || true)"
gz2="$(_compress_if_exists 'SRR7889846_2' || true)"
gzs="$(_compress_if_exists 'SRR7889846' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "415_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "415_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889847"
gz1="$(_compress_if_exists 'SRR7889847_1' || true)"
gz2="$(_compress_if_exists 'SRR7889847_2' || true)"
gzs="$(_compress_if_exists 'SRR7889847' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "415_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "415_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889848"
gz1="$(_compress_if_exists 'SRR7889848_1' || true)"
gz2="$(_compress_if_exists 'SRR7889848_2' || true)"
gzs="$(_compress_if_exists 'SRR7889848' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "417_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "417_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889849"
gz1="$(_compress_if_exists 'SRR7889849_1' || true)"
gz2="$(_compress_if_exists 'SRR7889849_2' || true)"
gzs="$(_compress_if_exists 'SRR7889849' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "417_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "417_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889850"
gz1="$(_compress_if_exists 'SRR7889850_1' || true)"
gz2="$(_compress_if_exists 'SRR7889850_2' || true)"
gzs="$(_compress_if_exists 'SRR7889850' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "567_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "567_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889851"
gz1="$(_compress_if_exists 'SRR7889851_1' || true)"
gz2="$(_compress_if_exists 'SRR7889851_2' || true)"
gzs="$(_compress_if_exists 'SRR7889851' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "567_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "567_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889852"
gz1="$(_compress_if_exists 'SRR7889852_1' || true)"
gz2="$(_compress_if_exists 'SRR7889852_2' || true)"
gzs="$(_compress_if_exists 'SRR7889852' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "529_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "529_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889853"
gz1="$(_compress_if_exists 'SRR7889853_1' || true)"
gz2="$(_compress_if_exists 'SRR7889853_2' || true)"
gzs="$(_compress_if_exists 'SRR7889853' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "529_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "529_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889854"
gz1="$(_compress_if_exists 'SRR7889854_1' || true)"
gz2="$(_compress_if_exists 'SRR7889854_2' || true)"
gzs="$(_compress_if_exists 'SRR7889854' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "531_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "531_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889855"
gz1="$(_compress_if_exists 'SRR7889855_1' || true)"
gz2="$(_compress_if_exists 'SRR7889855_2' || true)"
gzs="$(_compress_if_exists 'SRR7889855' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "531_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "531_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889856"
gz1="$(_compress_if_exists 'SRR7889856_1' || true)"
gz2="$(_compress_if_exists 'SRR7889856_2' || true)"
gzs="$(_compress_if_exists 'SRR7889856' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "613_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "613_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889857"
gz1="$(_compress_if_exists 'SRR7889857_1' || true)"
gz2="$(_compress_if_exists 'SRR7889857_2' || true)"
gzs="$(_compress_if_exists 'SRR7889857' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "613_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "613_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889858"
gz1="$(_compress_if_exists 'SRR7889858_1' || true)"
gz2="$(_compress_if_exists 'SRR7889858_2' || true)"
gzs="$(_compress_if_exists 'SRR7889858' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "626_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "626_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889859"
gz1="$(_compress_if_exists 'SRR7889859_1' || true)"
gz2="$(_compress_if_exists 'SRR7889859_2' || true)"
gzs="$(_compress_if_exists 'SRR7889859' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "626_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "626_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889860"
gz1="$(_compress_if_exists 'SRR7889860_1' || true)"
gz2="$(_compress_if_exists 'SRR7889860_2' || true)"
gzs="$(_compress_if_exists 'SRR7889860' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "588_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "588_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889861"
gz1="$(_compress_if_exists 'SRR7889861_1' || true)"
gz2="$(_compress_if_exists 'SRR7889861_2' || true)"
gzs="$(_compress_if_exists 'SRR7889861' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "588_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "588_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889862"
gz1="$(_compress_if_exists 'SRR7889862_1' || true)"
gz2="$(_compress_if_exists 'SRR7889862_2' || true)"
gzs="$(_compress_if_exists 'SRR7889862' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "658_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "658_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889863"
gz1="$(_compress_if_exists 'SRR7889863_1' || true)"
gz2="$(_compress_if_exists 'SRR7889863_2' || true)"
gzs="$(_compress_if_exists 'SRR7889863' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "658_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "658_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889864"
gz1="$(_compress_if_exists 'SRR7889864_1' || true)"
gz2="$(_compress_if_exists 'SRR7889864_2' || true)"
gzs="$(_compress_if_exists 'SRR7889864' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "679_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "679_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889865"
gz1="$(_compress_if_exists 'SRR7889865_1' || true)"
gz2="$(_compress_if_exists 'SRR7889865_2' || true)"
gzs="$(_compress_if_exists 'SRR7889865' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "679_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "679_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889866"
gz1="$(_compress_if_exists 'SRR7889866_1' || true)"
gz2="$(_compress_if_exists 'SRR7889866_2' || true)"
gzs="$(_compress_if_exists 'SRR7889866' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "714_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "714_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889867"
gz1="$(_compress_if_exists 'SRR7889867_1' || true)"
gz2="$(_compress_if_exists 'SRR7889867_2' || true)"
gzs="$(_compress_if_exists 'SRR7889867' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "714_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "714_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889868"
gz1="$(_compress_if_exists 'SRR7889868_1' || true)"
gz2="$(_compress_if_exists 'SRR7889868_2' || true)"
gzs="$(_compress_if_exists 'SRR7889868' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "647_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "647_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889869"
gz1="$(_compress_if_exists 'SRR7889869_1' || true)"
gz2="$(_compress_if_exists 'SRR7889869_2' || true)"
gzs="$(_compress_if_exists 'SRR7889869' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "647_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "647_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889870"
gz1="$(_compress_if_exists 'SRR7889870_1' || true)"
gz2="$(_compress_if_exists 'SRR7889870_2' || true)"
gzs="$(_compress_if_exists 'SRR7889870' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "761_01.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "761_01.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889871"
gz1="$(_compress_if_exists 'SRR7889871_1' || true)"
gz2="$(_compress_if_exists 'SRR7889871_2' || true)"
gzs="$(_compress_if_exists 'SRR7889871' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "761_02.R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "761_02.R2.fastq.gz"
fi

fasterq-dump --split-files "SRR7889872"
gz1="$(_compress_if_exists 'SRR7889872_1' || true)"
gz2="$(_compress_if_exists 'SRR7889872_2' || true)"
gzs="$(_compress_if_exists 'SRR7889872' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "332_INPUT_GAATTCGT-TATAGCCT_L002_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "332_INPUT_GAATTCGT-TATAGCCT_L002_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889873"
gz1="$(_compress_if_exists 'SRR7889873_1' || true)"
gz2="$(_compress_if_exists 'SRR7889873_2' || true)"
gzs="$(_compress_if_exists 'SRR7889873' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "366_INPUT_ATTACTCG-CCTATCCT_L006_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "366_INPUT_ATTACTCG-CCTATCCT_L006_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889874"
gz1="$(_compress_if_exists 'SRR7889874_1' || true)"
gz2="$(_compress_if_exists 'SRR7889874_2' || true)"
gzs="$(_compress_if_exists 'SRR7889874' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "415_INPUT_ATTCAGAA-ATAGAGGC_L006_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "415_INPUT_ATTCAGAA-ATAGAGGC_L006_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889875"
gz1="$(_compress_if_exists 'SRR7889875_1' || true)"
gz2="$(_compress_if_exists 'SRR7889875_2' || true)"
gzs="$(_compress_if_exists 'SRR7889875' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "417_INPUT_S56_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "417_INPUT_S56_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889876"
gz1="$(_compress_if_exists 'SRR7889876_1' || true)"
gz2="$(_compress_if_exists 'SRR7889876_2' || true)"
gzs="$(_compress_if_exists 'SRR7889876' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "529_INPUT_S16_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "529_INPUT_S16_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889877"
gz1="$(_compress_if_exists 'SRR7889877_1' || true)"
gz2="$(_compress_if_exists 'SRR7889877_2' || true)"
gzs="$(_compress_if_exists 'SRR7889877' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "531_INPUT_S8_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "531_INPUT_S8_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889878"
gz1="$(_compress_if_exists 'SRR7889878_1' || true)"
gz2="$(_compress_if_exists 'SRR7889878_2' || true)"
gzs="$(_compress_if_exists 'SRR7889878' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "567_INPUT_S52_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "567_INPUT_S52_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889879"
gz1="$(_compress_if_exists 'SRR7889879_1' || true)"
gz2="$(_compress_if_exists 'SRR7889879_2' || true)"
gzs="$(_compress_if_exists 'SRR7889879' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "588_INPUT_S52_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "588_INPUT_S52_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889880"
gz1="$(_compress_if_exists 'SRR7889880_1' || true)"
gz2="$(_compress_if_exists 'SRR7889880_2' || true)"
gzs="$(_compress_if_exists 'SRR7889880' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "613_INPUT_S44_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "613_INPUT_S44_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889881"
gz1="$(_compress_if_exists 'SRR7889881_1' || true)"
gz2="$(_compress_if_exists 'SRR7889881_2' || true)"
gzs="$(_compress_if_exists 'SRR7889881' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "626_INPUT_S14_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "626_INPUT_S14_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889882"
gz1="$(_compress_if_exists 'SRR7889882_1' || true)"
gz2="$(_compress_if_exists 'SRR7889882_2' || true)"
gzs="$(_compress_if_exists 'SRR7889882' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "647_INPUT_S24_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "647_INPUT_S24_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889883"
gz1="$(_compress_if_exists 'SRR7889883_1' || true)"
gz2="$(_compress_if_exists 'SRR7889883_2' || true)"
gzs="$(_compress_if_exists 'SRR7889883' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "658_INPUT_S27_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "658_INPUT_S27_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889884"
gz1="$(_compress_if_exists 'SRR7889884_1' || true)"
gz2="$(_compress_if_exists 'SRR7889884_2' || true)"
gzs="$(_compress_if_exists 'SRR7889884' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "679_INPUT_S31_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "679_INPUT_S31_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889885"
gz1="$(_compress_if_exists 'SRR7889885_1' || true)"
gz2="$(_compress_if_exists 'SRR7889885_2' || true)"
gzs="$(_compress_if_exists 'SRR7889885' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "714_INPUT_S34_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "714_INPUT_S34_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7889886"
gz1="$(_compress_if_exists 'SRR7889886_1' || true)"
gz2="$(_compress_if_exists 'SRR7889886_2' || true)"
gzs="$(_compress_if_exists 'SRR7889886' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "761_INPUT_S4_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "761_INPUT_S4_L001_R2_001.unassigned.barcoded.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458659/SRR6458659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458660/SRR6458660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458661/SRR6458661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458662/SRR6458662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458663/SRR6458663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458664/SRR6458664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458665/SRR6458665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458666/SRR6458666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458667/SRR6458667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458668/SRR6458668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458669/SRR6458669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458670/SRR6458670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458671/SRR6458671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458672/SRR6458672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458673/SRR6458673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458674/SRR6458674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458675/SRR6458675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458676/SRR6458676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458677/SRR6458677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458678/SRR6458678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458679/SRR6458679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458680/SRR6458680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458681/SRR6458681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458682/SRR6458682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458683/SRR6458683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458684/SRR6458684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458685/SRR6458685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458686/SRR6458686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458687/SRR6458687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458688/SRR6458688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458689/SRR6458689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458690/SRR6458690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458691/SRR6458691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458692/SRR6458692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458693/SRR6458693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458694/SRR6458694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458695/SRR6458695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458696/SRR6458696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458697/SRR6458697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458698/SRR6458698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458699/SRR6458699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458700/SRR6458700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458701/SRR6458701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458702/SRR6458702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458703/SRR6458703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458704/SRR6458704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458705/SRR6458705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458706/SRR6458706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458707/SRR6458707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458708/SRR6458708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458709/SRR6458709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458710/SRR6458710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458711/SRR6458711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458712/SRR6458712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458713/SRR6458713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458714/SRR6458714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458715/SRR6458715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458716/SRR6458716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458717/SRR6458717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458718/SRR6458718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458719/SRR6458719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458720/SRR6458720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458721/SRR6458721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458722/SRR6458722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458723/SRR6458723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458724/SRR6458724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458725/SRR6458725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458726/SRR6458726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458727/SRR6458727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458728/SRR6458728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458729/SRR6458729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458730/SRR6458730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458731/SRR6458731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458732/SRR6458732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458733/SRR6458733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458734/SRR6458734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458735/SRR6458735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458736/SRR6458736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458737/SRR6458737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458738/SRR6458738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458739/SRR6458739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458740/SRR6458740"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458741/SRR6458741"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458742/SRR6458742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458743/SRR6458743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458744/SRR6458744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458745/SRR6458745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458746/SRR6458746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458747/SRR6458747"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458748/SRR6458748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458749/SRR6458749"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458750/SRR6458750"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458751/SRR6458751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458752/SRR6458752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458753/SRR6458753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458754/SRR6458754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458755/SRR6458755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458756/SRR6458756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458757/SRR6458757"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458758/SRR6458758"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458759/SRR6458759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458760/SRR6458760"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458761/SRR6458761"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458762/SRR6458762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458763/SRR6458763"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889842/SRR7889842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889843/SRR7889843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889844/SRR7889844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889845/SRR7889845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889846/SRR7889846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889847/SRR7889847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889848/SRR7889848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889849/SRR7889849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889850/SRR7889850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889851/SRR7889851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889852/SRR7889852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889853/SRR7889853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889854/SRR7889854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889855/SRR7889855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889856/SRR7889856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889857/SRR7889857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889858/SRR7889858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889859/SRR7889859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889860/SRR7889860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889861/SRR7889861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889862/SRR7889862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889863/SRR7889863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889864/SRR7889864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889865/SRR7889865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889866/SRR7889866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889867/SRR7889867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889868/SRR7889868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889869/SRR7889869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889870/SRR7889870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889871/SRR7889871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889872/SRR7889872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889873/SRR7889873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889874/SRR7889874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889875/SRR7889875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889876/SRR7889876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889877/SRR7889877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889878/SRR7889878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889879/SRR7889879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889880/SRR7889880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889881/SRR7889881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889882/SRR7889882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889883/SRR7889883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889884/SRR7889884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889885/SRR7889885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889886/SRR7889886"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458661/SRR6458661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458662/SRR6458662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458729/SRR6458729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458659/SRR6458659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458660/SRR6458660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458730/SRR6458730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458663/SRR6458663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458664/SRR6458664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458731/SRR6458731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889842/SRR7889842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889843/SRR7889843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889872/SRR7889872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458693/SRR6458693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458694/SRR6458694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458732/SRR6458732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889844/SRR7889844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889845/SRR7889845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889873/SRR7889873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889846/SRR7889846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889847/SRR7889847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889874/SRR7889874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889848/SRR7889848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889849/SRR7889849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889875/SRR7889875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458667/SRR6458667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458668/SRR6458668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458733/SRR6458733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458707/SRR6458707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458708/SRR6458708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458734/SRR6458734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458677/SRR6458677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458678/SRR6458678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458735/SRR6458735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458665/SRR6458665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458666/SRR6458666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458736/SRR6458736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458679/SRR6458679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458680/SRR6458680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458737/SRR6458737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458709/SRR6458709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458710/SRR6458710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458738/SRR6458738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458669/SRR6458669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458670/SRR6458670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458739/SRR6458739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458671/SRR6458671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458672/SRR6458672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458740/SRR6458740"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458673/SRR6458673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458674/SRR6458674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458741/SRR6458741"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458681/SRR6458681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458682/SRR6458682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458742/SRR6458742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458675/SRR6458675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458676/SRR6458676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458743/SRR6458743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458683/SRR6458683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458684/SRR6458684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458744/SRR6458744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458699/SRR6458699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458700/SRR6458700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458745/SRR6458745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458701/SRR6458701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458702/SRR6458702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458746/SRR6458746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889852/SRR7889852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889853/SRR7889853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889876/SRR7889876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889854/SRR7889854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889855/SRR7889855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889877/SRR7889877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458695/SRR6458695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458696/SRR6458696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458747/SRR6458747"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458685/SRR6458685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458686/SRR6458686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458748/SRR6458748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458687/SRR6458687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458688/SRR6458688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458749/SRR6458749"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458689/SRR6458689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458690/SRR6458690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458750/SRR6458750"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458691/SRR6458691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458692/SRR6458692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458751/SRR6458751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458711/SRR6458711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458712/SRR6458712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458752/SRR6458752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889850/SRR7889850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889851/SRR7889851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889878/SRR7889878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889860/SRR7889860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889861/SRR7889861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889879/SRR7889879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458697/SRR6458697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458698/SRR6458698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458753/SRR6458753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458713/SRR6458713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458714/SRR6458714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458754/SRR6458754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458703/SRR6458703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458704/SRR6458704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458755/SRR6458755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889856/SRR7889856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889857/SRR7889857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889880/SRR7889880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458705/SRR6458705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458706/SRR6458706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458756/SRR6458756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889858/SRR7889858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889858/SRR7889858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889859/SRR7889859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889881/SRR7889881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889868/SRR7889868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889869/SRR7889869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889882/SRR7889882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889862/SRR7889862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889863/SRR7889863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889883/SRR7889883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889883/SRR7889883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458721/SRR6458721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458722/SRR6458722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458757/SRR6458757"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458727/SRR6458727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458728/SRR6458728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458758/SRR6458758"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458715/SRR6458715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458716/SRR6458716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458759/SRR6458759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458759/SRR6458759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889864/SRR7889864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889865/SRR7889865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889865/SRR7889865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889884/SRR7889884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458723/SRR6458723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458724/SRR6458724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458760/SRR6458760"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889866/SRR7889866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889867/SRR7889867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889885/SRR7889885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458717/SRR6458717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458718/SRR6458718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458761/SRR6458761"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458719/SRR6458719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458720/SRR6458720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458762/SRR6458762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458725/SRR6458725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458726/SRR6458726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458763/SRR6458763"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889870/SRR7889870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889871/SRR7889871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889871/SRR7889871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889886/SRR7889886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458762/SRR6458762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889847/SRR7889847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889875/SRR7889875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7889879/SRR7889879"

echo "Download complete. Files saved to $OUTDIR"