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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_Bcell_cluster.csv.gz" -O "GSE125527_Bcell_cluster.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_RAW.tar" -O "GSE125527_RAW.tar"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_Tcell_cluster.csv.gz" -O "GSE125527_Tcell_cluster.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_UMI_cell_table_sparse.csv.gz" -O "GSE125527_UMI_cell_table_sparse.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_cell_id_colnames.csv.gz" -O "GSE125527_cell_id_colnames.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_cell_metadata.csv.gz" -O "GSE125527_cell_metadata.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_gene_id_rownames.csv.gz" -O "GSE125527_gene_id_rownames.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE125nnn/GSE125527/suppl/GSE125527_oldPatientId-newPatientId.csv.gz" -O "GSE125527_oldPatientId-newPatientId.csv.gz"

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

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

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

fasterq-dump --split-files "SRR8478398"
gz1="$(_compress_if_exists 'SRR8478398_1' || true)"
gz2="$(_compress_if_exists 'SRR8478398_2' || true)"
gzs="$(_compress_if_exists 'SRR8478398' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumSC_S54_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumSC_S54_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478399"
gz1="$(_compress_if_exists 'SRR8478399_1' || true)"
gz2="$(_compress_if_exists 'SRR8478399_2' || true)"
gzs="$(_compress_if_exists 'SRR8478399' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumSC_S55_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumSC_S55_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478400"
gz1="$(_compress_if_exists 'SRR8478400_1' || true)"
gz2="$(_compress_if_exists 'SRR8478400_2' || true)"
gzs="$(_compress_if_exists 'SRR8478400' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumSC_S56_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumSC_S56_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478401"
gz1="$(_compress_if_exists 'SRR8478401_1' || true)"
gz2="$(_compress_if_exists 'SRR8478401_2' || true)"
gzs="$(_compress_if_exists 'SRR8478401' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumSC_S61_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumSC_S61_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478402"
gz1="$(_compress_if_exists 'SRR8478402_1' || true)"
gz2="$(_compress_if_exists 'SRR8478402_2' || true)"
gzs="$(_compress_if_exists 'SRR8478402' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumSC_S62_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumSC_S62_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478403"
gz1="$(_compress_if_exists 'SRR8478403_1' || true)"
gz2="$(_compress_if_exists 'SRR8478403_2' || true)"
gzs="$(_compress_if_exists 'SRR8478403' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumSC_S63_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumSC_S63_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478404"
gz1="$(_compress_if_exists 'SRR8478404_1' || true)"
gz2="$(_compress_if_exists 'SRR8478404_2' || true)"
gzs="$(_compress_if_exists 'SRR8478404' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumSC_S64_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumSC_S64_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478405"
gz1="$(_compress_if_exists 'SRR8478405_1' || true)"
gz2="$(_compress_if_exists 'SRR8478405_2' || true)"
gzs="$(_compress_if_exists 'SRR8478405' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_R_control_16_rectum_S5_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_R_control_16_rectum_S5_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478406"
gz1="$(_compress_if_exists 'SRR8478406_1' || true)"
gz2="$(_compress_if_exists 'SRR8478406_2' || true)"
gzs="$(_compress_if_exists 'SRR8478406' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_R_control_16_rectum_S6_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_R_control_16_rectum_S6_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478407"
gz1="$(_compress_if_exists 'SRR8478407_1' || true)"
gz2="$(_compress_if_exists 'SRR8478407_2' || true)"
gzs="$(_compress_if_exists 'SRR8478407' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_R_control_16_rectum_S7_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_R_control_16_rectum_S7_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478408"
gz1="$(_compress_if_exists 'SRR8478408_1' || true)"
gz2="$(_compress_if_exists 'SRR8478408_2' || true)"
gzs="$(_compress_if_exists 'SRR8478408' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_R_control_16_rectum_S8_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_R_control_16_rectum_S8_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478409"
gz1="$(_compress_if_exists 'SRR8478409_1' || true)"
gz2="$(_compress_if_exists 'SRR8478409_2' || true)"
gzs="$(_compress_if_exists 'SRR8478409' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_rectum_ulcerative_4_rectum_S45_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_rectum_ulcerative_4_rectum_S45_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478410"
gz1="$(_compress_if_exists 'SRR8478410_1' || true)"
gz2="$(_compress_if_exists 'SRR8478410_2' || true)"
gzs="$(_compress_if_exists 'SRR8478410' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_rectum_ulcerative_4_rectum_S46_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_rectum_ulcerative_4_rectum_S46_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478411"
gz1="$(_compress_if_exists 'SRR8478411_1' || true)"
gz2="$(_compress_if_exists 'SRR8478411_2' || true)"
gzs="$(_compress_if_exists 'SRR8478411' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_rectum_ulcerative_4_rectum_S47_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_rectum_ulcerative_4_rectum_S47_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478412"
gz1="$(_compress_if_exists 'SRR8478412_1' || true)"
gz2="$(_compress_if_exists 'SRR8478412_2' || true)"
gzs="$(_compress_if_exists 'SRR8478412' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_rectum_ulcerative_4_rectum_S48_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_rectum_ulcerative_4_rectum_S48_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478413"
gz1="$(_compress_if_exists 'SRR8478413_1' || true)"
gz2="$(_compress_if_exists 'SRR8478413_2' || true)"
gzs="$(_compress_if_exists 'SRR8478413' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_rectum_ulcerative_colitis_rectum_S53_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_rectum_ulcerative_colitis_rectum_S53_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478414"
gz1="$(_compress_if_exists 'SRR8478414_1' || true)"
gz2="$(_compress_if_exists 'SRR8478414_2' || true)"
gzs="$(_compress_if_exists 'SRR8478414' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_rectum_ulcerative_colitis_rectum_S54_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_rectum_ulcerative_colitis_rectum_S54_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478415"
gz1="$(_compress_if_exists 'SRR8478415_1' || true)"
gz2="$(_compress_if_exists 'SRR8478415_2' || true)"
gzs="$(_compress_if_exists 'SRR8478415' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_rectum_ulcerative_colitis_rectum_S55_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_rectum_ulcerative_colitis_rectum_S55_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478416"
gz1="$(_compress_if_exists 'SRR8478416_1' || true)"
gz2="$(_compress_if_exists 'SRR8478416_2' || true)"
gzs="$(_compress_if_exists 'SRR8478416' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_rectum_ulcerative_colitis_rectum_S56_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_rectum_ulcerative_colitis_rectum_S56_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478417"
gz1="$(_compress_if_exists 'SRR8478417_1' || true)"
gz2="$(_compress_if_exists 'SRR8478417_2' || true)"
gzs="$(_compress_if_exists 'SRR8478417' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_rectum_S53_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_rectum_S53_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478418"
gz1="$(_compress_if_exists 'SRR8478418_1' || true)"
gz2="$(_compress_if_exists 'SRR8478418_2' || true)"
gzs="$(_compress_if_exists 'SRR8478418' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_rectum_S54_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_rectum_S54_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478419"
gz1="$(_compress_if_exists 'SRR8478419_1' || true)"
gz2="$(_compress_if_exists 'SRR8478419_2' || true)"
gzs="$(_compress_if_exists 'SRR8478419' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_rectum_S55_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_rectum_S55_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478420"
gz1="$(_compress_if_exists 'SRR8478420_1' || true)"
gz2="$(_compress_if_exists 'SRR8478420_2' || true)"
gzs="$(_compress_if_exists 'SRR8478420' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_rectum_S56_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_rectum_S56_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478421"
gz1="$(_compress_if_exists 'SRR8478421_1' || true)"
gz2="$(_compress_if_exists 'SRR8478421_2' || true)"
gzs="$(_compress_if_exists 'SRR8478421' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_Rectum_Ulcerative_colitis_34_Rectum_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_Rectum_Ulcerative_colitis_34_Rectum_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478422"
gz1="$(_compress_if_exists 'SRR8478422_1' || true)"
gz2="$(_compress_if_exists 'SRR8478422_2' || true)"
gzs="$(_compress_if_exists 'SRR8478422' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_Rectum_Ulcerative_colitis_34_Rectum_S6_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_Rectum_Ulcerative_colitis_34_Rectum_S6_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478423"
gz1="$(_compress_if_exists 'SRR8478423_1' || true)"
gz2="$(_compress_if_exists 'SRR8478423_2' || true)"
gzs="$(_compress_if_exists 'SRR8478423' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_Rectum_Ulcerative_colitis_34_Rectum_S7_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_Rectum_Ulcerative_colitis_34_Rectum_S7_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478424"
gz1="$(_compress_if_exists 'SRR8478424_1' || true)"
gz2="$(_compress_if_exists 'SRR8478424_2' || true)"
gzs="$(_compress_if_exists 'SRR8478424' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_Rectum_Ulcerative_colitis_34_Rectum_S8_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_Rectum_Ulcerative_colitis_34_Rectum_S8_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478425"
gz1="$(_compress_if_exists 'SRR8478425_1' || true)"
gz2="$(_compress_if_exists 'SRR8478425_2' || true)"
gzs="$(_compress_if_exists 'SRR8478425' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_R_Ulcerative_colitis_35_rectum_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_R_Ulcerative_colitis_35_rectum_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478426"
gz1="$(_compress_if_exists 'SRR8478426_1' || true)"
gz2="$(_compress_if_exists 'SRR8478426_2' || true)"
gzs="$(_compress_if_exists 'SRR8478426' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_R_Ulcerative_colitis_35_rectum_S6_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_R_Ulcerative_colitis_35_rectum_S6_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478427"
gz1="$(_compress_if_exists 'SRR8478427_1' || true)"
gz2="$(_compress_if_exists 'SRR8478427_2' || true)"
gzs="$(_compress_if_exists 'SRR8478427' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_R_Ulcerative_colitis_35_rectum_S7_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_R_Ulcerative_colitis_35_rectum_S7_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478428"
gz1="$(_compress_if_exists 'SRR8478428_1' || true)"
gz2="$(_compress_if_exists 'SRR8478428_2' || true)"
gzs="$(_compress_if_exists 'SRR8478428' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_R_Ulcerative_colitis_35_rectum_S8_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_R_Ulcerative_colitis_35_rectum_S8_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478429"
gz1="$(_compress_if_exists 'SRR8478429_1' || true)"
gz2="$(_compress_if_exists 'SRR8478429_2' || true)"
gzs="$(_compress_if_exists 'SRR8478429' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_R_Ulcerative_colitis_41_rectum_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_R_Ulcerative_colitis_41_rectum_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478430"
gz1="$(_compress_if_exists 'SRR8478430_1' || true)"
gz2="$(_compress_if_exists 'SRR8478430_2' || true)"
gzs="$(_compress_if_exists 'SRR8478430' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_R_Ulcerative_colitis_41_rectum_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_R_Ulcerative_colitis_41_rectum_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478431"
gz1="$(_compress_if_exists 'SRR8478431_1' || true)"
gz2="$(_compress_if_exists 'SRR8478431_2' || true)"
gzs="$(_compress_if_exists 'SRR8478431' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_R_Ulcerative_colitis_41_rectum_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_R_Ulcerative_colitis_41_rectum_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478432"
gz1="$(_compress_if_exists 'SRR8478432_1' || true)"
gz2="$(_compress_if_exists 'SRR8478432_2' || true)"
gzs="$(_compress_if_exists 'SRR8478432' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_R_Ulcerative_colitis_41_rectum_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_R_Ulcerative_colitis_41_rectum_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478433"
gz1="$(_compress_if_exists 'SRR8478433_1' || true)"
gz2="$(_compress_if_exists 'SRR8478433_2' || true)"
gzs="$(_compress_if_exists 'SRR8478433' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_rectum_ulcerative_coliis_44_rectm_S21_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_rectum_ulcerative_coliis_44_rectm_S21_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478434"
gz1="$(_compress_if_exists 'SRR8478434_1' || true)"
gz2="$(_compress_if_exists 'SRR8478434_2' || true)"
gzs="$(_compress_if_exists 'SRR8478434' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_rectum_ulcerative_coliis_44_rectm_S22_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_rectum_ulcerative_coliis_44_rectm_S22_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478435"
gz1="$(_compress_if_exists 'SRR8478435_1' || true)"
gz2="$(_compress_if_exists 'SRR8478435_2' || true)"
gzs="$(_compress_if_exists 'SRR8478435' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_rectum_ulcerative_coliis_44_rectm_S23_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_rectum_ulcerative_coliis_44_rectm_S23_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478436"
gz1="$(_compress_if_exists 'SRR8478436_1' || true)"
gz2="$(_compress_if_exists 'SRR8478436_2' || true)"
gzs="$(_compress_if_exists 'SRR8478436' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_rectum_ulcerative_coliis_44_rectm_S24_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_rectum_ulcerative_coliis_44_rectm_S24_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478437"
gz1="$(_compress_if_exists 'SRR8478437_1' || true)"
gz2="$(_compress_if_exists 'SRR8478437_2' || true)"
gzs="$(_compress_if_exists 'SRR8478437' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_R_ulcerative_colitis_45_rectum_S29_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_R_ulcerative_colitis_45_rectum_S29_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478438"
gz1="$(_compress_if_exists 'SRR8478438_1' || true)"
gz2="$(_compress_if_exists 'SRR8478438_2' || true)"
gzs="$(_compress_if_exists 'SRR8478438' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_R_ulcerative_colitis_45_rectum_S30_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_R_ulcerative_colitis_45_rectum_S30_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478439"
gz1="$(_compress_if_exists 'SRR8478439_1' || true)"
gz2="$(_compress_if_exists 'SRR8478439_2' || true)"
gzs="$(_compress_if_exists 'SRR8478439' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_R_ulcerative_colitis_45_rectum_S31_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_R_ulcerative_colitis_45_rectum_S31_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478440"
gz1="$(_compress_if_exists 'SRR8478440_1' || true)"
gz2="$(_compress_if_exists 'SRR8478440_2' || true)"
gzs="$(_compress_if_exists 'SRR8478440' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_R_ulcerative_colitis_45_rectum_S32_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_R_ulcerative_colitis_45_rectum_S32_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478441"
gz1="$(_compress_if_exists 'SRR8478441_1' || true)"
gz2="$(_compress_if_exists 'SRR8478441_2' || true)"
gzs="$(_compress_if_exists 'SRR8478441' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S5_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S5_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478442"
gz1="$(_compress_if_exists 'SRR8478442_1' || true)"
gz2="$(_compress_if_exists 'SRR8478442_2' || true)"
gzs="$(_compress_if_exists 'SRR8478442' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S7_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S7_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478443"
gz1="$(_compress_if_exists 'SRR8478443_1' || true)"
gz2="$(_compress_if_exists 'SRR8478443_2' || true)"
gzs="$(_compress_if_exists 'SRR8478443' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S7_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S7_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478444"
gz1="$(_compress_if_exists 'SRR8478444_1' || true)"
gz2="$(_compress_if_exists 'SRR8478444_2' || true)"
gzs="$(_compress_if_exists 'SRR8478444' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S7_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S7_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478445"
gz1="$(_compress_if_exists 'SRR8478445_1' || true)"
gz2="$(_compress_if_exists 'SRR8478445_2' || true)"
gzs="$(_compress_if_exists 'SRR8478445' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S8_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S8_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478446"
gz1="$(_compress_if_exists 'SRR8478446_1' || true)"
gz2="$(_compress_if_exists 'SRR8478446_2' || true)"
gzs="$(_compress_if_exists 'SRR8478446' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S8_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S8_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478447"
gz1="$(_compress_if_exists 'SRR8478447_1' || true)"
gz2="$(_compress_if_exists 'SRR8478447_2' || true)"
gzs="$(_compress_if_exists 'SRR8478447' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S8_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S8_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478448"
gz1="$(_compress_if_exists 'SRR8478448_1' || true)"
gz2="$(_compress_if_exists 'SRR8478448_2' || true)"
gzs="$(_compress_if_exists 'SRR8478448' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S8_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S8_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478449"
gz1="$(_compress_if_exists 'SRR8478449_1' || true)"
gz2="$(_compress_if_exists 'SRR8478449_2' || true)"
gzs="$(_compress_if_exists 'SRR8478449' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S5_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S5_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478450"
gz1="$(_compress_if_exists 'SRR8478450_1' || true)"
gz2="$(_compress_if_exists 'SRR8478450_2' || true)"
gzs="$(_compress_if_exists 'SRR8478450' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S5_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S5_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478451"
gz1="$(_compress_if_exists 'SRR8478451_1' || true)"
gz2="$(_compress_if_exists 'SRR8478451_2' || true)"
gzs="$(_compress_if_exists 'SRR8478451' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S5_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S5_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478452"
gz1="$(_compress_if_exists 'SRR8478452_1' || true)"
gz2="$(_compress_if_exists 'SRR8478452_2' || true)"
gzs="$(_compress_if_exists 'SRR8478452' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S6_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S6_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478453"
gz1="$(_compress_if_exists 'SRR8478453_1' || true)"
gz2="$(_compress_if_exists 'SRR8478453_2' || true)"
gzs="$(_compress_if_exists 'SRR8478453' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S6_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S6_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478454"
gz1="$(_compress_if_exists 'SRR8478454_1' || true)"
gz2="$(_compress_if_exists 'SRR8478454_2' || true)"
gzs="$(_compress_if_exists 'SRR8478454' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S6_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S6_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478455"
gz1="$(_compress_if_exists 'SRR8478455_1' || true)"
gz2="$(_compress_if_exists 'SRR8478455_2' || true)"
gzs="$(_compress_if_exists 'SRR8478455' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S6_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S6_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478456"
gz1="$(_compress_if_exists 'SRR8478456_1' || true)"
gz2="$(_compress_if_exists 'SRR8478456_2' || true)"
gzs="$(_compress_if_exists 'SRR8478456' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_10x_S7_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_10x_S7_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478457"
gz1="$(_compress_if_exists 'SRR8478457_1' || true)"
gz2="$(_compress_if_exists 'SRR8478457_2' || true)"
gzs="$(_compress_if_exists 'SRR8478457' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S17_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S17_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478458"
gz1="$(_compress_if_exists 'SRR8478458_1' || true)"
gz2="$(_compress_if_exists 'SRR8478458_2' || true)"
gzs="$(_compress_if_exists 'SRR8478458' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S19_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S19_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478459"
gz1="$(_compress_if_exists 'SRR8478459_1' || true)"
gz2="$(_compress_if_exists 'SRR8478459_2' || true)"
gzs="$(_compress_if_exists 'SRR8478459' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S19_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S19_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478460"
gz1="$(_compress_if_exists 'SRR8478460_1' || true)"
gz2="$(_compress_if_exists 'SRR8478460_2' || true)"
gzs="$(_compress_if_exists 'SRR8478460' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S19_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S19_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478461"
gz1="$(_compress_if_exists 'SRR8478461_1' || true)"
gz2="$(_compress_if_exists 'SRR8478461_2' || true)"
gzs="$(_compress_if_exists 'SRR8478461' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S20_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S20_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478462"
gz1="$(_compress_if_exists 'SRR8478462_1' || true)"
gz2="$(_compress_if_exists 'SRR8478462_2' || true)"
gzs="$(_compress_if_exists 'SRR8478462' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S20_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S20_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478463"
gz1="$(_compress_if_exists 'SRR8478463_1' || true)"
gz2="$(_compress_if_exists 'SRR8478463_2' || true)"
gzs="$(_compress_if_exists 'SRR8478463' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S20_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S20_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478464"
gz1="$(_compress_if_exists 'SRR8478464_1' || true)"
gz2="$(_compress_if_exists 'SRR8478464_2' || true)"
gzs="$(_compress_if_exists 'SRR8478464' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S20_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S20_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478465"
gz1="$(_compress_if_exists 'SRR8478465_1' || true)"
gz2="$(_compress_if_exists 'SRR8478465_2' || true)"
gzs="$(_compress_if_exists 'SRR8478465' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S17_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S17_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478466"
gz1="$(_compress_if_exists 'SRR8478466_1' || true)"
gz2="$(_compress_if_exists 'SRR8478466_2' || true)"
gzs="$(_compress_if_exists 'SRR8478466' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S17_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S17_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478467"
gz1="$(_compress_if_exists 'SRR8478467_1' || true)"
gz2="$(_compress_if_exists 'SRR8478467_2' || true)"
gzs="$(_compress_if_exists 'SRR8478467' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S17_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S17_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478468"
gz1="$(_compress_if_exists 'SRR8478468_1' || true)"
gz2="$(_compress_if_exists 'SRR8478468_2' || true)"
gzs="$(_compress_if_exists 'SRR8478468' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S18_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S18_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478469"
gz1="$(_compress_if_exists 'SRR8478469_1' || true)"
gz2="$(_compress_if_exists 'SRR8478469_2' || true)"
gzs="$(_compress_if_exists 'SRR8478469' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S18_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S18_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478470"
gz1="$(_compress_if_exists 'SRR8478470_1' || true)"
gz2="$(_compress_if_exists 'SRR8478470_2' || true)"
gzs="$(_compress_if_exists 'SRR8478470' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S18_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S18_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478471"
gz1="$(_compress_if_exists 'SRR8478471_1' || true)"
gz2="$(_compress_if_exists 'SRR8478471_2' || true)"
gzs="$(_compress_if_exists 'SRR8478471' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S18_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S18_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478472"
gz1="$(_compress_if_exists 'SRR8478472_1' || true)"
gz2="$(_compress_if_exists 'SRR8478472_2' || true)"
gzs="$(_compress_if_exists 'SRR8478472' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_10x_S19_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_10x_S19_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478473"
gz1="$(_compress_if_exists 'SRR8478473_1' || true)"
gz2="$(_compress_if_exists 'SRR8478473_2' || true)"
gzs="$(_compress_if_exists 'SRR8478473' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_control_19_rectum_S29_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_control_19_rectum_S29_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478474"
gz1="$(_compress_if_exists 'SRR8478474_1' || true)"
gz2="$(_compress_if_exists 'SRR8478474_2' || true)"
gzs="$(_compress_if_exists 'SRR8478474' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_control_19_rectum_S30_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_control_19_rectum_S30_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478475"
gz1="$(_compress_if_exists 'SRR8478475_1' || true)"
gz2="$(_compress_if_exists 'SRR8478475_2' || true)"
gzs="$(_compress_if_exists 'SRR8478475' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_control_19_rectum_S31_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_control_19_rectum_S31_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478476"
gz1="$(_compress_if_exists 'SRR8478476_1' || true)"
gz2="$(_compress_if_exists 'SRR8478476_2' || true)"
gzs="$(_compress_if_exists 'SRR8478476' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_control_19_rectum_S32_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_control_19_rectum_S32_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478477"
gz1="$(_compress_if_exists 'SRR8478477_1' || true)"
gz2="$(_compress_if_exists 'SRR8478477_2' || true)"
gzs="$(_compress_if_exists 'SRR8478477' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_S10_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_S10_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478478"
gz1="$(_compress_if_exists 'SRR8478478_1' || true)"
gz2="$(_compress_if_exists 'SRR8478478_2' || true)"
gzs="$(_compress_if_exists 'SRR8478478' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_S11_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_S11_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478479"
gz1="$(_compress_if_exists 'SRR8478479_1' || true)"
gz2="$(_compress_if_exists 'SRR8478479_2' || true)"
gzs="$(_compress_if_exists 'SRR8478479' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_S12_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_S12_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478480"
gz1="$(_compress_if_exists 'SRR8478480_1' || true)"
gz2="$(_compress_if_exists 'SRR8478480_2' || true)"
gzs="$(_compress_if_exists 'SRR8478480' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_rectum_S9_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_rectum_S9_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478481"
gz1="$(_compress_if_exists 'SRR8478481_1' || true)"
gz2="$(_compress_if_exists 'SRR8478481_2' || true)"
gzs="$(_compress_if_exists 'SRR8478481' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_rectum_S33_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_rectum_S33_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478482"
gz1="$(_compress_if_exists 'SRR8478482_1' || true)"
gz2="$(_compress_if_exists 'SRR8478482_2' || true)"
gzs="$(_compress_if_exists 'SRR8478482' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_rectum_S34_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_rectum_S34_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478483"
gz1="$(_compress_if_exists 'SRR8478483_1' || true)"
gz2="$(_compress_if_exists 'SRR8478483_2' || true)"
gzs="$(_compress_if_exists 'SRR8478483' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_rectum_S35_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_rectum_S35_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478484"
gz1="$(_compress_if_exists 'SRR8478484_1' || true)"
gz2="$(_compress_if_exists 'SRR8478484_2' || true)"
gzs="$(_compress_if_exists 'SRR8478484' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_rectum_S36_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_rectum_S36_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478485"
gz1="$(_compress_if_exists 'SRR8478485_1' || true)"
gz2="$(_compress_if_exists 'SRR8478485_2' || true)"
gzs="$(_compress_if_exists 'SRR8478485' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_control_30_rectum_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_control_30_rectum_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478486"
gz1="$(_compress_if_exists 'SRR8478486_1' || true)"
gz2="$(_compress_if_exists 'SRR8478486_2' || true)"
gzs="$(_compress_if_exists 'SRR8478486' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_control_30_rectum_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_control_30_rectum_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478487"
gz1="$(_compress_if_exists 'SRR8478487_1' || true)"
gz2="$(_compress_if_exists 'SRR8478487_2' || true)"
gzs="$(_compress_if_exists 'SRR8478487' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_control_30_rectum_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_control_30_rectum_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478488"
gz1="$(_compress_if_exists 'SRR8478488_1' || true)"
gz2="$(_compress_if_exists 'SRR8478488_2' || true)"
gzs="$(_compress_if_exists 'SRR8478488' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_control_30_rectum_S4_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_control_30_rectum_S4_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478489"
gz1="$(_compress_if_exists 'SRR8478489_1' || true)"
gz2="$(_compress_if_exists 'SRR8478489_2' || true)"
gzs="$(_compress_if_exists 'SRR8478489' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_S45_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_S45_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478490"
gz1="$(_compress_if_exists 'SRR8478490_1' || true)"
gz2="$(_compress_if_exists 'SRR8478490_2' || true)"
gzs="$(_compress_if_exists 'SRR8478490' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_S46_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_S46_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478491"
gz1="$(_compress_if_exists 'SRR8478491_1' || true)"
gz2="$(_compress_if_exists 'SRR8478491_2' || true)"
gzs="$(_compress_if_exists 'SRR8478491' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_S47_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_S47_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478492"
gz1="$(_compress_if_exists 'SRR8478492_1' || true)"
gz2="$(_compress_if_exists 'SRR8478492_2' || true)"
gzs="$(_compress_if_exists 'SRR8478492' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_rectum_S48_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_rectum_S48_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478493"
gz1="$(_compress_if_exists 'SRR8478493_1' || true)"
gz2="$(_compress_if_exists 'SRR8478493_2' || true)"
gzs="$(_compress_if_exists 'SRR8478493' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCSC_S65_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCSC_S65_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478494"
gz1="$(_compress_if_exists 'SRR8478494_1' || true)"
gz2="$(_compress_if_exists 'SRR8478494_2' || true)"
gzs="$(_compress_if_exists 'SRR8478494' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCSC_S66_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCSC_S66_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478495"
gz1="$(_compress_if_exists 'SRR8478495_1' || true)"
gz2="$(_compress_if_exists 'SRR8478495_2' || true)"
gzs="$(_compress_if_exists 'SRR8478495' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCSC_S67_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCSC_S67_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478496"
gz1="$(_compress_if_exists 'SRR8478496_1' || true)"
gz2="$(_compress_if_exists 'SRR8478496_2' || true)"
gzs="$(_compress_if_exists 'SRR8478496' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCSC_S68_L007_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCSC_S68_L007_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478497"
gz1="$(_compress_if_exists 'SRR8478497_1' || true)"
gz2="$(_compress_if_exists 'SRR8478497_2' || true)"
gzs="$(_compress_if_exists 'SRR8478497' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_pbmc_control_16_pbmc_S13_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_pbmc_control_16_pbmc_S13_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478498"
gz1="$(_compress_if_exists 'SRR8478498_1' || true)"
gz2="$(_compress_if_exists 'SRR8478498_2' || true)"
gzs="$(_compress_if_exists 'SRR8478498' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_pbmc_control_16_pbmc_S14_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_pbmc_control_16_pbmc_S14_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478499"
gz1="$(_compress_if_exists 'SRR8478499_1' || true)"
gz2="$(_compress_if_exists 'SRR8478499_2' || true)"
gzs="$(_compress_if_exists 'SRR8478499' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_pbmc_control_16_pbmc_S15_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_pbmc_control_16_pbmc_S15_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478500"
gz1="$(_compress_if_exists 'SRR8478500_1' || true)"
gz2="$(_compress_if_exists 'SRR8478500_2' || true)"
gzs="$(_compress_if_exists 'SRR8478500' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_pbmc_control_16_pbmc_S16_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_pbmc_control_16_pbmc_S16_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478501"
gz1="$(_compress_if_exists 'SRR8478501_1' || true)"
gz2="$(_compress_if_exists 'SRR8478501_2' || true)"
gzs="$(_compress_if_exists 'SRR8478501' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_P_control_16_pbmc_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_P_control_16_pbmc_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478502"
gz1="$(_compress_if_exists 'SRR8478502_1' || true)"
gz2="$(_compress_if_exists 'SRR8478502_2' || true)"
gzs="$(_compress_if_exists 'SRR8478502' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_P_control_16_pbmc_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_P_control_16_pbmc_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478503"
gz1="$(_compress_if_exists 'SRR8478503_1' || true)"
gz2="$(_compress_if_exists 'SRR8478503_2' || true)"
gzs="$(_compress_if_exists 'SRR8478503' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_P_control_16_pbmc_S3_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_P_control_16_pbmc_S3_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478504"
gz1="$(_compress_if_exists 'SRR8478504_1' || true)"
gz2="$(_compress_if_exists 'SRR8478504_2' || true)"
gzs="$(_compress_if_exists 'SRR8478504' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C16_P_control_16_pbmc_S4_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C16_P_control_16_pbmc_S4_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478505"
gz1="$(_compress_if_exists 'SRR8478505_1' || true)"
gz2="$(_compress_if_exists 'SRR8478505_2' || true)"
gzs="$(_compress_if_exists 'SRR8478505' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_pbmc_ulcerative_colitis_4_pbmc_S41_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_pbmc_ulcerative_colitis_4_pbmc_S41_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478506"
gz1="$(_compress_if_exists 'SRR8478506_1' || true)"
gz2="$(_compress_if_exists 'SRR8478506_2' || true)"
gzs="$(_compress_if_exists 'SRR8478506' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_pbmc_ulcerative_colitis_4_pbmc_S42_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_pbmc_ulcerative_colitis_4_pbmc_S42_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478507"
gz1="$(_compress_if_exists 'SRR8478507_1' || true)"
gz2="$(_compress_if_exists 'SRR8478507_2' || true)"
gzs="$(_compress_if_exists 'SRR8478507' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_pbmc_ulcerative_colitis_4_pbmc_S43_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_pbmc_ulcerative_colitis_4_pbmc_S43_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478508"
gz1="$(_compress_if_exists 'SRR8478508_1' || true)"
gz2="$(_compress_if_exists 'SRR8478508_2' || true)"
gzs="$(_compress_if_exists 'SRR8478508' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U4_pbmc_ulcerative_colitis_4_pbmc_S44_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U4_pbmc_ulcerative_colitis_4_pbmc_S44_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478509"
gz1="$(_compress_if_exists 'SRR8478509_1' || true)"
gz2="$(_compress_if_exists 'SRR8478509_2' || true)"
gzs="$(_compress_if_exists 'SRR8478509' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_pbmc_ulcerative_colitis_5_pbmc_S49_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_pbmc_ulcerative_colitis_5_pbmc_S49_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478510"
gz1="$(_compress_if_exists 'SRR8478510_1' || true)"
gz2="$(_compress_if_exists 'SRR8478510_2' || true)"
gzs="$(_compress_if_exists 'SRR8478510' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_pbmc_ulcerative_colitis_5_pbmc_S50_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_pbmc_ulcerative_colitis_5_pbmc_S50_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478511"
gz1="$(_compress_if_exists 'SRR8478511_1' || true)"
gz2="$(_compress_if_exists 'SRR8478511_2' || true)"
gzs="$(_compress_if_exists 'SRR8478511' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_pbmc_ulcerative_colitis_5_pbmc_S51_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_pbmc_ulcerative_colitis_5_pbmc_S51_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478512"
gz1="$(_compress_if_exists 'SRR8478512_1' || true)"
gz2="$(_compress_if_exists 'SRR8478512_2' || true)"
gzs="$(_compress_if_exists 'SRR8478512' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U5_pbmc_ulcerative_colitis_5_pbmc_S52_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U5_pbmc_ulcerative_colitis_5_pbmc_S52_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478513"
gz1="$(_compress_if_exists 'SRR8478513_1' || true)"
gz2="$(_compress_if_exists 'SRR8478513_2' || true)"
gzs="$(_compress_if_exists 'SRR8478513' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pbmc_S49_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pbmc_S49_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478514"
gz1="$(_compress_if_exists 'SRR8478514_1' || true)"
gz2="$(_compress_if_exists 'SRR8478514_2' || true)"
gzs="$(_compress_if_exists 'SRR8478514' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pbmc_S50_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pbmc_S50_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478515"
gz1="$(_compress_if_exists 'SRR8478515_1' || true)"
gz2="$(_compress_if_exists 'SRR8478515_2' || true)"
gzs="$(_compress_if_exists 'SRR8478515' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pbmc_S51_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pbmc_S51_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478516"
gz1="$(_compress_if_exists 'SRR8478516_1' || true)"
gz2="$(_compress_if_exists 'SRR8478516_2' || true)"
gzs="$(_compress_if_exists 'SRR8478516' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pbmc_S52_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pbmc_S52_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478517"
gz1="$(_compress_if_exists 'SRR8478517_1' || true)"
gz2="$(_compress_if_exists 'SRR8478517_2' || true)"
gzs="$(_compress_if_exists 'SRR8478517' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pBMC_ulcerative_colitis_34_pBMC_S10_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pBMC_ulcerative_colitis_34_pBMC_S10_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478518"
gz1="$(_compress_if_exists 'SRR8478518_1' || true)"
gz2="$(_compress_if_exists 'SRR8478518_2' || true)"
gzs="$(_compress_if_exists 'SRR8478518' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pBMC_ulcerative_colitis_34_pBMC_S11_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pBMC_ulcerative_colitis_34_pBMC_S11_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478519"
gz1="$(_compress_if_exists 'SRR8478519_1' || true)"
gz2="$(_compress_if_exists 'SRR8478519_2' || true)"
gzs="$(_compress_if_exists 'SRR8478519' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pBMC_ulcerative_colitis_34_pBMC_S12_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pBMC_ulcerative_colitis_34_pBMC_S12_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478520"
gz1="$(_compress_if_exists 'SRR8478520_1' || true)"
gz2="$(_compress_if_exists 'SRR8478520_2' || true)"
gzs="$(_compress_if_exists 'SRR8478520' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U34_pBMC_ulcerative_colitis_34_pBMC_S9_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U34_pBMC_ulcerative_colitis_34_pBMC_S9_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478521"
gz1="$(_compress_if_exists 'SRR8478521_1' || true)"
gz2="$(_compress_if_exists 'SRR8478521_2' || true)"
gzs="$(_compress_if_exists 'SRR8478521' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_P_Ulcerative_colitis_35_pbmc_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_P_Ulcerative_colitis_35_pbmc_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478522"
gz1="$(_compress_if_exists 'SRR8478522_1' || true)"
gz2="$(_compress_if_exists 'SRR8478522_2' || true)"
gzs="$(_compress_if_exists 'SRR8478522' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_P_Ulcerative_colitis_35_pbmc_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_P_Ulcerative_colitis_35_pbmc_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478523"
gz1="$(_compress_if_exists 'SRR8478523_1' || true)"
gz2="$(_compress_if_exists 'SRR8478523_2' || true)"
gzs="$(_compress_if_exists 'SRR8478523' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_P_Ulcerative_colitis_35_pbmc_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_P_Ulcerative_colitis_35_pbmc_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478524"
gz1="$(_compress_if_exists 'SRR8478524_1' || true)"
gz2="$(_compress_if_exists 'SRR8478524_2' || true)"
gzs="$(_compress_if_exists 'SRR8478524' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U35_P_Ulcerative_colitis_35_pbmc_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U35_P_Ulcerative_colitis_35_pbmc_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478525"
gz1="$(_compress_if_exists 'SRR8478525_1' || true)"
gz2="$(_compress_if_exists 'SRR8478525_2' || true)"
gzs="$(_compress_if_exists 'SRR8478525' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_P_Ulcerative_colitis_41_pbmc_S10_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_P_Ulcerative_colitis_41_pbmc_S10_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478526"
gz1="$(_compress_if_exists 'SRR8478526_1' || true)"
gz2="$(_compress_if_exists 'SRR8478526_2' || true)"
gzs="$(_compress_if_exists 'SRR8478526' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_P_Ulcerative_colitis_41_pbmc_S11_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_P_Ulcerative_colitis_41_pbmc_S11_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478527"
gz1="$(_compress_if_exists 'SRR8478527_1' || true)"
gz2="$(_compress_if_exists 'SRR8478527_2' || true)"
gzs="$(_compress_if_exists 'SRR8478527' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_P_Ulcerative_colitis_41_pbmc_S12_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_P_Ulcerative_colitis_41_pbmc_S12_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478528"
gz1="$(_compress_if_exists 'SRR8478528_1' || true)"
gz2="$(_compress_if_exists 'SRR8478528_2' || true)"
gzs="$(_compress_if_exists 'SRR8478528' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U41_P_Ulcerative_colitis_41_pbmc_S9_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U41_P_Ulcerative_colitis_41_pbmc_S9_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478529"
gz1="$(_compress_if_exists 'SRR8478529_1' || true)"
gz2="$(_compress_if_exists 'SRR8478529_2' || true)"
gzs="$(_compress_if_exists 'SRR8478529' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_pbmc_ulcerative_colitis_44_pbmc_S17_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_pbmc_ulcerative_colitis_44_pbmc_S17_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478530"
gz1="$(_compress_if_exists 'SRR8478530_1' || true)"
gz2="$(_compress_if_exists 'SRR8478530_2' || true)"
gzs="$(_compress_if_exists 'SRR8478530' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_pbmc_ulcerative_colitis_44_pbmc_S18_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_pbmc_ulcerative_colitis_44_pbmc_S18_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478531"
gz1="$(_compress_if_exists 'SRR8478531_1' || true)"
gz2="$(_compress_if_exists 'SRR8478531_2' || true)"
gzs="$(_compress_if_exists 'SRR8478531' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_pbmc_ulcerative_colitis_44_pbmc_S19_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_pbmc_ulcerative_colitis_44_pbmc_S19_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478532"
gz1="$(_compress_if_exists 'SRR8478532_1' || true)"
gz2="$(_compress_if_exists 'SRR8478532_2' || true)"
gzs="$(_compress_if_exists 'SRR8478532' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U44_pbmc_ulcerative_colitis_44_pbmc_S20_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U44_pbmc_ulcerative_colitis_44_pbmc_S20_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478533"
gz1="$(_compress_if_exists 'SRR8478533_1' || true)"
gz2="$(_compress_if_exists 'SRR8478533_2' || true)"
gzs="$(_compress_if_exists 'SRR8478533' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_pbmc_ulcerative_colitis_45_pBMC_S25_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_pbmc_ulcerative_colitis_45_pBMC_S25_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478534"
gz1="$(_compress_if_exists 'SRR8478534_1' || true)"
gz2="$(_compress_if_exists 'SRR8478534_2' || true)"
gzs="$(_compress_if_exists 'SRR8478534' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_pbmc_ulcerative_colitis_45_pBMC_S26_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_pbmc_ulcerative_colitis_45_pBMC_S26_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478535"
gz1="$(_compress_if_exists 'SRR8478535_1' || true)"
gz2="$(_compress_if_exists 'SRR8478535_2' || true)"
gzs="$(_compress_if_exists 'SRR8478535' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_pbmc_ulcerative_colitis_45_pBMC_S27_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_pbmc_ulcerative_colitis_45_pBMC_S27_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478536"
gz1="$(_compress_if_exists 'SRR8478536_1' || true)"
gz2="$(_compress_if_exists 'SRR8478536_2' || true)"
gzs="$(_compress_if_exists 'SRR8478536' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U45_pbmc_ulcerative_colitis_45_pBMC_S28_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U45_pbmc_ulcerative_colitis_45_pBMC_S28_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478537"
gz1="$(_compress_if_exists 'SRR8478537_1' || true)"
gz2="$(_compress_if_exists 'SRR8478537_2' || true)"
gzs="$(_compress_if_exists 'SRR8478537' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S10_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S10_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478538"
gz1="$(_compress_if_exists 'SRR8478538_1' || true)"
gz2="$(_compress_if_exists 'SRR8478538_2' || true)"
gzs="$(_compress_if_exists 'SRR8478538' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S12_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S12_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478539"
gz1="$(_compress_if_exists 'SRR8478539_1' || true)"
gz2="$(_compress_if_exists 'SRR8478539_2' || true)"
gzs="$(_compress_if_exists 'SRR8478539' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S12_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S12_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478540"
gz1="$(_compress_if_exists 'SRR8478540_1' || true)"
gz2="$(_compress_if_exists 'SRR8478540_2' || true)"
gzs="$(_compress_if_exists 'SRR8478540' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S12_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S12_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478541"
gz1="$(_compress_if_exists 'SRR8478541_1' || true)"
gz2="$(_compress_if_exists 'SRR8478541_2' || true)"
gzs="$(_compress_if_exists 'SRR8478541' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S9_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S9_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478542"
gz1="$(_compress_if_exists 'SRR8478542_1' || true)"
gz2="$(_compress_if_exists 'SRR8478542_2' || true)"
gzs="$(_compress_if_exists 'SRR8478542' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S9_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S9_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478543"
gz1="$(_compress_if_exists 'SRR8478543_1' || true)"
gz2="$(_compress_if_exists 'SRR8478543_2' || true)"
gzs="$(_compress_if_exists 'SRR8478543' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S9_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S9_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478544"
gz1="$(_compress_if_exists 'SRR8478544_1' || true)"
gz2="$(_compress_if_exists 'SRR8478544_2' || true)"
gzs="$(_compress_if_exists 'SRR8478544' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S9_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S9_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478545"
gz1="$(_compress_if_exists 'SRR8478545_1' || true)"
gz2="$(_compress_if_exists 'SRR8478545_2' || true)"
gzs="$(_compress_if_exists 'SRR8478545' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S10_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S10_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478546"
gz1="$(_compress_if_exists 'SRR8478546_1' || true)"
gz2="$(_compress_if_exists 'SRR8478546_2' || true)"
gzs="$(_compress_if_exists 'SRR8478546' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S10_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S10_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478547"
gz1="$(_compress_if_exists 'SRR8478547_1' || true)"
gz2="$(_compress_if_exists 'SRR8478547_2' || true)"
gzs="$(_compress_if_exists 'SRR8478547' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S10_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S10_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478548"
gz1="$(_compress_if_exists 'SRR8478548_1' || true)"
gz2="$(_compress_if_exists 'SRR8478548_2' || true)"
gzs="$(_compress_if_exists 'SRR8478548' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S11_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S11_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478549"
gz1="$(_compress_if_exists 'SRR8478549_1' || true)"
gz2="$(_compress_if_exists 'SRR8478549_2' || true)"
gzs="$(_compress_if_exists 'SRR8478549' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S11_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S11_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478550"
gz1="$(_compress_if_exists 'SRR8478550_1' || true)"
gz2="$(_compress_if_exists 'SRR8478550_2' || true)"
gzs="$(_compress_if_exists 'SRR8478550' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S11_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S11_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478551"
gz1="$(_compress_if_exists 'SRR8478551_1' || true)"
gz2="$(_compress_if_exists 'SRR8478551_2' || true)"
gzs="$(_compress_if_exists 'SRR8478551' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S11_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S11_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478552"
gz1="$(_compress_if_exists 'SRR8478552_1' || true)"
gz2="$(_compress_if_exists 'SRR8478552_2' || true)"
gzs="$(_compress_if_exists 'SRR8478552' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_10x_S12_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_10x_S12_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478553"
gz1="$(_compress_if_exists 'SRR8478553_1' || true)"
gz2="$(_compress_if_exists 'SRR8478553_2' || true)"
gzs="$(_compress_if_exists 'SRR8478553' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S21_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S21_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478554"
gz1="$(_compress_if_exists 'SRR8478554_1' || true)"
gz2="$(_compress_if_exists 'SRR8478554_2' || true)"
gzs="$(_compress_if_exists 'SRR8478554' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S23_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S23_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478555"
gz1="$(_compress_if_exists 'SRR8478555_1' || true)"
gz2="$(_compress_if_exists 'SRR8478555_2' || true)"
gzs="$(_compress_if_exists 'SRR8478555' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S23_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S23_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478556"
gz1="$(_compress_if_exists 'SRR8478556_1' || true)"
gz2="$(_compress_if_exists 'SRR8478556_2' || true)"
gzs="$(_compress_if_exists 'SRR8478556' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S23_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S23_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478557"
gz1="$(_compress_if_exists 'SRR8478557_1' || true)"
gz2="$(_compress_if_exists 'SRR8478557_2' || true)"
gzs="$(_compress_if_exists 'SRR8478557' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S24_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S24_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478558"
gz1="$(_compress_if_exists 'SRR8478558_1' || true)"
gz2="$(_compress_if_exists 'SRR8478558_2' || true)"
gzs="$(_compress_if_exists 'SRR8478558' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S24_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S24_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478559"
gz1="$(_compress_if_exists 'SRR8478559_1' || true)"
gz2="$(_compress_if_exists 'SRR8478559_2' || true)"
gzs="$(_compress_if_exists 'SRR8478559' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S24_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S24_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478560"
gz1="$(_compress_if_exists 'SRR8478560_1' || true)"
gz2="$(_compress_if_exists 'SRR8478560_2' || true)"
gzs="$(_compress_if_exists 'SRR8478560' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S24_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S24_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478561"
gz1="$(_compress_if_exists 'SRR8478561_1' || true)"
gz2="$(_compress_if_exists 'SRR8478561_2' || true)"
gzs="$(_compress_if_exists 'SRR8478561' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S21_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S21_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478562"
gz1="$(_compress_if_exists 'SRR8478562_1' || true)"
gz2="$(_compress_if_exists 'SRR8478562_2' || true)"
gzs="$(_compress_if_exists 'SRR8478562' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S21_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S21_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478563"
gz1="$(_compress_if_exists 'SRR8478563_1' || true)"
gz2="$(_compress_if_exists 'SRR8478563_2' || true)"
gzs="$(_compress_if_exists 'SRR8478563' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S21_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S21_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478564"
gz1="$(_compress_if_exists 'SRR8478564_1' || true)"
gz2="$(_compress_if_exists 'SRR8478564_2' || true)"
gzs="$(_compress_if_exists 'SRR8478564' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S22_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S22_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478565"
gz1="$(_compress_if_exists 'SRR8478565_1' || true)"
gz2="$(_compress_if_exists 'SRR8478565_2' || true)"
gzs="$(_compress_if_exists 'SRR8478565' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S22_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S22_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478566"
gz1="$(_compress_if_exists 'SRR8478566_1' || true)"
gz2="$(_compress_if_exists 'SRR8478566_2' || true)"
gzs="$(_compress_if_exists 'SRR8478566' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S22_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S22_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478567"
gz1="$(_compress_if_exists 'SRR8478567_1' || true)"
gz2="$(_compress_if_exists 'SRR8478567_2' || true)"
gzs="$(_compress_if_exists 'SRR8478567' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S22_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S22_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478568"
gz1="$(_compress_if_exists 'SRR8478568_1' || true)"
gz2="$(_compress_if_exists 'SRR8478568_2' || true)"
gzs="$(_compress_if_exists 'SRR8478568' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_10x_S23_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_10x_S23_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478569"
gz1="$(_compress_if_exists 'SRR8478569_1' || true)"
gz2="$(_compress_if_exists 'SRR8478569_2' || true)"
gzs="$(_compress_if_exists 'SRR8478569' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pbmc_control_19_pBMC_S25_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pbmc_control_19_pBMC_S25_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478570"
gz1="$(_compress_if_exists 'SRR8478570_1' || true)"
gz2="$(_compress_if_exists 'SRR8478570_2' || true)"
gzs="$(_compress_if_exists 'SRR8478570' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pbmc_control_19_pBMC_S26_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pbmc_control_19_pBMC_S26_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478571"
gz1="$(_compress_if_exists 'SRR8478571_1' || true)"
gz2="$(_compress_if_exists 'SRR8478571_2' || true)"
gzs="$(_compress_if_exists 'SRR8478571' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pbmc_control_19_pBMC_S27_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pbmc_control_19_pBMC_S27_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478572"
gz1="$(_compress_if_exists 'SRR8478572_1' || true)"
gz2="$(_compress_if_exists 'SRR8478572_2' || true)"
gzs="$(_compress_if_exists 'SRR8478572' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pbmc_control_19_pBMC_S28_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pbmc_control_19_pBMC_S28_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478573"
gz1="$(_compress_if_exists 'SRR8478573_1' || true)"
gz2="$(_compress_if_exists 'SRR8478573_2' || true)"
gzs="$(_compress_if_exists 'SRR8478573' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pBMC_S1_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pBMC_S1_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478574"
gz1="$(_compress_if_exists 'SRR8478574_1' || true)"
gz2="$(_compress_if_exists 'SRR8478574_2' || true)"
gzs="$(_compress_if_exists 'SRR8478574' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pBMC_S2_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pBMC_S2_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478575"
gz1="$(_compress_if_exists 'SRR8478575_1' || true)"
gz2="$(_compress_if_exists 'SRR8478575_2' || true)"
gzs="$(_compress_if_exists 'SRR8478575' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pBMC_S3_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pBMC_S3_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478576"
gz1="$(_compress_if_exists 'SRR8478576_1' || true)"
gz2="$(_compress_if_exists 'SRR8478576_2' || true)"
gzs="$(_compress_if_exists 'SRR8478576' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_pBMC_S4_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_pBMC_S4_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478577"
gz1="$(_compress_if_exists 'SRR8478577_1' || true)"
gz2="$(_compress_if_exists 'SRR8478577_2' || true)"
gzs="$(_compress_if_exists 'SRR8478577' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_pBMC_S25_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_pBMC_S25_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478578"
gz1="$(_compress_if_exists 'SRR8478578_1' || true)"
gz2="$(_compress_if_exists 'SRR8478578_2' || true)"
gzs="$(_compress_if_exists 'SRR8478578' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_pBMC_S26_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_pBMC_S26_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478579"
gz1="$(_compress_if_exists 'SRR8478579_1' || true)"
gz2="$(_compress_if_exists 'SRR8478579_2' || true)"
gzs="$(_compress_if_exists 'SRR8478579' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_pBMC_S27_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_pBMC_S27_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478580"
gz1="$(_compress_if_exists 'SRR8478580_1' || true)"
gz2="$(_compress_if_exists 'SRR8478580_2' || true)"
gzs="$(_compress_if_exists 'SRR8478580' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_pBMC_S28_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_pBMC_S28_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478581"
gz1="$(_compress_if_exists 'SRR8478581_1' || true)"
gz2="$(_compress_if_exists 'SRR8478581_2' || true)"
gzs="$(_compress_if_exists 'SRR8478581' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_pbmc_S37_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_pbmc_S37_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478582"
gz1="$(_compress_if_exists 'SRR8478582_1' || true)"
gz2="$(_compress_if_exists 'SRR8478582_2' || true)"
gzs="$(_compress_if_exists 'SRR8478582' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_pbmc_S38_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_pbmc_S38_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478583"
gz1="$(_compress_if_exists 'SRR8478583_1' || true)"
gz2="$(_compress_if_exists 'SRR8478583_2' || true)"
gzs="$(_compress_if_exists 'SRR8478583' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_pbmc_S39_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_pbmc_S39_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478584"
gz1="$(_compress_if_exists 'SRR8478584_1' || true)"
gz2="$(_compress_if_exists 'SRR8478584_2' || true)"
gzs="$(_compress_if_exists 'SRR8478584' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_pbmc_S40_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_pbmc_S40_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478585"
gz1="$(_compress_if_exists 'SRR8478585_1' || true)"
gz2="$(_compress_if_exists 'SRR8478585_2' || true)"
gzs="$(_compress_if_exists 'SRR8478585' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_pBMC_S13_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_pBMC_S13_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478586"
gz1="$(_compress_if_exists 'SRR8478586_1' || true)"
gz2="$(_compress_if_exists 'SRR8478586_2' || true)"
gzs="$(_compress_if_exists 'SRR8478586' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_pBMC_S14_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_pBMC_S14_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478587"
gz1="$(_compress_if_exists 'SRR8478587_1' || true)"
gz2="$(_compress_if_exists 'SRR8478587_2' || true)"
gzs="$(_compress_if_exists 'SRR8478587' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_pBMC_S15_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_pBMC_S15_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478588"
gz1="$(_compress_if_exists 'SRR8478588_1' || true)"
gz2="$(_compress_if_exists 'SRR8478588_2' || true)"
gzs="$(_compress_if_exists 'SRR8478588' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_pBMC_S16_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_pBMC_S16_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478589"
gz1="$(_compress_if_exists 'SRR8478589_1' || true)"
gz2="$(_compress_if_exists 'SRR8478589_2' || true)"
gzs="$(_compress_if_exists 'SRR8478589' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478590"
gz1="$(_compress_if_exists 'SRR8478590_1' || true)"
gz2="$(_compress_if_exists 'SRR8478590_2' || true)"
gzs="$(_compress_if_exists 'SRR8478590' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S3_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S3_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478591"
gz1="$(_compress_if_exists 'SRR8478591_1' || true)"
gz2="$(_compress_if_exists 'SRR8478591_2' || true)"
gzs="$(_compress_if_exists 'SRR8478591' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S3_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S3_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478592"
gz1="$(_compress_if_exists 'SRR8478592_1' || true)"
gz2="$(_compress_if_exists 'SRR8478592_2' || true)"
gzs="$(_compress_if_exists 'SRR8478592' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S3_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S3_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478593"
gz1="$(_compress_if_exists 'SRR8478593_1' || true)"
gz2="$(_compress_if_exists 'SRR8478593_2' || true)"
gzs="$(_compress_if_exists 'SRR8478593' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478594"
gz1="$(_compress_if_exists 'SRR8478594_1' || true)"
gz2="$(_compress_if_exists 'SRR8478594_2' || true)"
gzs="$(_compress_if_exists 'SRR8478594' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S4_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S4_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478595"
gz1="$(_compress_if_exists 'SRR8478595_1' || true)"
gz2="$(_compress_if_exists 'SRR8478595_2' || true)"
gzs="$(_compress_if_exists 'SRR8478595' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S4_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S4_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478596"
gz1="$(_compress_if_exists 'SRR8478596_1' || true)"
gz2="$(_compress_if_exists 'SRR8478596_2' || true)"
gzs="$(_compress_if_exists 'SRR8478596' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S4_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S4_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478597"
gz1="$(_compress_if_exists 'SRR8478597_1' || true)"
gz2="$(_compress_if_exists 'SRR8478597_2' || true)"
gzs="$(_compress_if_exists 'SRR8478597' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S1_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S1_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478598"
gz1="$(_compress_if_exists 'SRR8478598_1' || true)"
gz2="$(_compress_if_exists 'SRR8478598_2' || true)"
gzs="$(_compress_if_exists 'SRR8478598' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S1_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S1_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478599"
gz1="$(_compress_if_exists 'SRR8478599_1' || true)"
gz2="$(_compress_if_exists 'SRR8478599_2' || true)"
gzs="$(_compress_if_exists 'SRR8478599' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S1_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S1_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478600"
gz1="$(_compress_if_exists 'SRR8478600_1' || true)"
gz2="$(_compress_if_exists 'SRR8478600_2' || true)"
gzs="$(_compress_if_exists 'SRR8478600' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478601"
gz1="$(_compress_if_exists 'SRR8478601_1' || true)"
gz2="$(_compress_if_exists 'SRR8478601_2' || true)"
gzs="$(_compress_if_exists 'SRR8478601' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S2_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S2_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478602"
gz1="$(_compress_if_exists 'SRR8478602_1' || true)"
gz2="$(_compress_if_exists 'SRR8478602_2' || true)"
gzs="$(_compress_if_exists 'SRR8478602' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S2_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S2_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478603"
gz1="$(_compress_if_exists 'SRR8478603_1' || true)"
gz2="$(_compress_if_exists 'SRR8478603_2' || true)"
gzs="$(_compress_if_exists 'SRR8478603' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S2_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S2_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478604"
gz1="$(_compress_if_exists 'SRR8478604_1' || true)"
gz2="$(_compress_if_exists 'SRR8478604_2' || true)"
gzs="$(_compress_if_exists 'SRR8478604' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_10x_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_10x_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478605"
gz1="$(_compress_if_exists 'SRR8478605_1' || true)"
gz2="$(_compress_if_exists 'SRR8478605_2' || true)"
gzs="$(_compress_if_exists 'SRR8478605' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478606"
gz1="$(_compress_if_exists 'SRR8478606_1' || true)"
gz2="$(_compress_if_exists 'SRR8478606_2' || true)"
gzs="$(_compress_if_exists 'SRR8478606' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S15_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S15_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478607"
gz1="$(_compress_if_exists 'SRR8478607_1' || true)"
gz2="$(_compress_if_exists 'SRR8478607_2' || true)"
gzs="$(_compress_if_exists 'SRR8478607' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S15_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S15_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478608"
gz1="$(_compress_if_exists 'SRR8478608_1' || true)"
gz2="$(_compress_if_exists 'SRR8478608_2' || true)"
gzs="$(_compress_if_exists 'SRR8478608' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S15_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S15_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478609"
gz1="$(_compress_if_exists 'SRR8478609_1' || true)"
gz2="$(_compress_if_exists 'SRR8478609_2' || true)"
gzs="$(_compress_if_exists 'SRR8478609' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478610"
gz1="$(_compress_if_exists 'SRR8478610_1' || true)"
gz2="$(_compress_if_exists 'SRR8478610_2' || true)"
gzs="$(_compress_if_exists 'SRR8478610' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S16_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S16_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478611"
gz1="$(_compress_if_exists 'SRR8478611_1' || true)"
gz2="$(_compress_if_exists 'SRR8478611_2' || true)"
gzs="$(_compress_if_exists 'SRR8478611' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S16_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S16_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478612"
gz1="$(_compress_if_exists 'SRR8478612_1' || true)"
gz2="$(_compress_if_exists 'SRR8478612_2' || true)"
gzs="$(_compress_if_exists 'SRR8478612' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S16_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S16_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478613"
gz1="$(_compress_if_exists 'SRR8478613_1' || true)"
gz2="$(_compress_if_exists 'SRR8478613_2' || true)"
gzs="$(_compress_if_exists 'SRR8478613' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S13_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S13_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478614"
gz1="$(_compress_if_exists 'SRR8478614_1' || true)"
gz2="$(_compress_if_exists 'SRR8478614_2' || true)"
gzs="$(_compress_if_exists 'SRR8478614' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S13_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S13_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478615"
gz1="$(_compress_if_exists 'SRR8478615_1' || true)"
gz2="$(_compress_if_exists 'SRR8478615_2' || true)"
gzs="$(_compress_if_exists 'SRR8478615' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S13_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S13_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478616"
gz1="$(_compress_if_exists 'SRR8478616_1' || true)"
gz2="$(_compress_if_exists 'SRR8478616_2' || true)"
gzs="$(_compress_if_exists 'SRR8478616' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478617"
gz1="$(_compress_if_exists 'SRR8478617_1' || true)"
gz2="$(_compress_if_exists 'SRR8478617_2' || true)"
gzs="$(_compress_if_exists 'SRR8478617' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S14_L004_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S14_L004_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478618"
gz1="$(_compress_if_exists 'SRR8478618_1' || true)"
gz2="$(_compress_if_exists 'SRR8478618_2' || true)"
gzs="$(_compress_if_exists 'SRR8478618' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S14_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S14_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478619"
gz1="$(_compress_if_exists 'SRR8478619_1' || true)"
gz2="$(_compress_if_exists 'SRR8478619_2' || true)"
gzs="$(_compress_if_exists 'SRR8478619' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S14_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S14_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478620"
gz1="$(_compress_if_exists 'SRR8478620_1' || true)"
gz2="$(_compress_if_exists 'SRR8478620_2' || true)"
gzs="$(_compress_if_exists 'SRR8478620' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_10x_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_10x_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478621"
gz1="$(_compress_if_exists 'SRR8478621_1' || true)"
gz2="$(_compress_if_exists 'SRR8478621_2' || true)"
gzs="$(_compress_if_exists 'SRR8478621' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_Control_19_ileum_S21_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_Control_19_ileum_S21_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478622"
gz1="$(_compress_if_exists 'SRR8478622_1' || true)"
gz2="$(_compress_if_exists 'SRR8478622_2' || true)"
gzs="$(_compress_if_exists 'SRR8478622' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_Control_19_ileum_S22_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_Control_19_ileum_S22_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478623"
gz1="$(_compress_if_exists 'SRR8478623_1' || true)"
gz2="$(_compress_if_exists 'SRR8478623_2' || true)"
gzs="$(_compress_if_exists 'SRR8478623' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_Control_19_ileum_S23_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_Control_19_ileum_S23_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478624"
gz1="$(_compress_if_exists 'SRR8478624_1' || true)"
gz2="$(_compress_if_exists 'SRR8478624_2' || true)"
gzs="$(_compress_if_exists 'SRR8478624' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_Control_19_ileum_S24_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_Control_19_ileum_S24_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478625"
gz1="$(_compress_if_exists 'SRR8478625_1' || true)"
gz2="$(_compress_if_exists 'SRR8478625_2' || true)"
gzs="$(_compress_if_exists 'SRR8478625' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_S5_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_S5_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478626"
gz1="$(_compress_if_exists 'SRR8478626_1' || true)"
gz2="$(_compress_if_exists 'SRR8478626_2' || true)"
gzs="$(_compress_if_exists 'SRR8478626' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_S6_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_S6_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478627"
gz1="$(_compress_if_exists 'SRR8478627_1' || true)"
gz2="$(_compress_if_exists 'SRR8478627_2' || true)"
gzs="$(_compress_if_exists 'SRR8478627' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_S7_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_S7_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478628"
gz1="$(_compress_if_exists 'SRR8478628_1' || true)"
gz2="$(_compress_if_exists 'SRR8478628_2' || true)"
gzs="$(_compress_if_exists 'SRR8478628' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C19_ileum_S8_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C19_ileum_S8_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478629"
gz1="$(_compress_if_exists 'SRR8478629_1' || true)"
gz2="$(_compress_if_exists 'SRR8478629_2' || true)"
gzs="$(_compress_if_exists 'SRR8478629' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_Control_21_ileum_S17_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_Control_21_ileum_S17_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478630"
gz1="$(_compress_if_exists 'SRR8478630_1' || true)"
gz2="$(_compress_if_exists 'SRR8478630_2' || true)"
gzs="$(_compress_if_exists 'SRR8478630' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_Control_21_ileum_S18_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_Control_21_ileum_S18_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478631"
gz1="$(_compress_if_exists 'SRR8478631_1' || true)"
gz2="$(_compress_if_exists 'SRR8478631_2' || true)"
gzs="$(_compress_if_exists 'SRR8478631' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_Control_21_ileum_S19_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_Control_21_ileum_S19_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478632"
gz1="$(_compress_if_exists 'SRR8478632_1' || true)"
gz2="$(_compress_if_exists 'SRR8478632_2' || true)"
gzs="$(_compress_if_exists 'SRR8478632' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_Control_21_ileum_S20_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_Control_21_ileum_S20_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478633"
gz1="$(_compress_if_exists 'SRR8478633_1' || true)"
gz2="$(_compress_if_exists 'SRR8478633_2' || true)"
gzs="$(_compress_if_exists 'SRR8478633' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_S29_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_S29_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478634"
gz1="$(_compress_if_exists 'SRR8478634_1' || true)"
gz2="$(_compress_if_exists 'SRR8478634_2' || true)"
gzs="$(_compress_if_exists 'SRR8478634' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_S30_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_S30_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478635"
gz1="$(_compress_if_exists 'SRR8478635_1' || true)"
gz2="$(_compress_if_exists 'SRR8478635_2' || true)"
gzs="$(_compress_if_exists 'SRR8478635' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_S31_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_S31_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478636"
gz1="$(_compress_if_exists 'SRR8478636_1' || true)"
gz2="$(_compress_if_exists 'SRR8478636_2' || true)"
gzs="$(_compress_if_exists 'SRR8478636' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C21_ileum_S32_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C21_ileum_S32_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478637"
gz1="$(_compress_if_exists 'SRR8478637_1' || true)"
gz2="$(_compress_if_exists 'SRR8478637_2' || true)"
gzs="$(_compress_if_exists 'SRR8478637' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_control_30_ileum_S33_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_control_30_ileum_S33_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478638"
gz1="$(_compress_if_exists 'SRR8478638_1' || true)"
gz2="$(_compress_if_exists 'SRR8478638_2' || true)"
gzs="$(_compress_if_exists 'SRR8478638' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_control_30_ileum_S34_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_control_30_ileum_S34_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478639"
gz1="$(_compress_if_exists 'SRR8478639_1' || true)"
gz2="$(_compress_if_exists 'SRR8478639_2' || true)"
gzs="$(_compress_if_exists 'SRR8478639' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_control_30_ileum_S35_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_control_30_ileum_S35_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478640"
gz1="$(_compress_if_exists 'SRR8478640_1' || true)"
gz2="$(_compress_if_exists 'SRR8478640_2' || true)"
gzs="$(_compress_if_exists 'SRR8478640' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_control_30_ileum_S36_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_control_30_ileum_S36_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478641"
gz1="$(_compress_if_exists 'SRR8478641_1' || true)"
gz2="$(_compress_if_exists 'SRR8478641_2' || true)"
gzs="$(_compress_if_exists 'SRR8478641' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_S41_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_S41_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478642"
gz1="$(_compress_if_exists 'SRR8478642_1' || true)"
gz2="$(_compress_if_exists 'SRR8478642_2' || true)"
gzs="$(_compress_if_exists 'SRR8478642' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_S42_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_S42_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478643"
gz1="$(_compress_if_exists 'SRR8478643_1' || true)"
gz2="$(_compress_if_exists 'SRR8478643_2' || true)"
gzs="$(_compress_if_exists 'SRR8478643' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_S43_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_S43_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478644"
gz1="$(_compress_if_exists 'SRR8478644_1' || true)"
gz2="$(_compress_if_exists 'SRR8478644_2' || true)"
gzs="$(_compress_if_exists 'SRR8478644' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C30_ileum_S44_L006_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C30_ileum_S44_L006_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478645"
gz1="$(_compress_if_exists 'SRR8478645_1' || true)"
gz2="$(_compress_if_exists 'SRR8478645_2' || true)"
gzs="$(_compress_if_exists 'SRR8478645' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_ileum_S17_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_ileum_S17_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478646"
gz1="$(_compress_if_exists 'SRR8478646_1' || true)"
gz2="$(_compress_if_exists 'SRR8478646_2' || true)"
gzs="$(_compress_if_exists 'SRR8478646' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_ileum_S18_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_ileum_S18_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478647"
gz1="$(_compress_if_exists 'SRR8478647_1' || true)"
gz2="$(_compress_if_exists 'SRR8478647_2' || true)"
gzs="$(_compress_if_exists 'SRR8478647' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_ileum_S19_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_ileum_S19_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478648"
gz1="$(_compress_if_exists 'SRR8478648_1' || true)"
gz2="$(_compress_if_exists 'SRR8478648_2' || true)"
gzs="$(_compress_if_exists 'SRR8478648' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C33_ileum_S20_L005_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C33_ileum_S20_L005_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478649"
gz1="$(_compress_if_exists 'SRR8478649_1' || true)"
gz2="$(_compress_if_exists 'SRR8478649_2' || true)"
gzs="$(_compress_if_exists 'SRR8478649' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumBCR_S1_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumBCR_S1_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478650"
gz1="$(_compress_if_exists 'SRR8478650_1' || true)"
gz2="$(_compress_if_exists 'SRR8478650_2' || true)"
gzs="$(_compress_if_exists 'SRR8478650' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9_Rectum_BCR_S1_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9_Rectum_BCR_S1_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478651"
gz1="$(_compress_if_exists 'SRR8478651_1' || true)"
gz2="$(_compress_if_exists 'SRR8478651_2' || true)"
gzs="$(_compress_if_exists 'SRR8478651' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumBCR_S2_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumBCR_S2_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478652"
gz1="$(_compress_if_exists 'SRR8478652_1' || true)"
gz2="$(_compress_if_exists 'SRR8478652_2' || true)"
gzs="$(_compress_if_exists 'SRR8478652' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumBCR_S3_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumBCR_S3_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478653"
gz1="$(_compress_if_exists 'SRR8478653_1' || true)"
gz2="$(_compress_if_exists 'SRR8478653_2' || true)"
gzs="$(_compress_if_exists 'SRR8478653' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumBCR_S4_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumBCR_S4_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478654"
gz1="$(_compress_if_exists 'SRR8478654_1' || true)"
gz2="$(_compress_if_exists 'SRR8478654_2' || true)"
gzs="$(_compress_if_exists 'SRR8478654' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumBCR_S10_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumBCR_S10_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478655"
gz1="$(_compress_if_exists 'SRR8478655_1' || true)"
gz2="$(_compress_if_exists 'SRR8478655_2' || true)"
gzs="$(_compress_if_exists 'SRR8478655' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumBCR_S11_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumBCR_S11_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478656"
gz1="$(_compress_if_exists 'SRR8478656_1' || true)"
gz2="$(_compress_if_exists 'SRR8478656_2' || true)"
gzs="$(_compress_if_exists 'SRR8478656' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumBCR_S12_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumBCR_S12_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478657"
gz1="$(_compress_if_exists 'SRR8478657_1' || true)"
gz2="$(_compress_if_exists 'SRR8478657_2' || true)"
gzs="$(_compress_if_exists 'SRR8478657' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12_Rectum_BCR_S36_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12_Rectum_BCR_S36_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478658"
gz1="$(_compress_if_exists 'SRR8478658_1' || true)"
gz2="$(_compress_if_exists 'SRR8478658_2' || true)"
gzs="$(_compress_if_exists 'SRR8478658' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumBCR_S9_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumBCR_S9_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478659"
gz1="$(_compress_if_exists 'SRR8478659_1' || true)"
gz2="$(_compress_if_exists 'SRR8478659_2' || true)"
gzs="$(_compress_if_exists 'SRR8478659' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB33_B_S77_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB33_B_S77_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478660"
gz1="$(_compress_if_exists 'SRR8478660_1' || true)"
gz2="$(_compress_if_exists 'SRR8478660_2' || true)"
gzs="$(_compress_if_exists 'SRR8478660' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB33_B_S77_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB33_B_S77_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478661"
gz1="$(_compress_if_exists 'SRR8478661_1' || true)"
gz2="$(_compress_if_exists 'SRR8478661_2' || true)"
gzs="$(_compress_if_exists 'SRR8478661' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB29_B_S69_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB29_B_S69_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478662"
gz1="$(_compress_if_exists 'SRR8478662_1' || true)"
gz2="$(_compress_if_exists 'SRR8478662_2' || true)"
gzs="$(_compress_if_exists 'SRR8478662' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB29_B_S69_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB29_B_S69_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478663"
gz1="$(_compress_if_exists 'SRR8478663_1' || true)"
gz2="$(_compress_if_exists 'SRR8478663_2' || true)"
gzs="$(_compress_if_exists 'SRR8478663' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB31_B_S73_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB31_B_S73_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478664"
gz1="$(_compress_if_exists 'SRR8478664_1' || true)"
gz2="$(_compress_if_exists 'SRR8478664_2' || true)"
gzs="$(_compress_if_exists 'SRR8478664' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB31_B_S73_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB31_B_S73_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478665"
gz1="$(_compress_if_exists 'SRR8478665_1' || true)"
gz2="$(_compress_if_exists 'SRR8478665_2' || true)"
gzs="$(_compress_if_exists 'SRR8478665' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB17_B_S45_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB17_B_S45_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478666"
gz1="$(_compress_if_exists 'SRR8478666_1' || true)"
gz2="$(_compress_if_exists 'SRR8478666_2' || true)"
gzs="$(_compress_if_exists 'SRR8478666' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB17_B_S45_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB17_B_S45_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478667"
gz1="$(_compress_if_exists 'SRR8478667_1' || true)"
gz2="$(_compress_if_exists 'SRR8478667_2' || true)"
gzs="$(_compress_if_exists 'SRR8478667' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB19_B_S49_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB19_B_S49_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478668"
gz1="$(_compress_if_exists 'SRR8478668_1' || true)"
gz2="$(_compress_if_exists 'SRR8478668_2' || true)"
gzs="$(_compress_if_exists 'SRR8478668' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB19_B_S49_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB19_B_S49_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478669"
gz1="$(_compress_if_exists 'SRR8478669_1' || true)"
gz2="$(_compress_if_exists 'SRR8478669_2' || true)"
gzs="$(_compress_if_exists 'SRR8478669' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB21_B_S53_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB21_B_S53_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478670"
gz1="$(_compress_if_exists 'SRR8478670_1' || true)"
gz2="$(_compress_if_exists 'SRR8478670_2' || true)"
gzs="$(_compress_if_exists 'SRR8478670' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB21_B_S53_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB21_B_S53_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478671"
gz1="$(_compress_if_exists 'SRR8478671_1' || true)"
gz2="$(_compress_if_exists 'SRR8478671_2' || true)"
gzs="$(_compress_if_exists 'SRR8478671' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB25_B_S61_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB25_B_S61_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478672"
gz1="$(_compress_if_exists 'SRR8478672_1' || true)"
gz2="$(_compress_if_exists 'SRR8478672_2' || true)"
gzs="$(_compress_if_exists 'SRR8478672' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB25_B_S61_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB25_B_S61_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478673"
gz1="$(_compress_if_exists 'SRR8478673_1' || true)"
gz2="$(_compress_if_exists 'SRR8478673_2' || true)"
gzs="$(_compress_if_exists 'SRR8478673' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_BCR_S11_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_BCR_S11_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478674"
gz1="$(_compress_if_exists 'SRR8478674_1' || true)"
gz2="$(_compress_if_exists 'SRR8478674_2' || true)"
gzs="$(_compress_if_exists 'SRR8478674' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_BCR_S14_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_BCR_S14_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478675"
gz1="$(_compress_if_exists 'SRR8478675_1' || true)"
gz2="$(_compress_if_exists 'SRR8478675_2' || true)"
gzs="$(_compress_if_exists 'SRR8478675' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB06_B_S23_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB06_B_S23_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478676"
gz1="$(_compress_if_exists 'SRR8478676_1' || true)"
gz2="$(_compress_if_exists 'SRR8478676_2' || true)"
gzs="$(_compress_if_exists 'SRR8478676' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB06_B_S23_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB06_B_S23_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478677"
gz1="$(_compress_if_exists 'SRR8478677_1' || true)"
gz2="$(_compress_if_exists 'SRR8478677_2' || true)"
gzs="$(_compress_if_exists 'SRR8478677' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB12_B_S35_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB12_B_S35_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478678"
gz1="$(_compress_if_exists 'SRR8478678_1' || true)"
gz2="$(_compress_if_exists 'SRR8478678_2' || true)"
gzs="$(_compress_if_exists 'SRR8478678' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB12_B_S35_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB12_B_S35_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478679"
gz1="$(_compress_if_exists 'SRR8478679_1' || true)"
gz2="$(_compress_if_exists 'SRR8478679_2' || true)"
gzs="$(_compress_if_exists 'SRR8478679' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB15_B_S41_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB15_B_S41_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478680"
gz1="$(_compress_if_exists 'SRR8478680_1' || true)"
gz2="$(_compress_if_exists 'SRR8478680_2' || true)"
gzs="$(_compress_if_exists 'SRR8478680' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB15_B_S41_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB15_B_S41_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478681"
gz1="$(_compress_if_exists 'SRR8478681_1' || true)"
gz2="$(_compress_if_exists 'SRR8478681_2' || true)"
gzs="$(_compress_if_exists 'SRR8478681' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCBCR_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCBCR_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478682"
gz1="$(_compress_if_exists 'SRR8478682_1' || true)"
gz2="$(_compress_if_exists 'SRR8478682_2' || true)"
gzs="$(_compress_if_exists 'SRR8478682' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCBCR_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCBCR_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478683"
gz1="$(_compress_if_exists 'SRR8478683_1' || true)"
gz2="$(_compress_if_exists 'SRR8478683_2' || true)"
gzs="$(_compress_if_exists 'SRR8478683' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCBCR_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCBCR_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478684"
gz1="$(_compress_if_exists 'SRR8478684_1' || true)"
gz2="$(_compress_if_exists 'SRR8478684_2' || true)"
gzs="$(_compress_if_exists 'SRR8478684' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCBCR_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCBCR_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478685"
gz1="$(_compress_if_exists 'SRR8478685_1' || true)"
gz2="$(_compress_if_exists 'SRR8478685_2' || true)"
gzs="$(_compress_if_exists 'SRR8478685' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12_pBMC_BCR_S34_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12_pBMC_BCR_S34_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478686"
gz1="$(_compress_if_exists 'SRR8478686_1' || true)"
gz2="$(_compress_if_exists 'SRR8478686_2' || true)"
gzs="$(_compress_if_exists 'SRR8478686' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB32_B_S75_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB32_B_S75_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478687"
gz1="$(_compress_if_exists 'SRR8478687_1' || true)"
gz2="$(_compress_if_exists 'SRR8478687_2' || true)"
gzs="$(_compress_if_exists 'SRR8478687' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB32_B_S75_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB32_B_S75_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478688"
gz1="$(_compress_if_exists 'SRR8478688_1' || true)"
gz2="$(_compress_if_exists 'SRR8478688_2' || true)"
gzs="$(_compress_if_exists 'SRR8478688' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB28_B_S67_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB28_B_S67_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478689"
gz1="$(_compress_if_exists 'SRR8478689_1' || true)"
gz2="$(_compress_if_exists 'SRR8478689_2' || true)"
gzs="$(_compress_if_exists 'SRR8478689' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB28_B_S67_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB28_B_S67_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478690"
gz1="$(_compress_if_exists 'SRR8478690_1' || true)"
gz2="$(_compress_if_exists 'SRR8478690_2' || true)"
gzs="$(_compress_if_exists 'SRR8478690' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB30_B_S71_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB30_B_S71_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478691"
gz1="$(_compress_if_exists 'SRR8478691_1' || true)"
gz2="$(_compress_if_exists 'SRR8478691_2' || true)"
gzs="$(_compress_if_exists 'SRR8478691' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB30_B_S71_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB30_B_S71_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478692"
gz1="$(_compress_if_exists 'SRR8478692_1' || true)"
gz2="$(_compress_if_exists 'SRR8478692_2' || true)"
gzs="$(_compress_if_exists 'SRR8478692' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB16_B_S43_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB16_B_S43_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478693"
gz1="$(_compress_if_exists 'SRR8478693_1' || true)"
gz2="$(_compress_if_exists 'SRR8478693_2' || true)"
gzs="$(_compress_if_exists 'SRR8478693' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB16_B_S43_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB16_B_S43_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478694"
gz1="$(_compress_if_exists 'SRR8478694_1' || true)"
gz2="$(_compress_if_exists 'SRR8478694_2' || true)"
gzs="$(_compress_if_exists 'SRR8478694' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB18_B_S47_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB18_B_S47_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478695"
gz1="$(_compress_if_exists 'SRR8478695_1' || true)"
gz2="$(_compress_if_exists 'SRR8478695_2' || true)"
gzs="$(_compress_if_exists 'SRR8478695' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB18_B_S47_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB18_B_S47_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478696"
gz1="$(_compress_if_exists 'SRR8478696_1' || true)"
gz2="$(_compress_if_exists 'SRR8478696_2' || true)"
gzs="$(_compress_if_exists 'SRR8478696' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB20_B_S51_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB20_B_S51_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478697"
gz1="$(_compress_if_exists 'SRR8478697_1' || true)"
gz2="$(_compress_if_exists 'SRR8478697_2' || true)"
gzs="$(_compress_if_exists 'SRR8478697' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB20_B_S51_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB20_B_S51_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478698"
gz1="$(_compress_if_exists 'SRR8478698_1' || true)"
gz2="$(_compress_if_exists 'SRR8478698_2' || true)"
gzs="$(_compress_if_exists 'SRR8478698' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB22_B_S55_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB22_B_S55_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478699"
gz1="$(_compress_if_exists 'SRR8478699_1' || true)"
gz2="$(_compress_if_exists 'SRR8478699_2' || true)"
gzs="$(_compress_if_exists 'SRR8478699' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB22_B_S55_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB22_B_S55_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478700"
gz1="$(_compress_if_exists 'SRR8478700_1' || true)"
gz2="$(_compress_if_exists 'SRR8478700_2' || true)"
gzs="$(_compress_if_exists 'SRR8478700' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB24_B_S59_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB24_B_S59_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478701"
gz1="$(_compress_if_exists 'SRR8478701_1' || true)"
gz2="$(_compress_if_exists 'SRR8478701_2' || true)"
gzs="$(_compress_if_exists 'SRR8478701' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB24_B_S59_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB24_B_S59_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478702"
gz1="$(_compress_if_exists 'SRR8478702_1' || true)"
gz2="$(_compress_if_exists 'SRR8478702_2' || true)"
gzs="$(_compress_if_exists 'SRR8478702' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_BCR_S12_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_BCR_S12_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478703"
gz1="$(_compress_if_exists 'SRR8478703_1' || true)"
gz2="$(_compress_if_exists 'SRR8478703_2' || true)"
gzs="$(_compress_if_exists 'SRR8478703' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_BCR_S15_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_BCR_S15_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478704"
gz1="$(_compress_if_exists 'SRR8478704_1' || true)"
gz2="$(_compress_if_exists 'SRR8478704_2' || true)"
gzs="$(_compress_if_exists 'SRR8478704' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB10_B_S31_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB10_B_S31_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478705"
gz1="$(_compress_if_exists 'SRR8478705_1' || true)"
gz2="$(_compress_if_exists 'SRR8478705_2' || true)"
gzs="$(_compress_if_exists 'SRR8478705' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB10_B_S31_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB10_B_S31_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478706"
gz1="$(_compress_if_exists 'SRR8478706_1' || true)"
gz2="$(_compress_if_exists 'SRR8478706_2' || true)"
gzs="$(_compress_if_exists 'SRR8478706' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB13_B_S37_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB13_B_S37_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478707"
gz1="$(_compress_if_exists 'SRR8478707_1' || true)"
gz2="$(_compress_if_exists 'SRR8478707_2' || true)"
gzs="$(_compress_if_exists 'SRR8478707' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB13_B_S37_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB13_B_S37_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478708"
gz1="$(_compress_if_exists 'SRR8478708_1' || true)"
gz2="$(_compress_if_exists 'SRR8478708_2' || true)"
gzs="$(_compress_if_exists 'SRR8478708' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB07_B_S25_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB07_B_S25_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478709"
gz1="$(_compress_if_exists 'SRR8478709_1' || true)"
gz2="$(_compress_if_exists 'SRR8478709_2' || true)"
gzs="$(_compress_if_exists 'SRR8478709' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB07_B_S25_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB07_B_S25_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478710"
gz1="$(_compress_if_exists 'SRR8478710_1' || true)"
gz2="$(_compress_if_exists 'SRR8478710_2' || true)"
gzs="$(_compress_if_exists 'SRR8478710' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_BCR_S10_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_BCR_S10_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478711"
gz1="$(_compress_if_exists 'SRR8478711_1' || true)"
gz2="$(_compress_if_exists 'SRR8478711_2' || true)"
gzs="$(_compress_if_exists 'SRR8478711' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_BCR_S13_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_BCR_S13_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478712"
gz1="$(_compress_if_exists 'SRR8478712_1' || true)"
gz2="$(_compress_if_exists 'SRR8478712_2' || true)"
gzs="$(_compress_if_exists 'SRR8478712' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB11_B_S33_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB11_B_S33_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478713"
gz1="$(_compress_if_exists 'SRR8478713_1' || true)"
gz2="$(_compress_if_exists 'SRR8478713_2' || true)"
gzs="$(_compress_if_exists 'SRR8478713' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB11_B_S33_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB11_B_S33_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478714"
gz1="$(_compress_if_exists 'SRR8478714_1' || true)"
gz2="$(_compress_if_exists 'SRR8478714_2' || true)"
gzs="$(_compress_if_exists 'SRR8478714' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB14_B_S39_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB14_B_S39_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478715"
gz1="$(_compress_if_exists 'SRR8478715_1' || true)"
gz2="$(_compress_if_exists 'SRR8478715_2' || true)"
gzs="$(_compress_if_exists 'SRR8478715' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB14_B_S39_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB14_B_S39_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478716"
gz1="$(_compress_if_exists 'SRR8478716_1' || true)"
gz2="$(_compress_if_exists 'SRR8478716_2' || true)"
gzs="$(_compress_if_exists 'SRR8478716' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB08_B_S27_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB08_B_S27_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478717"
gz1="$(_compress_if_exists 'SRR8478717_1' || true)"
gz2="$(_compress_if_exists 'SRR8478717_2' || true)"
gzs="$(_compress_if_exists 'SRR8478717' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB08_B_S27_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB08_B_S27_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478718"
gz1="$(_compress_if_exists 'SRR8478718_1' || true)"
gz2="$(_compress_if_exists 'SRR8478718_2' || true)"
gzs="$(_compress_if_exists 'SRR8478718' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumTCR_S17_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumTCR_S17_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478719"
gz1="$(_compress_if_exists 'SRR8478719_1' || true)"
gz2="$(_compress_if_exists 'SRR8478719_2' || true)"
gzs="$(_compress_if_exists 'SRR8478719' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumTCR_S18_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumTCR_S18_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478720"
gz1="$(_compress_if_exists 'SRR8478720_1' || true)"
gz2="$(_compress_if_exists 'SRR8478720_2' || true)"
gzs="$(_compress_if_exists 'SRR8478720' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumTCR_S19_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumTCR_S19_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478721"
gz1="$(_compress_if_exists 'SRR8478721_1' || true)"
gz2="$(_compress_if_exists 'SRR8478721_2' || true)"
gzs="$(_compress_if_exists 'SRR8478721' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9RectumTCR_S20_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9RectumTCR_S20_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478722"
gz1="$(_compress_if_exists 'SRR8478722_1' || true)"
gz2="$(_compress_if_exists 'SRR8478722_2' || true)"
gzs="$(_compress_if_exists 'SRR8478722' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C9_Rectum_TCR_S2_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C9_Rectum_TCR_S2_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478723"
gz1="$(_compress_if_exists 'SRR8478723_1' || true)"
gz2="$(_compress_if_exists 'SRR8478723_2' || true)"
gzs="$(_compress_if_exists 'SRR8478723' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumTCR_1-10_S25_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumTCR_1-10_S25_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478724"
gz1="$(_compress_if_exists 'SRR8478724_1' || true)"
gz2="$(_compress_if_exists 'SRR8478724_2' || true)"
gzs="$(_compress_if_exists 'SRR8478724' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumTCR_1-10_S26_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumTCR_1-10_S26_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478725"
gz1="$(_compress_if_exists 'SRR8478725_1' || true)"
gz2="$(_compress_if_exists 'SRR8478725_2' || true)"
gzs="$(_compress_if_exists 'SRR8478725' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumTCR_1-10_S27_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumTCR_1-10_S27_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478726"
gz1="$(_compress_if_exists 'SRR8478726_1' || true)"
gz2="$(_compress_if_exists 'SRR8478726_2' || true)"
gzs="$(_compress_if_exists 'SRR8478726' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12RectumTCR_1-10_S28_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12RectumTCR_1-10_S28_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478727"
gz1="$(_compress_if_exists 'SRR8478727_1' || true)"
gz2="$(_compress_if_exists 'SRR8478727_2' || true)"
gzs="$(_compress_if_exists 'SRR8478727' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12_Rectum_TCR_S37_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12_Rectum_TCR_S37_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478728"
gz1="$(_compress_if_exists 'SRR8478728_1' || true)"
gz2="$(_compress_if_exists 'SRR8478728_2' || true)"
gzs="$(_compress_if_exists 'SRR8478728' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB33_T_S78_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB33_T_S78_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478729"
gz1="$(_compress_if_exists 'SRR8478729_1' || true)"
gz2="$(_compress_if_exists 'SRR8478729_2' || true)"
gzs="$(_compress_if_exists 'SRR8478729' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB33_T_S78_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB33_T_S78_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478730"
gz1="$(_compress_if_exists 'SRR8478730_1' || true)"
gz2="$(_compress_if_exists 'SRR8478730_2' || true)"
gzs="$(_compress_if_exists 'SRR8478730' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB29_T_S70_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB29_T_S70_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478731"
gz1="$(_compress_if_exists 'SRR8478731_1' || true)"
gz2="$(_compress_if_exists 'SRR8478731_2' || true)"
gzs="$(_compress_if_exists 'SRR8478731' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB29_T_S70_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB29_T_S70_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478732"
gz1="$(_compress_if_exists 'SRR8478732_1' || true)"
gz2="$(_compress_if_exists 'SRR8478732_2' || true)"
gzs="$(_compress_if_exists 'SRR8478732' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB31_T_S74_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB31_T_S74_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478733"
gz1="$(_compress_if_exists 'SRR8478733_1' || true)"
gz2="$(_compress_if_exists 'SRR8478733_2' || true)"
gzs="$(_compress_if_exists 'SRR8478733' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB31_T_S74_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB31_T_S74_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478734"
gz1="$(_compress_if_exists 'SRR8478734_1' || true)"
gz2="$(_compress_if_exists 'SRR8478734_2' || true)"
gzs="$(_compress_if_exists 'SRR8478734' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB17_T_S46_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB17_T_S46_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478735"
gz1="$(_compress_if_exists 'SRR8478735_1' || true)"
gz2="$(_compress_if_exists 'SRR8478735_2' || true)"
gzs="$(_compress_if_exists 'SRR8478735' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB17_T_S46_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB17_T_S46_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478736"
gz1="$(_compress_if_exists 'SRR8478736_1' || true)"
gz2="$(_compress_if_exists 'SRR8478736_2' || true)"
gzs="$(_compress_if_exists 'SRR8478736' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB19_T_S50_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB19_T_S50_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478737"
gz1="$(_compress_if_exists 'SRR8478737_1' || true)"
gz2="$(_compress_if_exists 'SRR8478737_2' || true)"
gzs="$(_compress_if_exists 'SRR8478737' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB19_T_S50_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB19_T_S50_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478738"
gz1="$(_compress_if_exists 'SRR8478738_1' || true)"
gz2="$(_compress_if_exists 'SRR8478738_2' || true)"
gzs="$(_compress_if_exists 'SRR8478738' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB21_T_S54_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB21_T_S54_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478739"
gz1="$(_compress_if_exists 'SRR8478739_1' || true)"
gz2="$(_compress_if_exists 'SRR8478739_2' || true)"
gzs="$(_compress_if_exists 'SRR8478739' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB21_T_S54_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB21_T_S54_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478740"
gz1="$(_compress_if_exists 'SRR8478740_1' || true)"
gz2="$(_compress_if_exists 'SRR8478740_2' || true)"
gzs="$(_compress_if_exists 'SRR8478740' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB23_T_S58_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB23_T_S58_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478741"
gz1="$(_compress_if_exists 'SRR8478741_1' || true)"
gz2="$(_compress_if_exists 'SRR8478741_2' || true)"
gzs="$(_compress_if_exists 'SRR8478741' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB23_T_S58_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB23_T_S58_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478742"
gz1="$(_compress_if_exists 'SRR8478742_1' || true)"
gz2="$(_compress_if_exists 'SRR8478742_2' || true)"
gzs="$(_compress_if_exists 'SRR8478742' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB25_T_S62_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB25_T_S62_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478743"
gz1="$(_compress_if_exists 'SRR8478743_1' || true)"
gz2="$(_compress_if_exists 'SRR8478743_2' || true)"
gzs="$(_compress_if_exists 'SRR8478743' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB25_T_S62_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB25_T_S62_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478744"
gz1="$(_compress_if_exists 'SRR8478744_1' || true)"
gz2="$(_compress_if_exists 'SRR8478744_2' || true)"
gzs="$(_compress_if_exists 'SRR8478744' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_R_TCR_S26_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_R_TCR_S26_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478745"
gz1="$(_compress_if_exists 'SRR8478745_1' || true)"
gz2="$(_compress_if_exists 'SRR8478745_2' || true)"
gzs="$(_compress_if_exists 'SRR8478745' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_R_TCR_S18_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_R_TCR_S18_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478746"
gz1="$(_compress_if_exists 'SRR8478746_1' || true)"
gz2="$(_compress_if_exists 'SRR8478746_2' || true)"
gzs="$(_compress_if_exists 'SRR8478746' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB06_T_S24_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB06_T_S24_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478747"
gz1="$(_compress_if_exists 'SRR8478747_1' || true)"
gz2="$(_compress_if_exists 'SRR8478747_2' || true)"
gzs="$(_compress_if_exists 'SRR8478747' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB06_T_S24_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB06_T_S24_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478748"
gz1="$(_compress_if_exists 'SRR8478748_1' || true)"
gz2="$(_compress_if_exists 'SRR8478748_2' || true)"
gzs="$(_compress_if_exists 'SRR8478748' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB12_T_S36_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB12_T_S36_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478749"
gz1="$(_compress_if_exists 'SRR8478749_1' || true)"
gz2="$(_compress_if_exists 'SRR8478749_2' || true)"
gzs="$(_compress_if_exists 'SRR8478749' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB12_T_S36_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB12_T_S36_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478750"
gz1="$(_compress_if_exists 'SRR8478750_1' || true)"
gz2="$(_compress_if_exists 'SRR8478750_2' || true)"
gzs="$(_compress_if_exists 'SRR8478750' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB15_T_S42_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB15_T_S42_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478751"
gz1="$(_compress_if_exists 'SRR8478751_1' || true)"
gz2="$(_compress_if_exists 'SRR8478751_2' || true)"
gzs="$(_compress_if_exists 'SRR8478751' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB15_T_S42_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB15_T_S42_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478752"
gz1="$(_compress_if_exists 'SRR8478752_1' || true)"
gz2="$(_compress_if_exists 'SRR8478752_2' || true)"
gzs="$(_compress_if_exists 'SRR8478752' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCTCR_S29_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCTCR_S29_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478753"
gz1="$(_compress_if_exists 'SRR8478753_1' || true)"
gz2="$(_compress_if_exists 'SRR8478753_2' || true)"
gzs="$(_compress_if_exists 'SRR8478753' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCTCR_S30_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCTCR_S30_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478754"
gz1="$(_compress_if_exists 'SRR8478754_1' || true)"
gz2="$(_compress_if_exists 'SRR8478754_2' || true)"
gzs="$(_compress_if_exists 'SRR8478754' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCTCR_S31_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCTCR_S31_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478755"
gz1="$(_compress_if_exists 'SRR8478755_1' || true)"
gz2="$(_compress_if_exists 'SRR8478755_2' || true)"
gzs="$(_compress_if_exists 'SRR8478755' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12pBMCTCR_S32_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12pBMCTCR_S32_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478756"
gz1="$(_compress_if_exists 'SRR8478756_1' || true)"
gz2="$(_compress_if_exists 'SRR8478756_2' || true)"
gzs="$(_compress_if_exists 'SRR8478756' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C12_pBMC_TCR_S35_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C12_pBMC_TCR_S35_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478757"
gz1="$(_compress_if_exists 'SRR8478757_1' || true)"
gz2="$(_compress_if_exists 'SRR8478757_2' || true)"
gzs="$(_compress_if_exists 'SRR8478757' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB32_T_S76_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB32_T_S76_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478758"
gz1="$(_compress_if_exists 'SRR8478758_1' || true)"
gz2="$(_compress_if_exists 'SRR8478758_2' || true)"
gzs="$(_compress_if_exists 'SRR8478758' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB32_T_S76_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB32_T_S76_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478759"
gz1="$(_compress_if_exists 'SRR8478759_1' || true)"
gz2="$(_compress_if_exists 'SRR8478759_2' || true)"
gzs="$(_compress_if_exists 'SRR8478759' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB28_T_S68_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB28_T_S68_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478760"
gz1="$(_compress_if_exists 'SRR8478760_1' || true)"
gz2="$(_compress_if_exists 'SRR8478760_2' || true)"
gzs="$(_compress_if_exists 'SRR8478760' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB28_T_S68_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB28_T_S68_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478761"
gz1="$(_compress_if_exists 'SRR8478761_1' || true)"
gz2="$(_compress_if_exists 'SRR8478761_2' || true)"
gzs="$(_compress_if_exists 'SRR8478761' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB30_T_S72_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB30_T_S72_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478762"
gz1="$(_compress_if_exists 'SRR8478762_1' || true)"
gz2="$(_compress_if_exists 'SRR8478762_2' || true)"
gzs="$(_compress_if_exists 'SRR8478762' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB30_T_S72_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB30_T_S72_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478763"
gz1="$(_compress_if_exists 'SRR8478763_1' || true)"
gz2="$(_compress_if_exists 'SRR8478763_2' || true)"
gzs="$(_compress_if_exists 'SRR8478763' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB16_T_S44_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB16_T_S44_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478764"
gz1="$(_compress_if_exists 'SRR8478764_1' || true)"
gz2="$(_compress_if_exists 'SRR8478764_2' || true)"
gzs="$(_compress_if_exists 'SRR8478764' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB16_T_S44_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB16_T_S44_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478765"
gz1="$(_compress_if_exists 'SRR8478765_1' || true)"
gz2="$(_compress_if_exists 'SRR8478765_2' || true)"
gzs="$(_compress_if_exists 'SRR8478765' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB18_T_S48_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB18_T_S48_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478766"
gz1="$(_compress_if_exists 'SRR8478766_1' || true)"
gz2="$(_compress_if_exists 'SRR8478766_2' || true)"
gzs="$(_compress_if_exists 'SRR8478766' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB18_T_S48_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB18_T_S48_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478767"
gz1="$(_compress_if_exists 'SRR8478767_1' || true)"
gz2="$(_compress_if_exists 'SRR8478767_2' || true)"
gzs="$(_compress_if_exists 'SRR8478767' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB20_T_S52_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB20_T_S52_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478768"
gz1="$(_compress_if_exists 'SRR8478768_1' || true)"
gz2="$(_compress_if_exists 'SRR8478768_2' || true)"
gzs="$(_compress_if_exists 'SRR8478768' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB20_T_S52_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB20_T_S52_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478769"
gz1="$(_compress_if_exists 'SRR8478769_1' || true)"
gz2="$(_compress_if_exists 'SRR8478769_2' || true)"
gzs="$(_compress_if_exists 'SRR8478769' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB22_T_S56_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB22_T_S56_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478770"
gz1="$(_compress_if_exists 'SRR8478770_1' || true)"
gz2="$(_compress_if_exists 'SRR8478770_2' || true)"
gzs="$(_compress_if_exists 'SRR8478770' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB22_T_S56_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB22_T_S56_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478771"
gz1="$(_compress_if_exists 'SRR8478771_1' || true)"
gz2="$(_compress_if_exists 'SRR8478771_2' || true)"
gzs="$(_compress_if_exists 'SRR8478771' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB24_T_S60_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB24_T_S60_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478772"
gz1="$(_compress_if_exists 'SRR8478772_1' || true)"
gz2="$(_compress_if_exists 'SRR8478772_2' || true)"
gzs="$(_compress_if_exists 'SRR8478772' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB24_T_S60_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB24_T_S60_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478773"
gz1="$(_compress_if_exists 'SRR8478773_1' || true)"
gz2="$(_compress_if_exists 'SRR8478773_2' || true)"
gzs="$(_compress_if_exists 'SRR8478773' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_pBMC_TCR_S27_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_pBMC_TCR_S27_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478774"
gz1="$(_compress_if_exists 'SRR8478774_1' || true)"
gz2="$(_compress_if_exists 'SRR8478774_2' || true)"
gzs="$(_compress_if_exists 'SRR8478774' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_pBMC_TCR_S19_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_pBMC_TCR_S19_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478775"
gz1="$(_compress_if_exists 'SRR8478775_1' || true)"
gz2="$(_compress_if_exists 'SRR8478775_2' || true)"
gzs="$(_compress_if_exists 'SRR8478775' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB10_T_S32_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB10_T_S32_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478776"
gz1="$(_compress_if_exists 'SRR8478776_1' || true)"
gz2="$(_compress_if_exists 'SRR8478776_2' || true)"
gzs="$(_compress_if_exists 'SRR8478776' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB10_T_S32_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB10_T_S32_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478777"
gz1="$(_compress_if_exists 'SRR8478777_1' || true)"
gz2="$(_compress_if_exists 'SRR8478777_2' || true)"
gzs="$(_compress_if_exists 'SRR8478777' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB13_T_S38_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB13_T_S38_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478778"
gz1="$(_compress_if_exists 'SRR8478778_1' || true)"
gz2="$(_compress_if_exists 'SRR8478778_2' || true)"
gzs="$(_compress_if_exists 'SRR8478778' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB13_T_S38_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB13_T_S38_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478779"
gz1="$(_compress_if_exists 'SRR8478779_1' || true)"
gz2="$(_compress_if_exists 'SRR8478779_2' || true)"
gzs="$(_compress_if_exists 'SRR8478779' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB07_T_S26_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB07_T_S26_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478780"
gz1="$(_compress_if_exists 'SRR8478780_1' || true)"
gz2="$(_compress_if_exists 'SRR8478780_2' || true)"
gzs="$(_compress_if_exists 'SRR8478780' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB07_T_S26_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB07_T_S26_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478781"
gz1="$(_compress_if_exists 'SRR8478781_1' || true)"
gz2="$(_compress_if_exists 'SRR8478781_2' || true)"
gzs="$(_compress_if_exists 'SRR8478781' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C17_I_TCR_S25_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C17_I_TCR_S25_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478782"
gz1="$(_compress_if_exists 'SRR8478782_1' || true)"
gz2="$(_compress_if_exists 'SRR8478782_2' || true)"
gzs="$(_compress_if_exists 'SRR8478782' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "C18_I_TCR_S17_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "C18_I_TCR_S17_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478783"
gz1="$(_compress_if_exists 'SRR8478783_1' || true)"
gz2="$(_compress_if_exists 'SRR8478783_2' || true)"
gzs="$(_compress_if_exists 'SRR8478783' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB11_T_S34_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB11_T_S34_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478784"
gz1="$(_compress_if_exists 'SRR8478784_1' || true)"
gz2="$(_compress_if_exists 'SRR8478784_2' || true)"
gzs="$(_compress_if_exists 'SRR8478784' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB11_T_S34_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB11_T_S34_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478785"
gz1="$(_compress_if_exists 'SRR8478785_1' || true)"
gz2="$(_compress_if_exists 'SRR8478785_2' || true)"
gzs="$(_compress_if_exists 'SRR8478785' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB14_T_S40_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB14_T_S40_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478786"
gz1="$(_compress_if_exists 'SRR8478786_1' || true)"
gz2="$(_compress_if_exists 'SRR8478786_2' || true)"
gzs="$(_compress_if_exists 'SRR8478786' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB14_T_S40_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB14_T_S40_L003_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478787"
gz1="$(_compress_if_exists 'SRR8478787_1' || true)"
gz2="$(_compress_if_exists 'SRR8478787_2' || true)"
gzs="$(_compress_if_exists 'SRR8478787' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB08_T_S28_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB08_T_S28_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR8478788"
gz1="$(_compress_if_exists 'SRR8478788_1' || true)"
gz2="$(_compress_if_exists 'SRR8478788_2' || true)"
gzs="$(_compress_if_exists 'SRR8478788' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BB08_T_S28_L003_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BB08_T_S28_L003_R2_001.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478397/SRR8478397"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478398/SRR8478398"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478399/SRR8478399"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478400/SRR8478400"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478401/SRR8478401"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478402/SRR8478402"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478403/SRR8478403"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478404/SRR8478404"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478405/SRR8478405"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478406/SRR8478406"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478407/SRR8478407"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478408/SRR8478408"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478409/SRR8478409"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478410/SRR8478410"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478411/SRR8478411"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478412/SRR8478412"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478413/SRR8478413"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478414/SRR8478414"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478415/SRR8478415"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478416/SRR8478416"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478417/SRR8478417"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478418/SRR8478418"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478419/SRR8478419"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478420/SRR8478420"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478421/SRR8478421"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478422/SRR8478422"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478423/SRR8478423"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478424/SRR8478424"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478425/SRR8478425"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478426/SRR8478426"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478427/SRR8478427"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478428/SRR8478428"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478429/SRR8478429"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478430/SRR8478430"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478431/SRR8478431"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478432/SRR8478432"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478433/SRR8478433"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478434/SRR8478434"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478435/SRR8478435"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478436/SRR8478436"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478437/SRR8478437"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478438/SRR8478438"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478439/SRR8478439"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478440/SRR8478440"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478441/SRR8478441"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478442/SRR8478442"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478443/SRR8478443"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478444/SRR8478444"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478445/SRR8478445"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478446/SRR8478446"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478447/SRR8478447"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478448/SRR8478448"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478449/SRR8478449"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478450/SRR8478450"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478451/SRR8478451"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478452/SRR8478452"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478453/SRR8478453"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478454/SRR8478454"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478455/SRR8478455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478456/SRR8478456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478457/SRR8478457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478458/SRR8478458"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478459/SRR8478459"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478460/SRR8478460"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478461/SRR8478461"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478462/SRR8478462"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478463/SRR8478463"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478464/SRR8478464"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478465/SRR8478465"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478466/SRR8478466"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478467/SRR8478467"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478468/SRR8478468"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478469/SRR8478469"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478470/SRR8478470"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478471/SRR8478471"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478472/SRR8478472"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478473/SRR8478473"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478474/SRR8478474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478475/SRR8478475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478476/SRR8478476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478477/SRR8478477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478478/SRR8478478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478479/SRR8478479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478480/SRR8478480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478481/SRR8478481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478482/SRR8478482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478483/SRR8478483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478484/SRR8478484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478485/SRR8478485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478486/SRR8478486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478487/SRR8478487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478488/SRR8478488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478489/SRR8478489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478490/SRR8478490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478491/SRR8478491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478492/SRR8478492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478493/SRR8478493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478494/SRR8478494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478495/SRR8478495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478496/SRR8478496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478497/SRR8478497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478498/SRR8478498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478499/SRR8478499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478500/SRR8478500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478501/SRR8478501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478502/SRR8478502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478503/SRR8478503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478504/SRR8478504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478505/SRR8478505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478506/SRR8478506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478507/SRR8478507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478508/SRR8478508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478509/SRR8478509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478510/SRR8478510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478511/SRR8478511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478512/SRR8478512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478513/SRR8478513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478514/SRR8478514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478515/SRR8478515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478516/SRR8478516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478517/SRR8478517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478518/SRR8478518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478519/SRR8478519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478520/SRR8478520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478521/SRR8478521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478522/SRR8478522"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478523/SRR8478523"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478524/SRR8478524"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478525/SRR8478525"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478526/SRR8478526"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478527/SRR8478527"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478528/SRR8478528"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478529/SRR8478529"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478530/SRR8478530"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478531/SRR8478531"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478532/SRR8478532"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478533/SRR8478533"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478534/SRR8478534"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478535/SRR8478535"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478536/SRR8478536"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478537/SRR8478537"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478538/SRR8478538"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478539/SRR8478539"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478540/SRR8478540"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478541/SRR8478541"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478542/SRR8478542"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478543/SRR8478543"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478544/SRR8478544"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478545/SRR8478545"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478546/SRR8478546"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478547/SRR8478547"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478548/SRR8478548"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478549/SRR8478549"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478550/SRR8478550"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478551/SRR8478551"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478552/SRR8478552"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478553/SRR8478553"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478554/SRR8478554"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478555/SRR8478555"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478556/SRR8478556"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478557/SRR8478557"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478558/SRR8478558"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478559/SRR8478559"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478560/SRR8478560"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478561/SRR8478561"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478562/SRR8478562"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478563/SRR8478563"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478564/SRR8478564"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478565/SRR8478565"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478566/SRR8478566"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478567/SRR8478567"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478568/SRR8478568"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478569/SRR8478569"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478570/SRR8478570"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478571/SRR8478571"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478572/SRR8478572"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478573/SRR8478573"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478574/SRR8478574"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478575/SRR8478575"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478576/SRR8478576"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478577/SRR8478577"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478578/SRR8478578"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478579/SRR8478579"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478580/SRR8478580"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478581/SRR8478581"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478582/SRR8478582"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478583/SRR8478583"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478584/SRR8478584"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478585/SRR8478585"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478586/SRR8478586"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478587/SRR8478587"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478588/SRR8478588"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478589/SRR8478589"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478590/SRR8478590"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478591/SRR8478591"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478592/SRR8478592"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478593/SRR8478593"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478594/SRR8478594"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478595/SRR8478595"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478596/SRR8478596"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478597/SRR8478597"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478598/SRR8478598"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478599/SRR8478599"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478600/SRR8478600"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478601/SRR8478601"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478602/SRR8478602"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478603/SRR8478603"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478604/SRR8478604"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478605/SRR8478605"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478606/SRR8478606"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478607/SRR8478607"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478608/SRR8478608"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478609/SRR8478609"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478610/SRR8478610"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478611/SRR8478611"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478612/SRR8478612"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478613/SRR8478613"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478614/SRR8478614"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478615/SRR8478615"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478616/SRR8478616"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478617/SRR8478617"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478618/SRR8478618"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478619/SRR8478619"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478620/SRR8478620"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478621/SRR8478621"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478622/SRR8478622"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478623/SRR8478623"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478624/SRR8478624"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478625/SRR8478625"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478626/SRR8478626"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478627/SRR8478627"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478628/SRR8478628"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478629/SRR8478629"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478630/SRR8478630"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478631/SRR8478631"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478632/SRR8478632"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478633/SRR8478633"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478634/SRR8478634"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478635/SRR8478635"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478636/SRR8478636"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478637/SRR8478637"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478638/SRR8478638"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478639/SRR8478639"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478640/SRR8478640"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478641/SRR8478641"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478642/SRR8478642"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478643/SRR8478643"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478644/SRR8478644"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478645/SRR8478645"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478646/SRR8478646"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478647/SRR8478647"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478648/SRR8478648"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478649/SRR8478649"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478650/SRR8478650"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478651/SRR8478651"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478652/SRR8478652"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478653/SRR8478653"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478654/SRR8478654"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478655/SRR8478655"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478656/SRR8478656"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478657/SRR8478657"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478658/SRR8478658"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478659/SRR8478659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478660/SRR8478660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478661/SRR8478661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478662/SRR8478662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478663/SRR8478663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478664/SRR8478664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478665/SRR8478665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478666/SRR8478666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478667/SRR8478667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478668/SRR8478668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478669/SRR8478669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478670/SRR8478670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478671/SRR8478671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478672/SRR8478672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478673/SRR8478673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478674/SRR8478674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478675/SRR8478675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478676/SRR8478676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478677/SRR8478677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478678/SRR8478678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478679/SRR8478679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478680/SRR8478680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478681/SRR8478681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478682/SRR8478682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478683/SRR8478683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478684/SRR8478684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478685/SRR8478685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478686/SRR8478686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478687/SRR8478687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478688/SRR8478688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478689/SRR8478689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478690/SRR8478690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478691/SRR8478691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478692/SRR8478692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478693/SRR8478693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478694/SRR8478694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478695/SRR8478695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478696/SRR8478696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478697/SRR8478697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478698/SRR8478698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478699/SRR8478699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478700/SRR8478700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478701/SRR8478701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478702/SRR8478702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478703/SRR8478703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478704/SRR8478704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478705/SRR8478705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478706/SRR8478706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478707/SRR8478707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478708/SRR8478708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478709/SRR8478709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478710/SRR8478710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478711/SRR8478711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478712/SRR8478712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478713/SRR8478713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478714/SRR8478714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478715/SRR8478715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478716/SRR8478716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478717/SRR8478717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478718/SRR8478718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478719/SRR8478719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478720/SRR8478720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478721/SRR8478721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478722/SRR8478722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478723/SRR8478723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478724/SRR8478724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478725/SRR8478725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478726/SRR8478726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478727/SRR8478727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478728/SRR8478728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478729/SRR8478729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478730/SRR8478730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478731/SRR8478731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478732/SRR8478732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478733/SRR8478733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478734/SRR8478734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478735/SRR8478735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478736/SRR8478736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478737/SRR8478737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478738/SRR8478738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478739/SRR8478739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478740/SRR8478740"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478741/SRR8478741"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478742/SRR8478742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478743/SRR8478743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478744/SRR8478744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478745/SRR8478745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478746/SRR8478746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478747/SRR8478747"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478748/SRR8478748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478749/SRR8478749"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478750/SRR8478750"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478751/SRR8478751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478752/SRR8478752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478753/SRR8478753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478754/SRR8478754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478755/SRR8478755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478756/SRR8478756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478757/SRR8478757"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478758/SRR8478758"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478759/SRR8478759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478760/SRR8478760"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478761/SRR8478761"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478762/SRR8478762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478763/SRR8478763"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478764/SRR8478764"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478765/SRR8478765"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478766/SRR8478766"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478767/SRR8478767"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478768/SRR8478768"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478769/SRR8478769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478770/SRR8478770"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478771/SRR8478771"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478772/SRR8478772"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478773/SRR8478773"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478774/SRR8478774"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478775/SRR8478775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478776/SRR8478776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478777/SRR8478777"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478778/SRR8478778"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478779/SRR8478779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478780/SRR8478780"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478781/SRR8478781"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478782/SRR8478782"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478783/SRR8478783"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478784/SRR8478784"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478785/SRR8478785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478786/SRR8478786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478787/SRR8478787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478788/SRR8478788"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478675/SRR8478675"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478676/SRR8478676"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478746/SRR8478746"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478747/SRR8478747"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478708/SRR8478708"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478709/SRR8478709"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478779/SRR8478779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478780/SRR8478780"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478716/SRR8478716"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478717/SRR8478717"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478787/SRR8478787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478787/SRR8478787"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478788/SRR8478788"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478704/SRR8478704"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478705/SRR8478705"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478775/SRR8478775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478775/SRR8478775"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478776/SRR8478776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478776/SRR8478776"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478712/SRR8478712"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478713/SRR8478713"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478783/SRR8478783"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478784/SRR8478784"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478677/SRR8478677"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478678/SRR8478678"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478748/SRR8478748"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478749/SRR8478749"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478706/SRR8478706"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478707/SRR8478707"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478777/SRR8478777"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478778/SRR8478778"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478714/SRR8478714"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478715/SRR8478715"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478785/SRR8478785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478785/SRR8478785"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478786/SRR8478786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478786/SRR8478786"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478679/SRR8478679"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478680/SRR8478680"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478750/SRR8478750"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478751/SRR8478751"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478692/SRR8478692"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478693/SRR8478693"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478763/SRR8478763"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478764/SRR8478764"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478665/SRR8478665"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478666/SRR8478666"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478734/SRR8478734"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478735/SRR8478735"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478694/SRR8478694"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478695/SRR8478695"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478765/SRR8478765"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478766/SRR8478766"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478667/SRR8478667"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478668/SRR8478668"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478736/SRR8478736"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478737/SRR8478737"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478696/SRR8478696"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478697/SRR8478697"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478767/SRR8478767"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478768/SRR8478768"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478669/SRR8478669"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478670/SRR8478670"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478738/SRR8478738"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478739/SRR8478739"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478698/SRR8478698"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478699/SRR8478699"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478769/SRR8478769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478769/SRR8478769"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478770/SRR8478770"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478740/SRR8478740"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478741/SRR8478741"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478700/SRR8478700"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478701/SRR8478701"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478771/SRR8478771"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478772/SRR8478772"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478671/SRR8478671"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478672/SRR8478672"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478742/SRR8478742"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478743/SRR8478743"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478688/SRR8478688"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478689/SRR8478689"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478759/SRR8478759"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478760/SRR8478760"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478661/SRR8478661"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478662/SRR8478662"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478730/SRR8478730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478730/SRR8478730"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478731/SRR8478731"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478690/SRR8478690"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478691/SRR8478691"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478761/SRR8478761"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478762/SRR8478762"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478663/SRR8478663"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478664/SRR8478664"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478732/SRR8478732"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478733/SRR8478733"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478686/SRR8478686"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478687/SRR8478687"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478757/SRR8478757"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478758/SRR8478758"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478659/SRR8478659"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478660/SRR8478660"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478728/SRR8478728"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478729/SRR8478729"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478681/SRR8478681"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478682/SRR8478682"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478683/SRR8478683"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478684/SRR8478684"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478685/SRR8478685"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478752/SRR8478752"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478753/SRR8478753"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478754/SRR8478754"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478755/SRR8478755"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478756/SRR8478756"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478654/SRR8478654"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478655/SRR8478655"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478656/SRR8478656"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478657/SRR8478657"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478658/SRR8478658"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478723/SRR8478723"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478724/SRR8478724"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478725/SRR8478725"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478726/SRR8478726"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478727/SRR8478727"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478710/SRR8478710"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478781/SRR8478781"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478702/SRR8478702"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478773/SRR8478773"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478673/SRR8478673"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478744/SRR8478744"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478711/SRR8478711"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478782/SRR8478782"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478703/SRR8478703"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478774/SRR8478774"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478674/SRR8478674"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478745/SRR8478745"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478649/SRR8478649"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478650/SRR8478650"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478651/SRR8478651"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478652/SRR8478652"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478653/SRR8478653"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478718/SRR8478718"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478719/SRR8478719"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478720/SRR8478720"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478721/SRR8478721"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478722/SRR8478722"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478779/SRR8478779"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478493/SRR8478493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478494/SRR8478494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478495/SRR8478495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478496/SRR8478496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478401/SRR8478401"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478402/SRR8478402"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478403/SRR8478403"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478404/SRR8478404"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478497/SRR8478497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478498/SRR8478498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478499/SRR8478499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478500/SRR8478500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478501/SRR8478501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478502/SRR8478502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478503/SRR8478503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478504/SRR8478504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478405/SRR8478405"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478406/SRR8478406"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478407/SRR8478407"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478408/SRR8478408"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478589/SRR8478589"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478597/SRR8478597"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478598/SRR8478598"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478599/SRR8478599"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478600/SRR8478600"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478601/SRR8478601"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478602/SRR8478602"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478603/SRR8478603"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478604/SRR8478604"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478590/SRR8478590"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478591/SRR8478591"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478592/SRR8478592"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478593/SRR8478593"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos9/sra-pub-zq-922/SRR008/478/SRR8478594.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478594/SRR8478594"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478595/SRR8478595"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478596/SRR8478596"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478537/SRR8478537"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478545/SRR8478545"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478546/SRR8478546"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478547/SRR8478547"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478548/SRR8478548"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478549/SRR8478549"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478550/SRR8478550"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478551/SRR8478551"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478552/SRR8478552"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478538/SRR8478538"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478539/SRR8478539"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478540/SRR8478540"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478541/SRR8478541"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478542/SRR8478542"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478543/SRR8478543"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478544/SRR8478544"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478441/SRR8478441"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478449/SRR8478449"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478450/SRR8478450"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478451/SRR8478451"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478452/SRR8478452"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478453/SRR8478453"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478454/SRR8478454"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478455/SRR8478455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478456/SRR8478456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478442/SRR8478442"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478443/SRR8478443"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478444/SRR8478444"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478445/SRR8478445"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478446/SRR8478446"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478447/SRR8478447"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478448/SRR8478448"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478605/SRR8478605"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478613/SRR8478613"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478614/SRR8478614"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478615/SRR8478615"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478616/SRR8478616"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478617/SRR8478617"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478618/SRR8478618"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478619/SRR8478619"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478620/SRR8478620"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478606/SRR8478606"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478607/SRR8478607"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478608/SRR8478608"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478609/SRR8478609"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478610/SRR8478610"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478611/SRR8478611"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478612/SRR8478612"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478553/SRR8478553"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478561/SRR8478561"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478562/SRR8478562"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478563/SRR8478563"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478564/SRR8478564"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478565/SRR8478565"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478566/SRR8478566"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478567/SRR8478567"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478568/SRR8478568"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478554/SRR8478554"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478555/SRR8478555"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478556/SRR8478556"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478557/SRR8478557"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478558/SRR8478558"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478559/SRR8478559"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478560/SRR8478560"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478457/SRR8478457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478465/SRR8478465"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478466/SRR8478466"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478467/SRR8478467"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478468/SRR8478468"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478469/SRR8478469"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478470/SRR8478470"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478471/SRR8478471"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478472/SRR8478472"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478458/SRR8478458"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478459/SRR8478459"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478460/SRR8478460"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478461/SRR8478461"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478462/SRR8478462"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478463/SRR8478463"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478464/SRR8478464"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478621/SRR8478621"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478622/SRR8478622"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478623/SRR8478623"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478624/SRR8478624"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478625/SRR8478625"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478626/SRR8478626"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478627/SRR8478627"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478628/SRR8478628"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478569/SRR8478569"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478570/SRR8478570"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478571/SRR8478571"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478572/SRR8478572"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478573/SRR8478573"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478574/SRR8478574"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478575/SRR8478575"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478576/SRR8478576"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478473/SRR8478473"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478474/SRR8478474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478475/SRR8478475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478476/SRR8478476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478477/SRR8478477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478478/SRR8478478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478479/SRR8478479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478480/SRR8478480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478629/SRR8478629"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478630/SRR8478630"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478631/SRR8478631"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478632/SRR8478632"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478633/SRR8478633"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478634/SRR8478634"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478635/SRR8478635"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478636/SRR8478636"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478577/SRR8478577"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478578/SRR8478578"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478579/SRR8478579"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478580/SRR8478580"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478481/SRR8478481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478482/SRR8478482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478483/SRR8478483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478484/SRR8478484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478637/SRR8478637"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478638/SRR8478638"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478639/SRR8478639"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478640/SRR8478640"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478641/SRR8478641"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478642/SRR8478642"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478643/SRR8478643"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478644/SRR8478644"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478581/SRR8478581"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478582/SRR8478582"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478583/SRR8478583"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478584/SRR8478584"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478485/SRR8478485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478486/SRR8478486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478487/SRR8478487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478488/SRR8478488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478489/SRR8478489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478490/SRR8478490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478491/SRR8478491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478492/SRR8478492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478645/SRR8478645"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478646/SRR8478646"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478647/SRR8478647"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478648/SRR8478648"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478585/SRR8478585"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478586/SRR8478586"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478587/SRR8478587"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478588/SRR8478588"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478397/SRR8478397"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478398/SRR8478398"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478399/SRR8478399"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478400/SRR8478400"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478513/SRR8478513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478514/SRR8478514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478515/SRR8478515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478516/SRR8478516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478517/SRR8478517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478518/SRR8478518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478519/SRR8478519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478520/SRR8478520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478417/SRR8478417"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478418/SRR8478418"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478419/SRR8478419"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478420/SRR8478420"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478421/SRR8478421"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478422/SRR8478422"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478423/SRR8478423"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478424/SRR8478424"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478521/SRR8478521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478522/SRR8478522"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478523/SRR8478523"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478524/SRR8478524"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478425/SRR8478425"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478426/SRR8478426"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478427/SRR8478427"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478428/SRR8478428"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478525/SRR8478525"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478526/SRR8478526"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478527/SRR8478527"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478528/SRR8478528"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478429/SRR8478429"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478430/SRR8478430"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478431/SRR8478431"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478432/SRR8478432"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478529/SRR8478529"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478530/SRR8478530"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478531/SRR8478531"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478532/SRR8478532"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478433/SRR8478433"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478434/SRR8478434"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478435/SRR8478435"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478436/SRR8478436"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478533/SRR8478533"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478534/SRR8478534"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478535/SRR8478535"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478536/SRR8478536"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478437/SRR8478437"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478438/SRR8478438"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478439/SRR8478439"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478440/SRR8478440"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478505/SRR8478505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478506/SRR8478506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478507/SRR8478507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478508/SRR8478508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478409/SRR8478409"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478410/SRR8478410"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478411/SRR8478411"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478412/SRR8478412"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478509/SRR8478509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478510/SRR8478510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478511/SRR8478511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478512/SRR8478512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478413/SRR8478413"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478414/SRR8478414"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478415/SRR8478415"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR8478416/SRR8478416"

echo "Download complete. Files saved to $OUTDIR"