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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

fasterq-dump --split-files "SRR6458914"
gz1="$(_compress_if_exists 'SRR6458914_1' || true)"
gz2="$(_compress_if_exists 'SRR6458914_2' || true)"
gzs="$(_compress_if_exists 'SRR6458914' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "PTBP1-202-INPUT_S6_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "PTBP1-202-INPUT_S6_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458915"
gz1="$(_compress_if_exists 'SRR6458915_1' || true)"
gz2="$(_compress_if_exists 'SRR6458915_2' || true)"
gzs="$(_compress_if_exists 'SRR6458915' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "214_INPUT_GAATTCGT-ATAGAGGC_L003_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "214_INPUT_GAATTCGT-ATAGAGGC_L003_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458916"
gz1="$(_compress_if_exists 'SRR6458916_1' || true)"
gz2="$(_compress_if_exists 'SRR6458916_2' || true)"
gzs="$(_compress_if_exists 'SRR6458916' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "219_INPUT_GAATTCGT-AGGCGAAG_L003_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "219_INPUT_GAATTCGT-AGGCGAAG_L003_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458917"
gz1="$(_compress_if_exists 'SRR6458917_1' || true)"
gz2="$(_compress_if_exists 'SRR6458917_2' || true)"
gzs="$(_compress_if_exists 'SRR6458917' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "225_INPUT_TCCGGAGA-TAATCTTA_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "225_INPUT_TCCGGAGA-TAATCTTA_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458918"
gz1="$(_compress_if_exists 'SRR6458918_1' || true)"
gz2="$(_compress_if_exists 'SRR6458918_2' || true)"
gzs="$(_compress_if_exists 'SRR6458918' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "232_INPUT_GAATTCGT-AGGCGAAG_L002_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "232_INPUT_GAATTCGT-AGGCGAAG_L002_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458919"
gz1="$(_compress_if_exists 'SRR6458919_1' || true)"
gz2="$(_compress_if_exists 'SRR6458919_2' || true)"
gzs="$(_compress_if_exists 'SRR6458919' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "254_INPUT_GAGATTCC-TAATCTTA_L006_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "254_INPUT_GAGATTCC-TAATCTTA_L006_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458920"
gz1="$(_compress_if_exists 'SRR6458920_1' || true)"
gz2="$(_compress_if_exists 'SRR6458920_2' || true)"
gzs="$(_compress_if_exists 'SRR6458920' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "255_INPUT_ATTACTCG-TATAGCCT_L004_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "255_INPUT_ATTACTCG-TATAGCCT_L004_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458921"
gz1="$(_compress_if_exists 'SRR6458921_1' || true)"
gz2="$(_compress_if_exists 'SRR6458921_2' || true)"
gzs="$(_compress_if_exists 'SRR6458921' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "290_INPUT_ATTACTCG-TATAGCCT_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "290_INPUT_ATTACTCG-TATAGCCT_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458922"
gz1="$(_compress_if_exists 'SRR6458922_1' || true)"
gz2="$(_compress_if_exists 'SRR6458922_2' || true)"
gzs="$(_compress_if_exists 'SRR6458922' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "300_INPUT_CGCTCATT-TAATCTTA_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "300_INPUT_CGCTCATT-TAATCTTA_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458923"
gz1="$(_compress_if_exists 'SRR6458923_1' || true)"
gz2="$(_compress_if_exists 'SRR6458923_2' || true)"
gzs="$(_compress_if_exists 'SRR6458923' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "317_INPUT_GAGATTCC-ATAGAGGC_L002_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "317_INPUT_GAGATTCC-ATAGAGGC_L002_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458924"
gz1="$(_compress_if_exists 'SRR6458924_1' || true)"
gz2="$(_compress_if_exists 'SRR6458924_2' || true)"
gzs="$(_compress_if_exists 'SRR6458924' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "323_INPUT_TCCGGAGA-ATAGAGGC_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "323_INPUT_TCCGGAGA-ATAGAGGC_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458925"
gz1="$(_compress_if_exists 'SRR6458925_1' || true)"
gz2="$(_compress_if_exists 'SRR6458925_2' || true)"
gzs="$(_compress_if_exists 'SRR6458925' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "327_INPUT_TCCGGAGA-TATAGCCT_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "327_INPUT_TCCGGAGA-TATAGCCT_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458926"
gz1="$(_compress_if_exists 'SRR6458926_1' || true)"
gz2="$(_compress_if_exists 'SRR6458926_2' || true)"
gzs="$(_compress_if_exists 'SRR6458926' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "328_INPUT_GAGATTCC-TATAGCCT_L002_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "328_INPUT_GAGATTCC-TATAGCCT_L002_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458927"
gz1="$(_compress_if_exists 'SRR6458927_1' || true)"
gz2="$(_compress_if_exists 'SRR6458927_2' || true)"
gzs="$(_compress_if_exists 'SRR6458927' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "333_INPUT_CGCTCATT-CCTATCCT_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "333_INPUT_CGCTCATT-CCTATCCT_L001_R2.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458929"
gz1="$(_compress_if_exists 'SRR6458929_1' || true)"
gz2="$(_compress_if_exists 'SRR6458929_2' || true)"
gzs="$(_compress_if_exists 'SRR6458929' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "356_INPUT_TCCGGAGA-GGCTCTGA_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "356_INPUT_TCCGGAGA-GGCTCTGA_L001_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458930"
gz1="$(_compress_if_exists 'SRR6458930_1' || true)"
gz2="$(_compress_if_exists 'SRR6458930_2' || true)"
gzs="$(_compress_if_exists 'SRR6458930' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "363_INPUT_4000_S18_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "363_INPUT_4000_S18_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458931"
gz1="$(_compress_if_exists 'SRR6458931_1' || true)"
gz2="$(_compress_if_exists 'SRR6458931_2' || true)"
gzs="$(_compress_if_exists 'SRR6458931' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "386_INPUT_4000_S19_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "386_INPUT_4000_S19_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458932"
gz1="$(_compress_if_exists 'SRR6458932_1' || true)"
gz2="$(_compress_if_exists 'SRR6458932_2' || true)"
gzs="$(_compress_if_exists 'SRR6458932' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "396_INPUT_ATTACTCG-CCTATCCT_L004_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "396_INPUT_ATTACTCG-CCTATCCT_L004_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458933"
gz1="$(_compress_if_exists 'SRR6458933_1' || true)"
gz2="$(_compress_if_exists 'SRR6458933_2' || true)"
gzs="$(_compress_if_exists 'SRR6458933' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "397_INPUT_ATTACTCG-AGGCGAAG_L006_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "397_INPUT_ATTACTCG-AGGCGAAG_L006_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458934"
gz1="$(_compress_if_exists 'SRR6458934_1' || true)"
gz2="$(_compress_if_exists 'SRR6458934_2' || true)"
gzs="$(_compress_if_exists 'SRR6458934' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "403_INPUT_4000_S80_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "403_INPUT_4000_S80_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458936"
gz1="$(_compress_if_exists 'SRR6458936_1' || true)"
gz2="$(_compress_if_exists 'SRR6458936_2' || true)"
gzs="$(_compress_if_exists 'SRR6458936' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "429_INPUT_GAATTCGT-ATAGAGGC_L004_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "429_INPUT_GAATTCGT-ATAGAGGC_L004_R2.unassigned.barcoded.fastq.gz"
fi

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

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

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

fasterq-dump --split-files "SRR6458940"
gz1="$(_compress_if_exists 'SRR6458940_1' || true)"
gz2="$(_compress_if_exists 'SRR6458940_2' || true)"
gzs="$(_compress_if_exists 'SRR6458940' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "474_INPUT_S43_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "474_INPUT_S43_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458941"
gz1="$(_compress_if_exists 'SRR6458941_1' || true)"
gz2="$(_compress_if_exists 'SRR6458941_2' || true)"
gzs="$(_compress_if_exists 'SRR6458941' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "479_INPUT_S20_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "479_INPUT_S20_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458942"
gz1="$(_compress_if_exists 'SRR6458942_1' || true)"
gz2="$(_compress_if_exists 'SRR6458942_2' || true)"
gzs="$(_compress_if_exists 'SRR6458942' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "486_INPUT_S44_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "486_INPUT_S44_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

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

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

fasterq-dump --split-files "SRR6458945"
gz1="$(_compress_if_exists 'SRR6458945_1' || true)"
gz2="$(_compress_if_exists 'SRR6458945_2' || true)"
gzs="$(_compress_if_exists 'SRR6458945' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "542_INPUT_S33_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "542_INPUT_S33_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458946"
gz1="$(_compress_if_exists 'SRR6458946_1' || true)"
gz2="$(_compress_if_exists 'SRR6458946_2' || true)"
gzs="$(_compress_if_exists 'SRR6458946' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "554_INPUT_S59_L007_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "554_INPUT_S59_L007_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458947"
gz1="$(_compress_if_exists 'SRR6458947_1' || true)"
gz2="$(_compress_if_exists 'SRR6458947_2' || true)"
gzs="$(_compress_if_exists 'SRR6458947' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "557_INPUT_S45_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "557_INPUT_S45_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458948"
gz1="$(_compress_if_exists 'SRR6458948_1' || true)"
gz2="$(_compress_if_exists 'SRR6458948_2' || true)"
gzs="$(_compress_if_exists 'SRR6458948' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "573_INPUT_S50_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "573_INPUT_S50_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458949"
gz1="$(_compress_if_exists 'SRR6458949_1' || true)"
gz2="$(_compress_if_exists 'SRR6458949_2' || true)"
gzs="$(_compress_if_exists 'SRR6458949' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "579_INPUT_S50_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "579_INPUT_S50_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

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

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

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

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

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

fasterq-dump --split-files "SRR6458955"
gz1="$(_compress_if_exists 'SRR6458955_1' || true)"
gz2="$(_compress_if_exists 'SRR6458955_2' || true)"
gzs="$(_compress_if_exists 'SRR6458955' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "599_INPUT_S8_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "599_INPUT_S8_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

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

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

fasterq-dump --split-files "SRR6458958"
gz1="$(_compress_if_exists 'SRR6458958_1' || true)"
gz2="$(_compress_if_exists 'SRR6458958_2' || true)"
gzs="$(_compress_if_exists 'SRR6458958' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "627_INPUT_S10_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "627_INPUT_S10_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458959"
gz1="$(_compress_if_exists 'SRR6458959_1' || true)"
gz2="$(_compress_if_exists 'SRR6458959_2' || true)"
gzs="$(_compress_if_exists 'SRR6458959' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "630_INPUT_S24_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "630_INPUT_S24_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458960"
gz1="$(_compress_if_exists 'SRR6458960_1' || true)"
gz2="$(_compress_if_exists 'SRR6458960_2' || true)"
gzs="$(_compress_if_exists 'SRR6458960' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "634_INPUT_S4_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "634_INPUT_S4_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458961"
gz1="$(_compress_if_exists 'SRR6458961_1' || true)"
gz2="$(_compress_if_exists 'SRR6458961_2' || true)"
gzs="$(_compress_if_exists 'SRR6458961' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "635_INPUT_S6_L002_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "635_INPUT_S6_L002_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458962"
gz1="$(_compress_if_exists 'SRR6458962_1' || true)"
gz2="$(_compress_if_exists 'SRR6458962_2' || true)"
gzs="$(_compress_if_exists 'SRR6458962' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "636_INPUT_S10_L001_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "636_INPUT_S10_L001_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458963"
gz1="$(_compress_if_exists 'SRR6458963_1' || true)"
gz2="$(_compress_if_exists 'SRR6458963_2' || true)"
gzs="$(_compress_if_exists 'SRR6458963' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "637_INPUT_S109_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "637_INPUT_S109_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458965"
gz1="$(_compress_if_exists 'SRR6458965_1' || true)"
gz2="$(_compress_if_exists 'SRR6458965_2' || true)"
gzs="$(_compress_if_exists 'SRR6458965' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "657_INPUT_S29_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "657_INPUT_S29_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458966"
gz1="$(_compress_if_exists 'SRR6458966_1' || true)"
gz2="$(_compress_if_exists 'SRR6458966_2' || true)"
gzs="$(_compress_if_exists 'SRR6458966' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "666_INPUT_S41_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "666_INPUT_S41_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458968"
gz1="$(_compress_if_exists 'SRR6458968_1' || true)"
gz2="$(_compress_if_exists 'SRR6458968_2' || true)"
gzs="$(_compress_if_exists 'SRR6458968' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "673_INPUT_S37_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "673_INPUT_S37_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

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

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

fasterq-dump --split-files "SRR6458972"
gz1="$(_compress_if_exists 'SRR6458972_1' || true)"
gz2="$(_compress_if_exists 'SRR6458972_2' || true)"
gzs="$(_compress_if_exists 'SRR6458972' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "691_INPUT_S35_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "691_INPUT_S35_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458973"
gz1="$(_compress_if_exists 'SRR6458973_1' || true)"
gz2="$(_compress_if_exists 'SRR6458973_2' || true)"
gzs="$(_compress_if_exists 'SRR6458973' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "701_INPUT_S5_L003_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "701_INPUT_S5_L003_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458974"
gz1="$(_compress_if_exists 'SRR6458974_1' || true)"
gz2="$(_compress_if_exists 'SRR6458974_2' || true)"
gzs="$(_compress_if_exists 'SRR6458974' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "704_INPUT_S85_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "704_INPUT_S85_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458975"
gz1="$(_compress_if_exists 'SRR6458975_1' || true)"
gz2="$(_compress_if_exists 'SRR6458975_2' || true)"
gzs="$(_compress_if_exists 'SRR6458975' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "710_INPUT_S53_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "710_INPUT_S53_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458976"
gz1="$(_compress_if_exists 'SRR6458976_1' || true)"
gz2="$(_compress_if_exists 'SRR6458976_2' || true)"
gzs="$(_compress_if_exists 'SRR6458976' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "715_INPUT_S69_L007_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "715_INPUT_S69_L007_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458977"
gz1="$(_compress_if_exists 'SRR6458977_1' || true)"
gz2="$(_compress_if_exists 'SRR6458977_2' || true)"
gzs="$(_compress_if_exists 'SRR6458977' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "718_INPUT_S71_L007_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "718_INPUT_S71_L007_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458978"
gz1="$(_compress_if_exists 'SRR6458978_1' || true)"
gz2="$(_compress_if_exists 'SRR6458978_2' || true)"
gzs="$(_compress_if_exists 'SRR6458978' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "720_INPUT_S75_L007_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "720_INPUT_S75_L007_R2_001.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458980"
gz1="$(_compress_if_exists 'SRR6458980_1' || true)"
gz2="$(_compress_if_exists 'SRR6458980_2' || true)"
gzs="$(_compress_if_exists 'SRR6458980' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "727_INPUT_S63_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "727_INPUT_S63_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458981"
gz1="$(_compress_if_exists 'SRR6458981_1' || true)"
gz2="$(_compress_if_exists 'SRR6458981_2' || true)"
gzs="$(_compress_if_exists 'SRR6458981' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "728_INPUT_S61_L006_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "728_INPUT_S61_L006_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458982"
gz1="$(_compress_if_exists 'SRR6458982_1' || true)"
gz2="$(_compress_if_exists 'SRR6458982_2' || true)"
gzs="$(_compress_if_exists 'SRR6458982' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "749_INPUT_S89_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "749_INPUT_S89_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458983"
gz1="$(_compress_if_exists 'SRR6458983_1' || true)"
gz2="$(_compress_if_exists 'SRR6458983_2' || true)"
gzs="$(_compress_if_exists 'SRR6458983' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "751_INPUT_S36_L004_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "751_INPUT_S36_L004_R2_001.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458985"
gz1="$(_compress_if_exists 'SRR6458985_1' || true)"
gz2="$(_compress_if_exists 'SRR6458985_2' || true)"
gzs="$(_compress_if_exists 'SRR6458985' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "757_INPUT_S50_L005_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "757_INPUT_S50_L005_R2_001.unassigned.barcoded.fastq.gz"
fi

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

fasterq-dump --split-files "SRR6458987"
gz1="$(_compress_if_exists 'SRR6458987_1' || true)"
gz2="$(_compress_if_exists 'SRR6458987_2' || true)"
gzs="$(_compress_if_exists 'SRR6458987' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "759_INPUT_S118_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "759_INPUT_S118_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR6458988"
gz1="$(_compress_if_exists 'SRR6458988_1' || true)"
gz2="$(_compress_if_exists 'SRR6458988_2' || true)"
gzs="$(_compress_if_exists 'SRR6458988' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "760_INPUT_S114_L008_R1_001.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "760_INPUT_S114_L008_R2_001.unassigned.barcoded.fastq.gz"
fi

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

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

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

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

fasterq-dump --split-files "SRR7883046"
gz1="$(_compress_if_exists 'SRR7883046_1' || true)"
gz2="$(_compress_if_exists 'SRR7883046_2' || true)"
gzs="$(_compress_if_exists 'SRR7883046' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "246_INPUT_GAGATTCC-GGCTCTGA_L003_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "246_INPUT_GAGATTCC-GGCTCTGA_L003_R2.unassigned.barcoded.fastq.gz"
fi

fasterq-dump --split-files "SRR7883047"
gz1="$(_compress_if_exists 'SRR7883047_1' || true)"
gz2="$(_compress_if_exists 'SRR7883047_2' || true)"
gzs="$(_compress_if_exists 'SRR7883047' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "280_INPUT_ATTACTCG-TATAGCCT_L001_R1.unassigned.barcoded.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "280_INPUT_ATTACTCG-TATAGCCT_L001_R2.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/SRR6458764/SRR6458764"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458765/SRR6458765"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458766/SRR6458766"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458767/SRR6458767"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458768/SRR6458768"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458769/SRR6458769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458770/SRR6458770"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458771/SRR6458771"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458772/SRR6458772"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458773/SRR6458773"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458774/SRR6458774"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458775/SRR6458775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458776/SRR6458776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458777/SRR6458777"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458778/SRR6458778"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458779/SRR6458779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458780/SRR6458780"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458781/SRR6458781"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458782/SRR6458782"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458783/SRR6458783"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458784/SRR6458784"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458785/SRR6458785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458786/SRR6458786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458787/SRR6458787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458788/SRR6458788"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458789/SRR6458789"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458790/SRR6458790"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458791/SRR6458791"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458792/SRR6458792"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458793/SRR6458793"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458794/SRR6458794"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458795/SRR6458795"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458796/SRR6458796"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458797/SRR6458797"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458798/SRR6458798"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458799/SRR6458799"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458800/SRR6458800"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458801/SRR6458801"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458802/SRR6458802"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458803/SRR6458803"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458804/SRR6458804"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458805/SRR6458805"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458806/SRR6458806"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458807/SRR6458807"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458808/SRR6458808"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458809/SRR6458809"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458810/SRR6458810"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458811/SRR6458811"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458812/SRR6458812"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458813/SRR6458813"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458814/SRR6458814"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458815/SRR6458815"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458816/SRR6458816"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458817/SRR6458817"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458818/SRR6458818"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458819/SRR6458819"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458820/SRR6458820"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458821/SRR6458821"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458822/SRR6458822"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458823/SRR6458823"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458824/SRR6458824"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458825/SRR6458825"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458826/SRR6458826"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458827/SRR6458827"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458828/SRR6458828"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458829/SRR6458829"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458830/SRR6458830"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458831/SRR6458831"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458832/SRR6458832"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458833/SRR6458833"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458834/SRR6458834"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458835/SRR6458835"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458836/SRR6458836"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458837/SRR6458837"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458838/SRR6458838"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458839/SRR6458839"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458840/SRR6458840"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458841/SRR6458841"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458842/SRR6458842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458843/SRR6458843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458844/SRR6458844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458845/SRR6458845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458846/SRR6458846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458847/SRR6458847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458848/SRR6458848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458849/SRR6458849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458850/SRR6458850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458851/SRR6458851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458852/SRR6458852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458853/SRR6458853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458854/SRR6458854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458855/SRR6458855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458856/SRR6458856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458857/SRR6458857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458858/SRR6458858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458859/SRR6458859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458860/SRR6458860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458861/SRR6458861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458862/SRR6458862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458863/SRR6458863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458864/SRR6458864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458865/SRR6458865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458866/SRR6458866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458867/SRR6458867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458868/SRR6458868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458869/SRR6458869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458870/SRR6458870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458871/SRR6458871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458872/SRR6458872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458873/SRR6458873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458874/SRR6458874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458875/SRR6458875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458876/SRR6458876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458877/SRR6458877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458878/SRR6458878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458879/SRR6458879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458880/SRR6458880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458881/SRR6458881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458882/SRR6458882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458883/SRR6458883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458884/SRR6458884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458885/SRR6458885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458886/SRR6458886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458887/SRR6458887"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458888/SRR6458888"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458889/SRR6458889"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458890/SRR6458890"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458891/SRR6458891"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458892/SRR6458892"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458893/SRR6458893"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458894/SRR6458894"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458895/SRR6458895"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458898/SRR6458898"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458899/SRR6458899"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458900/SRR6458900"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458901/SRR6458901"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458902/SRR6458902"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458903/SRR6458903"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458904/SRR6458904"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458905/SRR6458905"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458906/SRR6458906"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458907/SRR6458907"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458908/SRR6458908"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458909/SRR6458909"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458910/SRR6458910"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458911/SRR6458911"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458912/SRR6458912"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458913/SRR6458913"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458914/SRR6458914"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458915/SRR6458915"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458916/SRR6458916"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458917/SRR6458917"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458918/SRR6458918"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458919/SRR6458919"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458920/SRR6458920"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458921/SRR6458921"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458922/SRR6458922"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458923/SRR6458923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458924/SRR6458924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458925/SRR6458925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458926/SRR6458926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458927/SRR6458927"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458928/SRR6458928"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458929/SRR6458929"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458930/SRR6458930"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458931/SRR6458931"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458932/SRR6458932"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458933/SRR6458933"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458934/SRR6458934"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458935/SRR6458935"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458936/SRR6458936"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458937/SRR6458937"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458938/SRR6458938"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458939/SRR6458939"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458940/SRR6458940"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458941/SRR6458941"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458942/SRR6458942"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458943/SRR6458943"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458944/SRR6458944"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458945/SRR6458945"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458946/SRR6458946"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458947/SRR6458947"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458948/SRR6458948"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458949/SRR6458949"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458950/SRR6458950"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458951/SRR6458951"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458952/SRR6458952"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458953/SRR6458953"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458954/SRR6458954"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458955/SRR6458955"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458956/SRR6458956"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458957/SRR6458957"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458958/SRR6458958"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458959/SRR6458959"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458960/SRR6458960"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458961/SRR6458961"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458962/SRR6458962"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458963/SRR6458963"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458964/SRR6458964"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458965/SRR6458965"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458966/SRR6458966"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458967/SRR6458967"
curl -L -O -C - "https://sra-pub-src-1.s3.amazonaws.com/SRR6458968/673_INPUT_S37_L003_R1_001.unassigned.barcoded.fastq.gz.1"
curl -L -O -C - "https://sra-pub-src-1.s3.amazonaws.com/SRR6458970/687_INPUT_S16_L002_R1_001.unassigned.barcoded.fastq.gz.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458971/SRR6458971"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458972/SRR6458972"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458973/SRR6458973"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458974/SRR6458974"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458975/SRR6458975"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458976/SRR6458976"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458977/SRR6458977"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458978/SRR6458978"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458979/SRR6458979"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458980/SRR6458980"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458981/SRR6458981"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458982/SRR6458982"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458983/SRR6458983"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458984/SRR6458984"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458985/SRR6458985"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458986/SRR6458986"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458987/SRR6458987"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458988/SRR6458988"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883042/SRR7883042"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883043/SRR7883043"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883044/SRR7883044"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883045/SRR7883045"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883046/SRR7883046"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883047/SRR7883047"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458772/SRR6458772"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458773/SRR6458773"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458771/SRR6458771"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458915/SRR6458915"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458768/SRR6458768"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458769/SRR6458769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458916/SRR6458916"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458764/SRR6458764"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458765/SRR6458765"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458917/SRR6458917"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458766/SRR6458766"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458767/SRR6458767"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458918/SRR6458918"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458770/SRR6458770"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883044/SRR7883044"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883045/SRR7883045"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883046/SRR7883046"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458776/SRR6458776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458777/SRR6458777"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458919/SRR6458919"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458775/SRR6458775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458774/SRR6458774"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458920/SRR6458920"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883042/SRR7883042"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883043/SRR7883043"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7883047/SRR7883047"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458786/SRR6458786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458787/SRR6458787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458921/SRR6458921"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458788/SRR6458788"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458789/SRR6458789"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458922/SRR6458922"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458778/SRR6458778"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458779/SRR6458779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458923/SRR6458923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458812/SRR6458812"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458813/SRR6458813"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458924/SRR6458924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458780/SRR6458780"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458781/SRR6458781"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458925/SRR6458925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458782/SRR6458782"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458783/SRR6458783"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458926/SRR6458926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458814/SRR6458814"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458815/SRR6458815"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458927/SRR6458927"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458798/SRR6458798"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458799/SRR6458799"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458928/SRR6458928"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458784/SRR6458784"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458785/SRR6458785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458929/SRR6458929"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458836/SRR6458836"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458837/SRR6458837"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458930/SRR6458930"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458838/SRR6458838"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458839/SRR6458839"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458931/SRR6458931"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458792/SRR6458792"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458793/SRR6458793"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458932/SRR6458932"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458790/SRR6458790"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458791/SRR6458791"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458933/SRR6458933"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458842/SRR6458842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458843/SRR6458843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458934/SRR6458934"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458796/SRR6458796"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458797/SRR6458797"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458935/SRR6458935"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458794/SRR6458794"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458795/SRR6458795"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458936/SRR6458936"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458800/SRR6458800"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458801/SRR6458801"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458937/SRR6458937"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458802/SRR6458802"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458803/SRR6458803"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458938/SRR6458938"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458846/SRR6458846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458847/SRR6458847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458939/SRR6458939"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458848/SRR6458848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458849/SRR6458849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458940/SRR6458940"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458804/SRR6458804"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458805/SRR6458805"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458941/SRR6458941"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458840/SRR6458840"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458841/SRR6458841"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458942/SRR6458942"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458828/SRR6458828"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458829/SRR6458829"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458943/SRR6458943"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458876/SRR6458876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458877/SRR6458877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458944/SRR6458944"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458806/SRR6458806"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458807/SRR6458807"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458945/SRR6458945"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458808/SRR6458808"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458809/SRR6458809"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458946/SRR6458946"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458810/SRR6458810"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458811/SRR6458811"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458947/SRR6458947"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458850/SRR6458850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458851/SRR6458851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458948/SRR6458948"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458830/SRR6458830"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458831/SRR6458831"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458949/SRR6458949"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458816/SRR6458816"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458817/SRR6458817"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458950/SRR6458950"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458818/SRR6458818"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458819/SRR6458819"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458951/SRR6458951"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458820/SRR6458820"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458821/SRR6458821"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458952/SRR6458952"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458822/SRR6458822"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458823/SRR6458823"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458953/SRR6458953"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458858/SRR6458858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458859/SRR6458859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458954/SRR6458954"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458860/SRR6458860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458861/SRR6458861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458955/SRR6458955"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458832/SRR6458832"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458833/SRR6458833"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458956/SRR6458956"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458824/SRR6458824"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458825/SRR6458825"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458957/SRR6458957"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458826/SRR6458826"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458827/SRR6458827"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458958/SRR6458958"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458834/SRR6458834"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458835/SRR6458835"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458835/SRR6458835"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458959/SRR6458959"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458862/SRR6458862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458863/SRR6458863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458960/SRR6458960"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458864/SRR6458864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458865/SRR6458865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458961/SRR6458961"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458866/SRR6458866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458867/SRR6458867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458962/SRR6458962"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458844/SRR6458844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458845/SRR6458845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458963/SRR6458963"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458912/SRR6458912"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458913/SRR6458913"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458964/SRR6458964"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458852/SRR6458852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458853/SRR6458853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458965/SRR6458965"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458878/SRR6458878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458879/SRR6458879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458966/SRR6458966"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458880/SRR6458880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458881/SRR6458881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458967/SRR6458967"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458854/SRR6458854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458855/SRR6458855"
curl -L -O -C - "https://sra-pub-src-1.s3.amazonaws.com/SRR6458968/673_INPUT_S37_L003_R1_001.unassigned.barcoded.fastq.gz.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458882/SRR6458882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458883/SRR6458883"
curl -L -O -C - "https://sra-pub-src-1.s3.amazonaws.com/SRR6458970/687_INPUT_S16_L002_R1_001.unassigned.barcoded.fastq.gz.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458884/SRR6458884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458885/SRR6458885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458971/SRR6458971"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458856/SRR6458856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458857/SRR6458857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458972/SRR6458972"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458886/SRR6458886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458887/SRR6458887"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458973/SRR6458973"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458868/SRR6458868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458869/SRR6458869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458974/SRR6458974"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458888/SRR6458888"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458889/SRR6458889"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458975/SRR6458975"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458870/SRR6458870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458871/SRR6458871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458976/SRR6458976"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458872/SRR6458872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458873/SRR6458873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458977/SRR6458977"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458874/SRR6458874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458875/SRR6458875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458978/SRR6458978"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458898/SRR6458898"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458899/SRR6458899"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458979/SRR6458979"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458890/SRR6458890"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458891/SRR6458891"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458980/SRR6458980"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458892/SRR6458892"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458893/SRR6458893"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458981/SRR6458981"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458894/SRR6458894"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458895/SRR6458895"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458982/SRR6458982"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458900/SRR6458900"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458901/SRR6458901"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458983/SRR6458983"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458902/SRR6458902"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458903/SRR6458903"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458984/SRR6458984"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458904/SRR6458904"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458905/SRR6458905"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458985/SRR6458985"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458906/SRR6458906"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458907/SRR6458907"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458986/SRR6458986"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458908/SRR6458908"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458909/SRR6458909"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458987/SRR6458987"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458910/SRR6458910"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458911/SRR6458911"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458988/SRR6458988"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR6458914/SRR6458914"

echo "Download complete. Files saved to $OUTDIR"