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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_alternative_exons.bed.gz" -O "GSE85908_alternative_exons.bed.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_cisbp_metadata.csv.gz" -O "GSE85908_cisbp_metadata.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_cisbp_t_statistic.csv.gz" -O "GSE85908_cisbp_t_statistic.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_constitutive_exons.bed.gz" -O "GSE85908_constitutive_exons.bed.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_expression.csv.gz" -O "GSE85908_expression.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_expression_feature.csv.gz" -O "GSE85908_expression_feature.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_hg19_phastcons_placental_mammal.wig.gz" -O "GSE85908_hg19_phastcons_placental_mammal.wig.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_kmer_zscores.csv.gz" -O "GSE85908_kmer_zscores.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_kmer_zscores_metadata.csv.gz" -O "GSE85908_kmer_zscores_metadata.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_mapping_stats.csv.gz" -O "GSE85908_mapping_stats.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_metadata.csv.gz" -O "GSE85908_metadata.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_modalities_tidy.csv.gz" -O "GSE85908_modalities_tidy.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_splicing.csv.gz" -O "GSE85908_splicing.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_splicing_feature.csv.gz" -O "GSE85908_splicing_feature.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_voyages.csv.gz" -O "GSE85908_voyages.csv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE85nnn/GSE85908/suppl/GSE85908_waypoints.csv.gz" -O "GSE85908_waypoints.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 "SRR4047245"
gz1="$(_compress_if_exists 'SRR4047245_1' || true)"
gz2="$(_compress_if_exists 'SRR4047245_2' || true)"
gzs="$(_compress_if_exists 'SRR4047245' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CVN_01_R1.fastq.gz"
fi

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

fasterq-dump --split-files "SRR4047279"
gz1="$(_compress_if_exists 'SRR4047279_1' || true)"
gz2="$(_compress_if_exists 'SRR4047279_2' || true)"
gzs="$(_compress_if_exists 'SRR4047279' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047280"
gz1="$(_compress_if_exists 'SRR4047280_1' || true)"
gz2="$(_compress_if_exists 'SRR4047280_2' || true)"
gzs="$(_compress_if_exists 'SRR4047280' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047281"
gz1="$(_compress_if_exists 'SRR4047281_1' || true)"
gz2="$(_compress_if_exists 'SRR4047281_2' || true)"
gzs="$(_compress_if_exists 'SRR4047281' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047282"
gz1="$(_compress_if_exists 'SRR4047282_1' || true)"
gz2="$(_compress_if_exists 'SRR4047282_2' || true)"
gzs="$(_compress_if_exists 'SRR4047282' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047283"
gz1="$(_compress_if_exists 'SRR4047283_1' || true)"
gz2="$(_compress_if_exists 'SRR4047283_2' || true)"
gzs="$(_compress_if_exists 'SRR4047283' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047284"
gz1="$(_compress_if_exists 'SRR4047284_1' || true)"
gz2="$(_compress_if_exists 'SRR4047284_2' || true)"
gzs="$(_compress_if_exists 'SRR4047284' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047285"
gz1="$(_compress_if_exists 'SRR4047285_1' || true)"
gz2="$(_compress_if_exists 'SRR4047285_2' || true)"
gzs="$(_compress_if_exists 'SRR4047285' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047286"
gz1="$(_compress_if_exists 'SRR4047286_1' || true)"
gz2="$(_compress_if_exists 'SRR4047286_2' || true)"
gzs="$(_compress_if_exists 'SRR4047286' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047287"
gz1="$(_compress_if_exists 'SRR4047287_1' || true)"
gz2="$(_compress_if_exists 'SRR4047287_2' || true)"
gzs="$(_compress_if_exists 'SRR4047287' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047288"
gz1="$(_compress_if_exists 'SRR4047288_1' || true)"
gz2="$(_compress_if_exists 'SRR4047288_2' || true)"
gzs="$(_compress_if_exists 'SRR4047288' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047289"
gz1="$(_compress_if_exists 'SRR4047289_1' || true)"
gz2="$(_compress_if_exists 'SRR4047289_2' || true)"
gzs="$(_compress_if_exists 'SRR4047289' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047290"
gz1="$(_compress_if_exists 'SRR4047290_1' || true)"
gz2="$(_compress_if_exists 'SRR4047290_2' || true)"
gzs="$(_compress_if_exists 'SRR4047290' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M1_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M1_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047291"
gz1="$(_compress_if_exists 'SRR4047291_1' || true)"
gz2="$(_compress_if_exists 'SRR4047291_2' || true)"
gzs="$(_compress_if_exists 'SRR4047291' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047292"
gz1="$(_compress_if_exists 'SRR4047292_1' || true)"
gz2="$(_compress_if_exists 'SRR4047292_2' || true)"
gzs="$(_compress_if_exists 'SRR4047292' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047293"
gz1="$(_compress_if_exists 'SRR4047293_1' || true)"
gz2="$(_compress_if_exists 'SRR4047293_2' || true)"
gzs="$(_compress_if_exists 'SRR4047293' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047294"
gz1="$(_compress_if_exists 'SRR4047294_1' || true)"
gz2="$(_compress_if_exists 'SRR4047294_2' || true)"
gzs="$(_compress_if_exists 'SRR4047294' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047295"
gz1="$(_compress_if_exists 'SRR4047295_1' || true)"
gz2="$(_compress_if_exists 'SRR4047295_2' || true)"
gzs="$(_compress_if_exists 'SRR4047295' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047296"
gz1="$(_compress_if_exists 'SRR4047296_1' || true)"
gz2="$(_compress_if_exists 'SRR4047296_2' || true)"
gzs="$(_compress_if_exists 'SRR4047296' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047297"
gz1="$(_compress_if_exists 'SRR4047297_1' || true)"
gz2="$(_compress_if_exists 'SRR4047297_2' || true)"
gzs="$(_compress_if_exists 'SRR4047297' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047298"
gz1="$(_compress_if_exists 'SRR4047298_1' || true)"
gz2="$(_compress_if_exists 'SRR4047298_2' || true)"
gzs="$(_compress_if_exists 'SRR4047298' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047299"
gz1="$(_compress_if_exists 'SRR4047299_1' || true)"
gz2="$(_compress_if_exists 'SRR4047299_2' || true)"
gzs="$(_compress_if_exists 'SRR4047299' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047300"
gz1="$(_compress_if_exists 'SRR4047300_1' || true)"
gz2="$(_compress_if_exists 'SRR4047300_2' || true)"
gzs="$(_compress_if_exists 'SRR4047300' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047301"
gz1="$(_compress_if_exists 'SRR4047301_1' || true)"
gz2="$(_compress_if_exists 'SRR4047301_2' || true)"
gzs="$(_compress_if_exists 'SRR4047301' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047302"
gz1="$(_compress_if_exists 'SRR4047302_1' || true)"
gz2="$(_compress_if_exists 'SRR4047302_2' || true)"
gzs="$(_compress_if_exists 'SRR4047302' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047303"
gz1="$(_compress_if_exists 'SRR4047303_1' || true)"
gz2="$(_compress_if_exists 'SRR4047303_2' || true)"
gzs="$(_compress_if_exists 'SRR4047303' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047304"
gz1="$(_compress_if_exists 'SRR4047304_1' || true)"
gz2="$(_compress_if_exists 'SRR4047304_2' || true)"
gzs="$(_compress_if_exists 'SRR4047304' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047305"
gz1="$(_compress_if_exists 'SRR4047305_1' || true)"
gz2="$(_compress_if_exists 'SRR4047305_2' || true)"
gzs="$(_compress_if_exists 'SRR4047305' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047306"
gz1="$(_compress_if_exists 'SRR4047306_1' || true)"
gz2="$(_compress_if_exists 'SRR4047306_2' || true)"
gzs="$(_compress_if_exists 'SRR4047306' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047307"
gz1="$(_compress_if_exists 'SRR4047307_1' || true)"
gz2="$(_compress_if_exists 'SRR4047307_2' || true)"
gzs="$(_compress_if_exists 'SRR4047307' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047308"
gz1="$(_compress_if_exists 'SRR4047308_1' || true)"
gz2="$(_compress_if_exists 'SRR4047308_2' || true)"
gzs="$(_compress_if_exists 'SRR4047308' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047309"
gz1="$(_compress_if_exists 'SRR4047309_1' || true)"
gz2="$(_compress_if_exists 'SRR4047309_2' || true)"
gzs="$(_compress_if_exists 'SRR4047309' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047310"
gz1="$(_compress_if_exists 'SRR4047310_1' || true)"
gz2="$(_compress_if_exists 'SRR4047310_2' || true)"
gzs="$(_compress_if_exists 'SRR4047310' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047311"
gz1="$(_compress_if_exists 'SRR4047311_1' || true)"
gz2="$(_compress_if_exists 'SRR4047311_2' || true)"
gzs="$(_compress_if_exists 'SRR4047311' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047312"
gz1="$(_compress_if_exists 'SRR4047312_1' || true)"
gz2="$(_compress_if_exists 'SRR4047312_2' || true)"
gzs="$(_compress_if_exists 'SRR4047312' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047313"
gz1="$(_compress_if_exists 'SRR4047313_1' || true)"
gz2="$(_compress_if_exists 'SRR4047313_2' || true)"
gzs="$(_compress_if_exists 'SRR4047313' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047314"
gz1="$(_compress_if_exists 'SRR4047314_1' || true)"
gz2="$(_compress_if_exists 'SRR4047314_2' || true)"
gzs="$(_compress_if_exists 'SRR4047314' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047315"
gz1="$(_compress_if_exists 'SRR4047315_1' || true)"
gz2="$(_compress_if_exists 'SRR4047315_2' || true)"
gzs="$(_compress_if_exists 'SRR4047315' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_13_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_13_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047316"
gz1="$(_compress_if_exists 'SRR4047316_1' || true)"
gz2="$(_compress_if_exists 'SRR4047316_2' || true)"
gzs="$(_compress_if_exists 'SRR4047316' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_14_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_14_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047317"
gz1="$(_compress_if_exists 'SRR4047317_1' || true)"
gz2="$(_compress_if_exists 'SRR4047317_2' || true)"
gzs="$(_compress_if_exists 'SRR4047317' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_15_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_15_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047318"
gz1="$(_compress_if_exists 'SRR4047318_1' || true)"
gz2="$(_compress_if_exists 'SRR4047318_2' || true)"
gzs="$(_compress_if_exists 'SRR4047318' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_16_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_16_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047319"
gz1="$(_compress_if_exists 'SRR4047319_1' || true)"
gz2="$(_compress_if_exists 'SRR4047319_2' || true)"
gzs="$(_compress_if_exists 'SRR4047319' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_17_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_17_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047320"
gz1="$(_compress_if_exists 'SRR4047320_1' || true)"
gz2="$(_compress_if_exists 'SRR4047320_2' || true)"
gzs="$(_compress_if_exists 'SRR4047320' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_18_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_18_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047321"
gz1="$(_compress_if_exists 'SRR4047321_1' || true)"
gz2="$(_compress_if_exists 'SRR4047321_2' || true)"
gzs="$(_compress_if_exists 'SRR4047321' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_19_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_19_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047322"
gz1="$(_compress_if_exists 'SRR4047322_1' || true)"
gz2="$(_compress_if_exists 'SRR4047322_2' || true)"
gzs="$(_compress_if_exists 'SRR4047322' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_20_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_20_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047323"
gz1="$(_compress_if_exists 'SRR4047323_1' || true)"
gz2="$(_compress_if_exists 'SRR4047323_2' || true)"
gzs="$(_compress_if_exists 'SRR4047323' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_21_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_21_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047324"
gz1="$(_compress_if_exists 'SRR4047324_1' || true)"
gz2="$(_compress_if_exists 'SRR4047324_2' || true)"
gzs="$(_compress_if_exists 'SRR4047324' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_22_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_22_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047325"
gz1="$(_compress_if_exists 'SRR4047325_1' || true)"
gz2="$(_compress_if_exists 'SRR4047325_2' || true)"
gzs="$(_compress_if_exists 'SRR4047325' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_24_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_24_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047326"
gz1="$(_compress_if_exists 'SRR4047326_1' || true)"
gz2="$(_compress_if_exists 'SRR4047326_2' || true)"
gzs="$(_compress_if_exists 'SRR4047326' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_25_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_25_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047327"
gz1="$(_compress_if_exists 'SRR4047327_1' || true)"
gz2="$(_compress_if_exists 'SRR4047327_2' || true)"
gzs="$(_compress_if_exists 'SRR4047327' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_26_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_26_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047328"
gz1="$(_compress_if_exists 'SRR4047328_1' || true)"
gz2="$(_compress_if_exists 'SRR4047328_2' || true)"
gzs="$(_compress_if_exists 'SRR4047328' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_27_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_27_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047329"
gz1="$(_compress_if_exists 'SRR4047329_1' || true)"
gz2="$(_compress_if_exists 'SRR4047329_2' || true)"
gzs="$(_compress_if_exists 'SRR4047329' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_28_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_28_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047330"
gz1="$(_compress_if_exists 'SRR4047330_1' || true)"
gz2="$(_compress_if_exists 'SRR4047330_2' || true)"
gzs="$(_compress_if_exists 'SRR4047330' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_29_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_29_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047331"
gz1="$(_compress_if_exists 'SRR4047331_1' || true)"
gz2="$(_compress_if_exists 'SRR4047331_2' || true)"
gzs="$(_compress_if_exists 'SRR4047331' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_33_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_33_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047332"
gz1="$(_compress_if_exists 'SRR4047332_1' || true)"
gz2="$(_compress_if_exists 'SRR4047332_2' || true)"
gzs="$(_compress_if_exists 'SRR4047332' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M2nd_34_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M2nd_34_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047333"
gz1="$(_compress_if_exists 'SRR4047333_1' || true)"
gz2="$(_compress_if_exists 'SRR4047333_2' || true)"
gzs="$(_compress_if_exists 'SRR4047333' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M3_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M3_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047334"
gz1="$(_compress_if_exists 'SRR4047334_1' || true)"
gz2="$(_compress_if_exists 'SRR4047334_2' || true)"
gzs="$(_compress_if_exists 'SRR4047334' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M3_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M3_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047335"
gz1="$(_compress_if_exists 'SRR4047335_1' || true)"
gz2="$(_compress_if_exists 'SRR4047335_2' || true)"
gzs="$(_compress_if_exists 'SRR4047335' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M3_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M3_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047336"
gz1="$(_compress_if_exists 'SRR4047336_1' || true)"
gz2="$(_compress_if_exists 'SRR4047336_2' || true)"
gzs="$(_compress_if_exists 'SRR4047336' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M3_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M3_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047337"
gz1="$(_compress_if_exists 'SRR4047337_1' || true)"
gz2="$(_compress_if_exists 'SRR4047337_2' || true)"
gzs="$(_compress_if_exists 'SRR4047337' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M3_14_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M3_14_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047338"
gz1="$(_compress_if_exists 'SRR4047338_1' || true)"
gz2="$(_compress_if_exists 'SRR4047338_2' || true)"
gzs="$(_compress_if_exists 'SRR4047338' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M4_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M4_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047339"
gz1="$(_compress_if_exists 'SRR4047339_1' || true)"
gz2="$(_compress_if_exists 'SRR4047339_2' || true)"
gzs="$(_compress_if_exists 'SRR4047339' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M4_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M4_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047340"
gz1="$(_compress_if_exists 'SRR4047340_1' || true)"
gz2="$(_compress_if_exists 'SRR4047340_2' || true)"
gzs="$(_compress_if_exists 'SRR4047340' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M4_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M4_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047341"
gz1="$(_compress_if_exists 'SRR4047341_1' || true)"
gz2="$(_compress_if_exists 'SRR4047341_2' || true)"
gzs="$(_compress_if_exists 'SRR4047341' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M4_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M4_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047342"
gz1="$(_compress_if_exists 'SRR4047342_1' || true)"
gz2="$(_compress_if_exists 'SRR4047342_2' || true)"
gzs="$(_compress_if_exists 'SRR4047342' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M4_13_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M4_13_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047343"
gz1="$(_compress_if_exists 'SRR4047343_1' || true)"
gz2="$(_compress_if_exists 'SRR4047343_2' || true)"
gzs="$(_compress_if_exists 'SRR4047343' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M4_14_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M4_14_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047344"
gz1="$(_compress_if_exists 'SRR4047344_1' || true)"
gz2="$(_compress_if_exists 'SRR4047344_2' || true)"
gzs="$(_compress_if_exists 'SRR4047344' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M5_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M5_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047345"
gz1="$(_compress_if_exists 'SRR4047345_1' || true)"
gz2="$(_compress_if_exists 'SRR4047345_2' || true)"
gzs="$(_compress_if_exists 'SRR4047345' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M5_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M5_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047346"
gz1="$(_compress_if_exists 'SRR4047346_1' || true)"
gz2="$(_compress_if_exists 'SRR4047346_2' || true)"
gzs="$(_compress_if_exists 'SRR4047346' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M5_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M5_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047347"
gz1="$(_compress_if_exists 'SRR4047347_1' || true)"
gz2="$(_compress_if_exists 'SRR4047347_2' || true)"
gzs="$(_compress_if_exists 'SRR4047347' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M5_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M5_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047348"
gz1="$(_compress_if_exists 'SRR4047348_1' || true)"
gz2="$(_compress_if_exists 'SRR4047348_2' || true)"
gzs="$(_compress_if_exists 'SRR4047348' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M6_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M6_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047349"
gz1="$(_compress_if_exists 'SRR4047349_1' || true)"
gz2="$(_compress_if_exists 'SRR4047349_2' || true)"
gzs="$(_compress_if_exists 'SRR4047349' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M6_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M6_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047350"
gz1="$(_compress_if_exists 'SRR4047350_1' || true)"
gz2="$(_compress_if_exists 'SRR4047350_2' || true)"
gzs="$(_compress_if_exists 'SRR4047350' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M6_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M6_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047351"
gz1="$(_compress_if_exists 'SRR4047351_1' || true)"
gz2="$(_compress_if_exists 'SRR4047351_2' || true)"
gzs="$(_compress_if_exists 'SRR4047351' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M6_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M6_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047352"
gz1="$(_compress_if_exists 'SRR4047352_1' || true)"
gz2="$(_compress_if_exists 'SRR4047352_2' || true)"
gzs="$(_compress_if_exists 'SRR4047352' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M6_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M6_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047353"
gz1="$(_compress_if_exists 'SRR4047353_1' || true)"
gz2="$(_compress_if_exists 'SRR4047353_2' || true)"
gzs="$(_compress_if_exists 'SRR4047353' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "M6_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "M6_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047354"
gz1="$(_compress_if_exists 'SRR4047354_1' || true)"
gz2="$(_compress_if_exists 'SRR4047354_2' || true)"
gzs="$(_compress_if_exists 'SRR4047354' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047355"
gz1="$(_compress_if_exists 'SRR4047355_1' || true)"
gz2="$(_compress_if_exists 'SRR4047355_2' || true)"
gzs="$(_compress_if_exists 'SRR4047355' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047356"
gz1="$(_compress_if_exists 'SRR4047356_1' || true)"
gz2="$(_compress_if_exists 'SRR4047356_2' || true)"
gzs="$(_compress_if_exists 'SRR4047356' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047357"
gz1="$(_compress_if_exists 'SRR4047357_1' || true)"
gz2="$(_compress_if_exists 'SRR4047357_2' || true)"
gzs="$(_compress_if_exists 'SRR4047357' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047358"
gz1="$(_compress_if_exists 'SRR4047358_1' || true)"
gz2="$(_compress_if_exists 'SRR4047358_2' || true)"
gzs="$(_compress_if_exists 'SRR4047358' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047359"
gz1="$(_compress_if_exists 'SRR4047359_1' || true)"
gz2="$(_compress_if_exists 'SRR4047359_2' || true)"
gzs="$(_compress_if_exists 'SRR4047359' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047360"
gz1="$(_compress_if_exists 'SRR4047360_1' || true)"
gz2="$(_compress_if_exists 'SRR4047360_2' || true)"
gzs="$(_compress_if_exists 'SRR4047360' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047361"
gz1="$(_compress_if_exists 'SRR4047361_1' || true)"
gz2="$(_compress_if_exists 'SRR4047361_2' || true)"
gzs="$(_compress_if_exists 'SRR4047361' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047362"
gz1="$(_compress_if_exists 'SRR4047362_1' || true)"
gz2="$(_compress_if_exists 'SRR4047362_2' || true)"
gzs="$(_compress_if_exists 'SRR4047362' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047363"
gz1="$(_compress_if_exists 'SRR4047363_1' || true)"
gz2="$(_compress_if_exists 'SRR4047363_2' || true)"
gzs="$(_compress_if_exists 'SRR4047363' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047364"
gz1="$(_compress_if_exists 'SRR4047364_1' || true)"
gz2="$(_compress_if_exists 'SRR4047364_2' || true)"
gzs="$(_compress_if_exists 'SRR4047364' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047365"
gz1="$(_compress_if_exists 'SRR4047365_1' || true)"
gz2="$(_compress_if_exists 'SRR4047365_2' || true)"
gzs="$(_compress_if_exists 'SRR4047365' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N1_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N1_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047366"
gz1="$(_compress_if_exists 'SRR4047366_1' || true)"
gz2="$(_compress_if_exists 'SRR4047366_2' || true)"
gzs="$(_compress_if_exists 'SRR4047366' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047367"
gz1="$(_compress_if_exists 'SRR4047367_1' || true)"
gz2="$(_compress_if_exists 'SRR4047367_2' || true)"
gzs="$(_compress_if_exists 'SRR4047367' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047368"
gz1="$(_compress_if_exists 'SRR4047368_1' || true)"
gz2="$(_compress_if_exists 'SRR4047368_2' || true)"
gzs="$(_compress_if_exists 'SRR4047368' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047369"
gz1="$(_compress_if_exists 'SRR4047369_1' || true)"
gz2="$(_compress_if_exists 'SRR4047369_2' || true)"
gzs="$(_compress_if_exists 'SRR4047369' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047370"
gz1="$(_compress_if_exists 'SRR4047370_1' || true)"
gz2="$(_compress_if_exists 'SRR4047370_2' || true)"
gzs="$(_compress_if_exists 'SRR4047370' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047371"
gz1="$(_compress_if_exists 'SRR4047371_1' || true)"
gz2="$(_compress_if_exists 'SRR4047371_2' || true)"
gzs="$(_compress_if_exists 'SRR4047371' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047372"
gz1="$(_compress_if_exists 'SRR4047372_1' || true)"
gz2="$(_compress_if_exists 'SRR4047372_2' || true)"
gzs="$(_compress_if_exists 'SRR4047372' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047373"
gz1="$(_compress_if_exists 'SRR4047373_1' || true)"
gz2="$(_compress_if_exists 'SRR4047373_2' || true)"
gzs="$(_compress_if_exists 'SRR4047373' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047374"
gz1="$(_compress_if_exists 'SRR4047374_1' || true)"
gz2="$(_compress_if_exists 'SRR4047374_2' || true)"
gzs="$(_compress_if_exists 'SRR4047374' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047375"
gz1="$(_compress_if_exists 'SRR4047375_1' || true)"
gz2="$(_compress_if_exists 'SRR4047375_2' || true)"
gzs="$(_compress_if_exists 'SRR4047375' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047376"
gz1="$(_compress_if_exists 'SRR4047376_1' || true)"
gz2="$(_compress_if_exists 'SRR4047376_2' || true)"
gzs="$(_compress_if_exists 'SRR4047376' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047377"
gz1="$(_compress_if_exists 'SRR4047377_1' || true)"
gz2="$(_compress_if_exists 'SRR4047377_2' || true)"
gzs="$(_compress_if_exists 'SRR4047377' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N2_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N2_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047378"
gz1="$(_compress_if_exists 'SRR4047378_1' || true)"
gz2="$(_compress_if_exists 'SRR4047378_2' || true)"
gzs="$(_compress_if_exists 'SRR4047378' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047379"
gz1="$(_compress_if_exists 'SRR4047379_1' || true)"
gz2="$(_compress_if_exists 'SRR4047379_2' || true)"
gzs="$(_compress_if_exists 'SRR4047379' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047380"
gz1="$(_compress_if_exists 'SRR4047380_1' || true)"
gz2="$(_compress_if_exists 'SRR4047380_2' || true)"
gzs="$(_compress_if_exists 'SRR4047380' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047381"
gz1="$(_compress_if_exists 'SRR4047381_1' || true)"
gz2="$(_compress_if_exists 'SRR4047381_2' || true)"
gzs="$(_compress_if_exists 'SRR4047381' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047382"
gz1="$(_compress_if_exists 'SRR4047382_1' || true)"
gz2="$(_compress_if_exists 'SRR4047382_2' || true)"
gzs="$(_compress_if_exists 'SRR4047382' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047383"
gz1="$(_compress_if_exists 'SRR4047383_1' || true)"
gz2="$(_compress_if_exists 'SRR4047383_2' || true)"
gzs="$(_compress_if_exists 'SRR4047383' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047384"
gz1="$(_compress_if_exists 'SRR4047384_1' || true)"
gz2="$(_compress_if_exists 'SRR4047384_2' || true)"
gzs="$(_compress_if_exists 'SRR4047384' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047385"
gz1="$(_compress_if_exists 'SRR4047385_1' || true)"
gz2="$(_compress_if_exists 'SRR4047385_2' || true)"
gzs="$(_compress_if_exists 'SRR4047385' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047386"
gz1="$(_compress_if_exists 'SRR4047386_1' || true)"
gz2="$(_compress_if_exists 'SRR4047386_2' || true)"
gzs="$(_compress_if_exists 'SRR4047386' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047387"
gz1="$(_compress_if_exists 'SRR4047387_1' || true)"
gz2="$(_compress_if_exists 'SRR4047387_2' || true)"
gzs="$(_compress_if_exists 'SRR4047387' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047388"
gz1="$(_compress_if_exists 'SRR4047388_1' || true)"
gz2="$(_compress_if_exists 'SRR4047388_2' || true)"
gzs="$(_compress_if_exists 'SRR4047388' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N3_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N3_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047389"
gz1="$(_compress_if_exists 'SRR4047389_1' || true)"
gz2="$(_compress_if_exists 'SRR4047389_2' || true)"
gzs="$(_compress_if_exists 'SRR4047389' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N4_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N4_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047390"
gz1="$(_compress_if_exists 'SRR4047390_1' || true)"
gz2="$(_compress_if_exists 'SRR4047390_2' || true)"
gzs="$(_compress_if_exists 'SRR4047390' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N4_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N4_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047391"
gz1="$(_compress_if_exists 'SRR4047391_1' || true)"
gz2="$(_compress_if_exists 'SRR4047391_2' || true)"
gzs="$(_compress_if_exists 'SRR4047391' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N4_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N4_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047392"
gz1="$(_compress_if_exists 'SRR4047392_1' || true)"
gz2="$(_compress_if_exists 'SRR4047392_2' || true)"
gzs="$(_compress_if_exists 'SRR4047392' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N4_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N4_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047393"
gz1="$(_compress_if_exists 'SRR4047393_1' || true)"
gz2="$(_compress_if_exists 'SRR4047393_2' || true)"
gzs="$(_compress_if_exists 'SRR4047393' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N4_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N4_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047394"
gz1="$(_compress_if_exists 'SRR4047394_1' || true)"
gz2="$(_compress_if_exists 'SRR4047394_2' || true)"
gzs="$(_compress_if_exists 'SRR4047394' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N5_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N5_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047395"
gz1="$(_compress_if_exists 'SRR4047395_1' || true)"
gz2="$(_compress_if_exists 'SRR4047395_2' || true)"
gzs="$(_compress_if_exists 'SRR4047395' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "N5_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "N5_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047396"
gz1="$(_compress_if_exists 'SRR4047396_1' || true)"
gz2="$(_compress_if_exists 'SRR4047396_2' || true)"
gzs="$(_compress_if_exists 'SRR4047396' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047397"
gz1="$(_compress_if_exists 'SRR4047397_1' || true)"
gz2="$(_compress_if_exists 'SRR4047397_2' || true)"
gzs="$(_compress_if_exists 'SRR4047397' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047398"
gz1="$(_compress_if_exists 'SRR4047398_1' || true)"
gz2="$(_compress_if_exists 'SRR4047398_2' || true)"
gzs="$(_compress_if_exists 'SRR4047398' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047399"
gz1="$(_compress_if_exists 'SRR4047399_1' || true)"
gz2="$(_compress_if_exists 'SRR4047399_2' || true)"
gzs="$(_compress_if_exists 'SRR4047399' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047400"
gz1="$(_compress_if_exists 'SRR4047400_1' || true)"
gz2="$(_compress_if_exists 'SRR4047400_2' || true)"
gzs="$(_compress_if_exists 'SRR4047400' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047401"
gz1="$(_compress_if_exists 'SRR4047401_1' || true)"
gz2="$(_compress_if_exists 'SRR4047401_2' || true)"
gzs="$(_compress_if_exists 'SRR4047401' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047402"
gz1="$(_compress_if_exists 'SRR4047402_1' || true)"
gz2="$(_compress_if_exists 'SRR4047402_2' || true)"
gzs="$(_compress_if_exists 'SRR4047402' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047403"
gz1="$(_compress_if_exists 'SRR4047403_1' || true)"
gz2="$(_compress_if_exists 'SRR4047403_2' || true)"
gzs="$(_compress_if_exists 'SRR4047403' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047404"
gz1="$(_compress_if_exists 'SRR4047404_1' || true)"
gz2="$(_compress_if_exists 'SRR4047404_2' || true)"
gzs="$(_compress_if_exists 'SRR4047404' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047405"
gz1="$(_compress_if_exists 'SRR4047405_1' || true)"
gz2="$(_compress_if_exists 'SRR4047405_2' || true)"
gzs="$(_compress_if_exists 'SRR4047405' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047406"
gz1="$(_compress_if_exists 'SRR4047406_1' || true)"
gz2="$(_compress_if_exists 'SRR4047406_2' || true)"
gzs="$(_compress_if_exists 'SRR4047406' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047407"
gz1="$(_compress_if_exists 'SRR4047407_1' || true)"
gz2="$(_compress_if_exists 'SRR4047407_2' || true)"
gzs="$(_compress_if_exists 'SRR4047407' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P1_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P1_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047408"
gz1="$(_compress_if_exists 'SRR4047408_1' || true)"
gz2="$(_compress_if_exists 'SRR4047408_2' || true)"
gzs="$(_compress_if_exists 'SRR4047408' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047409"
gz1="$(_compress_if_exists 'SRR4047409_1' || true)"
gz2="$(_compress_if_exists 'SRR4047409_2' || true)"
gzs="$(_compress_if_exists 'SRR4047409' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047410"
gz1="$(_compress_if_exists 'SRR4047410_1' || true)"
gz2="$(_compress_if_exists 'SRR4047410_2' || true)"
gzs="$(_compress_if_exists 'SRR4047410' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047411"
gz1="$(_compress_if_exists 'SRR4047411_1' || true)"
gz2="$(_compress_if_exists 'SRR4047411_2' || true)"
gzs="$(_compress_if_exists 'SRR4047411' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047412"
gz1="$(_compress_if_exists 'SRR4047412_1' || true)"
gz2="$(_compress_if_exists 'SRR4047412_2' || true)"
gzs="$(_compress_if_exists 'SRR4047412' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047413"
gz1="$(_compress_if_exists 'SRR4047413_1' || true)"
gz2="$(_compress_if_exists 'SRR4047413_2' || true)"
gzs="$(_compress_if_exists 'SRR4047413' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047414"
gz1="$(_compress_if_exists 'SRR4047414_1' || true)"
gz2="$(_compress_if_exists 'SRR4047414_2' || true)"
gzs="$(_compress_if_exists 'SRR4047414' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047415"
gz1="$(_compress_if_exists 'SRR4047415_1' || true)"
gz2="$(_compress_if_exists 'SRR4047415_2' || true)"
gzs="$(_compress_if_exists 'SRR4047415' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047416"
gz1="$(_compress_if_exists 'SRR4047416_1' || true)"
gz2="$(_compress_if_exists 'SRR4047416_2' || true)"
gzs="$(_compress_if_exists 'SRR4047416' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047417"
gz1="$(_compress_if_exists 'SRR4047417_1' || true)"
gz2="$(_compress_if_exists 'SRR4047417_2' || true)"
gzs="$(_compress_if_exists 'SRR4047417' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047418"
gz1="$(_compress_if_exists 'SRR4047418_1' || true)"
gz2="$(_compress_if_exists 'SRR4047418_2' || true)"
gzs="$(_compress_if_exists 'SRR4047418' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047419"
gz1="$(_compress_if_exists 'SRR4047419_1' || true)"
gz2="$(_compress_if_exists 'SRR4047419_2' || true)"
gzs="$(_compress_if_exists 'SRR4047419' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047420"
gz1="$(_compress_if_exists 'SRR4047420_1' || true)"
gz2="$(_compress_if_exists 'SRR4047420_2' || true)"
gzs="$(_compress_if_exists 'SRR4047420' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_13_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_13_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047421"
gz1="$(_compress_if_exists 'SRR4047421_1' || true)"
gz2="$(_compress_if_exists 'SRR4047421_2' || true)"
gzs="$(_compress_if_exists 'SRR4047421' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P2_14_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P2_14_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047422"
gz1="$(_compress_if_exists 'SRR4047422_1' || true)"
gz2="$(_compress_if_exists 'SRR4047422_2' || true)"
gzs="$(_compress_if_exists 'SRR4047422' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P3_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P3_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047423"
gz1="$(_compress_if_exists 'SRR4047423_1' || true)"
gz2="$(_compress_if_exists 'SRR4047423_2' || true)"
gzs="$(_compress_if_exists 'SRR4047423' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P3_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P3_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047424"
gz1="$(_compress_if_exists 'SRR4047424_1' || true)"
gz2="$(_compress_if_exists 'SRR4047424_2' || true)"
gzs="$(_compress_if_exists 'SRR4047424' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P3_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P3_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047425"
gz1="$(_compress_if_exists 'SRR4047425_1' || true)"
gz2="$(_compress_if_exists 'SRR4047425_2' || true)"
gzs="$(_compress_if_exists 'SRR4047425' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047426"
gz1="$(_compress_if_exists 'SRR4047426_1' || true)"
gz2="$(_compress_if_exists 'SRR4047426_2' || true)"
gzs="$(_compress_if_exists 'SRR4047426' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047427"
gz1="$(_compress_if_exists 'SRR4047427_1' || true)"
gz2="$(_compress_if_exists 'SRR4047427_2' || true)"
gzs="$(_compress_if_exists 'SRR4047427' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047428"
gz1="$(_compress_if_exists 'SRR4047428_1' || true)"
gz2="$(_compress_if_exists 'SRR4047428_2' || true)"
gzs="$(_compress_if_exists 'SRR4047428' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047429"
gz1="$(_compress_if_exists 'SRR4047429_1' || true)"
gz2="$(_compress_if_exists 'SRR4047429_2' || true)"
gzs="$(_compress_if_exists 'SRR4047429' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047430"
gz1="$(_compress_if_exists 'SRR4047430_1' || true)"
gz2="$(_compress_if_exists 'SRR4047430_2' || true)"
gzs="$(_compress_if_exists 'SRR4047430' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047431"
gz1="$(_compress_if_exists 'SRR4047431_1' || true)"
gz2="$(_compress_if_exists 'SRR4047431_2' || true)"
gzs="$(_compress_if_exists 'SRR4047431' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047432"
gz1="$(_compress_if_exists 'SRR4047432_1' || true)"
gz2="$(_compress_if_exists 'SRR4047432_2' || true)"
gzs="$(_compress_if_exists 'SRR4047432' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P4_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P4_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047433"
gz1="$(_compress_if_exists 'SRR4047433_1' || true)"
gz2="$(_compress_if_exists 'SRR4047433_2' || true)"
gzs="$(_compress_if_exists 'SRR4047433' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P6_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P6_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047434"
gz1="$(_compress_if_exists 'SRR4047434_1' || true)"
gz2="$(_compress_if_exists 'SRR4047434_2' || true)"
gzs="$(_compress_if_exists 'SRR4047434' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P6_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P6_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047435"
gz1="$(_compress_if_exists 'SRR4047435_1' || true)"
gz2="$(_compress_if_exists 'SRR4047435_2' || true)"
gzs="$(_compress_if_exists 'SRR4047435' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P6_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P6_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047436"
gz1="$(_compress_if_exists 'SRR4047436_1' || true)"
gz2="$(_compress_if_exists 'SRR4047436_2' || true)"
gzs="$(_compress_if_exists 'SRR4047436' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P6_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P6_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047437"
gz1="$(_compress_if_exists 'SRR4047437_1' || true)"
gz2="$(_compress_if_exists 'SRR4047437_2' || true)"
gzs="$(_compress_if_exists 'SRR4047437' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047438"
gz1="$(_compress_if_exists 'SRR4047438_1' || true)"
gz2="$(_compress_if_exists 'SRR4047438_2' || true)"
gzs="$(_compress_if_exists 'SRR4047438' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047439"
gz1="$(_compress_if_exists 'SRR4047439_1' || true)"
gz2="$(_compress_if_exists 'SRR4047439_2' || true)"
gzs="$(_compress_if_exists 'SRR4047439' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047440"
gz1="$(_compress_if_exists 'SRR4047440_1' || true)"
gz2="$(_compress_if_exists 'SRR4047440_2' || true)"
gzs="$(_compress_if_exists 'SRR4047440' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_04_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047441"
gz1="$(_compress_if_exists 'SRR4047441_1' || true)"
gz2="$(_compress_if_exists 'SRR4047441_2' || true)"
gzs="$(_compress_if_exists 'SRR4047441' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047442"
gz1="$(_compress_if_exists 'SRR4047442_1' || true)"
gz2="$(_compress_if_exists 'SRR4047442_2' || true)"
gzs="$(_compress_if_exists 'SRR4047442' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047443"
gz1="$(_compress_if_exists 'SRR4047443_1' || true)"
gz2="$(_compress_if_exists 'SRR4047443_2' || true)"
gzs="$(_compress_if_exists 'SRR4047443' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_07_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_07_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047444"
gz1="$(_compress_if_exists 'SRR4047444_1' || true)"
gz2="$(_compress_if_exists 'SRR4047444_2' || true)"
gzs="$(_compress_if_exists 'SRR4047444' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_08_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_08_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047445"
gz1="$(_compress_if_exists 'SRR4047445_1' || true)"
gz2="$(_compress_if_exists 'SRR4047445_2' || true)"
gzs="$(_compress_if_exists 'SRR4047445' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_09_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_09_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047446"
gz1="$(_compress_if_exists 'SRR4047446_1' || true)"
gz2="$(_compress_if_exists 'SRR4047446_2' || true)"
gzs="$(_compress_if_exists 'SRR4047446' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047447"
gz1="$(_compress_if_exists 'SRR4047447_1' || true)"
gz2="$(_compress_if_exists 'SRR4047447_2' || true)"
gzs="$(_compress_if_exists 'SRR4047447' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047448"
gz1="$(_compress_if_exists 'SRR4047448_1' || true)"
gz2="$(_compress_if_exists 'SRR4047448_2' || true)"
gzs="$(_compress_if_exists 'SRR4047448' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P7_12_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P7_12_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047449"
gz1="$(_compress_if_exists 'SRR4047449_1' || true)"
gz2="$(_compress_if_exists 'SRR4047449_2' || true)"
gzs="$(_compress_if_exists 'SRR4047449' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P8_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P8_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047450"
gz1="$(_compress_if_exists 'SRR4047450_1' || true)"
gz2="$(_compress_if_exists 'SRR4047450_2' || true)"
gzs="$(_compress_if_exists 'SRR4047450' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P8_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P8_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047451"
gz1="$(_compress_if_exists 'SRR4047451_1' || true)"
gz2="$(_compress_if_exists 'SRR4047451_2' || true)"
gzs="$(_compress_if_exists 'SRR4047451' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P8_05_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P8_05_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047452"
gz1="$(_compress_if_exists 'SRR4047452_1' || true)"
gz2="$(_compress_if_exists 'SRR4047452_2' || true)"
gzs="$(_compress_if_exists 'SRR4047452' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P8_06_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P8_06_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047453"
gz1="$(_compress_if_exists 'SRR4047453_1' || true)"
gz2="$(_compress_if_exists 'SRR4047453_2' || true)"
gzs="$(_compress_if_exists 'SRR4047453' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P8_10_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P8_10_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047454"
gz1="$(_compress_if_exists 'SRR4047454_1' || true)"
gz2="$(_compress_if_exists 'SRR4047454_2' || true)"
gzs="$(_compress_if_exists 'SRR4047454' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P8_11_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P8_11_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047455"
gz1="$(_compress_if_exists 'SRR4047455_1' || true)"
gz2="$(_compress_if_exists 'SRR4047455_2' || true)"
gzs="$(_compress_if_exists 'SRR4047455' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P9_01_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P9_01_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047456"
gz1="$(_compress_if_exists 'SRR4047456_1' || true)"
gz2="$(_compress_if_exists 'SRR4047456_2' || true)"
gzs="$(_compress_if_exists 'SRR4047456' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P9_02_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P9_02_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047457"
gz1="$(_compress_if_exists 'SRR4047457_1' || true)"
gz2="$(_compress_if_exists 'SRR4047457_2' || true)"
gzs="$(_compress_if_exists 'SRR4047457' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P9_03_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P9_03_R2.fastq.gz"
fi

fasterq-dump --split-files "SRR4047458"
gz1="$(_compress_if_exists 'SRR4047458_1' || true)"
gz2="$(_compress_if_exists 'SRR4047458_2' || true)"
gzs="$(_compress_if_exists 'SRR4047458' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "P9_04_R1.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "P9_04_R2.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047245/SRR4047245"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047246/SRR4047246"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047247/SRR4047247"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047248/SRR4047248"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047249/SRR4047249"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047250/SRR4047250"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047251/SRR4047251"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047252/SRR4047252"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047253/SRR4047253"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047254/SRR4047254"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047255/SRR4047255"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047256/SRR4047256"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047257/SRR4047257"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047258/SRR4047258"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047259/SRR4047259"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047260/SRR4047260"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047261/SRR4047261"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047262/SRR4047262"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047263/SRR4047263"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047264/SRR4047264"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047265/SRR4047265"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047266/SRR4047266"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047267/SRR4047267"
curl -L -O -C - "https://sra-pub-src-1.s3.amazonaws.com/SRR4047268/CVN_25_R1.fastq.gz.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047269/SRR4047269"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047270/SRR4047270"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047271/SRR4047271"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047272/SRR4047272"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047273/SRR4047273"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047274/SRR4047274"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047275/SRR4047275"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047276/SRR4047276"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047277/SRR4047277"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047278/SRR4047278"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047279/SRR4047279"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047280/SRR4047280"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047281/SRR4047281"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047282/SRR4047282"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047283/SRR4047283"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047284/SRR4047284"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047285/SRR4047285"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047286/SRR4047286"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047287/SRR4047287"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047288/SRR4047288"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047289/SRR4047289"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047290/SRR4047290"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047291/SRR4047291"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047292/SRR4047292"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047293/SRR4047293"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047294/SRR4047294"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047295/SRR4047295"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047296/SRR4047296"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047297/SRR4047297"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047298/SRR4047298"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047299/SRR4047299"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047300/SRR4047300"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047301/SRR4047301"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047302/SRR4047302"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047303/SRR4047303"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047304/SRR4047304"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047305/SRR4047305"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047306/SRR4047306"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047307/SRR4047307"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047308/SRR4047308"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047309/SRR4047309"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047310/SRR4047310"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047311/SRR4047311"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047312/SRR4047312"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047313/SRR4047313"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047314/SRR4047314"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047315/SRR4047315"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047316/SRR4047316"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047317/SRR4047317"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047318/SRR4047318"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047319/SRR4047319"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047320/SRR4047320"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047321/SRR4047321"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047322/SRR4047322"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047323/SRR4047323"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047324/SRR4047324"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047325/SRR4047325"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047326/SRR4047326"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047327/SRR4047327"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047328/SRR4047328"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047329/SRR4047329"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047330/SRR4047330"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047331/SRR4047331"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047332/SRR4047332"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047333/SRR4047333"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047334/SRR4047334"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047335/SRR4047335"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047336/SRR4047336"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047337/SRR4047337"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047338/SRR4047338"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047339/SRR4047339"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047340/SRR4047340"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047341/SRR4047341"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047342/SRR4047342"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047343/SRR4047343"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047344/SRR4047344"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047345/SRR4047345"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047346/SRR4047346"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047347/SRR4047347"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047348/SRR4047348"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047349/SRR4047349"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047350/SRR4047350"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047351/SRR4047351"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047352/SRR4047352"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047353/SRR4047353"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047354/SRR4047354"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047355/SRR4047355"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047356/SRR4047356"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047357/SRR4047357"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047358/SRR4047358"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047359/SRR4047359"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047360/SRR4047360"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047361/SRR4047361"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047362/SRR4047362"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047363/SRR4047363"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047364/SRR4047364"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047365/SRR4047365"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047366/SRR4047366"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047367/SRR4047367"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047368/SRR4047368"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047369/SRR4047369"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047370/SRR4047370"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047371/SRR4047371"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047372/SRR4047372"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047373/SRR4047373"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047374/SRR4047374"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047375/SRR4047375"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047376/SRR4047376"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047377/SRR4047377"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047378/SRR4047378"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047379/SRR4047379"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047380/SRR4047380"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047381/SRR4047381"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047382/SRR4047382"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047383/SRR4047383"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047384/SRR4047384"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047385/SRR4047385"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047386/SRR4047386"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047387/SRR4047387"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047388/SRR4047388"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047389/SRR4047389"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047390/SRR4047390"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047391/SRR4047391"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047392/SRR4047392"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047393/SRR4047393"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047394/SRR4047394"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047395/SRR4047395"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047396/SRR4047396"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047397/SRR4047397"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047398/SRR4047398"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047399/SRR4047399"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047400/SRR4047400"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047401/SRR4047401"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047402/SRR4047402"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047403/SRR4047403"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047404/SRR4047404"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047405/SRR4047405"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047406/SRR4047406"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047407/SRR4047407"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047408/SRR4047408"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047409/SRR4047409"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047410/SRR4047410"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047411/SRR4047411"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047412/SRR4047412"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047413/SRR4047413"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047414/SRR4047414"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047415/SRR4047415"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047416/SRR4047416"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047417/SRR4047417"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047418/SRR4047418"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047419/SRR4047419"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047420/SRR4047420"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047421/SRR4047421"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047422/SRR4047422"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047423/SRR4047423"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047424/SRR4047424"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047425/SRR4047425"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047426/SRR4047426"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047427/SRR4047427"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047428/SRR4047428"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047429/SRR4047429"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047430/SRR4047430"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047431/SRR4047431"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047432/SRR4047432"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047433/SRR4047433"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047434/SRR4047434"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047435/SRR4047435"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047436/SRR4047436"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047437/SRR4047437"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047438/SRR4047438"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047439/SRR4047439"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047440/SRR4047440"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047441/SRR4047441"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047442/SRR4047442"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047443/SRR4047443"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047444/SRR4047444"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047445/SRR4047445"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047446/SRR4047446"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047447/SRR4047447"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047448/SRR4047448"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047449/SRR4047449"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047450/SRR4047450"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047451/SRR4047451"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047452/SRR4047452"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047453/SRR4047453"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047454/SRR4047454"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047455/SRR4047455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047456/SRR4047456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047457/SRR4047457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047458/SRR4047458"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047245/SRR4047245"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047246/SRR4047246"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047247/SRR4047247"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047248/SRR4047248"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047249/SRR4047249"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047250/SRR4047250"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047251/SRR4047251"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047252/SRR4047252"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047253/SRR4047253"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047254/SRR4047254"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047255/SRR4047255"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047256/SRR4047256"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047257/SRR4047257"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047258/SRR4047258"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047259/SRR4047259"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047260/SRR4047260"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047261/SRR4047261"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047262/SRR4047262"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047263/SRR4047263"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047264/SRR4047264"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047265/SRR4047265"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047266/SRR4047266"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047267/SRR4047267"
curl -L -O -C - "https://sra-pub-src-1.s3.amazonaws.com/SRR4047268/CVN_25_R1.fastq.gz.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047269/SRR4047269"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047270/SRR4047270"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047271/SRR4047271"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047272/SRR4047272"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047273/SRR4047273"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047274/SRR4047274"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047275/SRR4047275"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047276/SRR4047276"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047277/SRR4047277"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047278/SRR4047278"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047279/SRR4047279"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047280/SRR4047280"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047281/SRR4047281"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047282/SRR4047282"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047283/SRR4047283"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047284/SRR4047284"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047285/SRR4047285"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047286/SRR4047286"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047287/SRR4047287"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047288/SRR4047288"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047289/SRR4047289"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047290/SRR4047290"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047291/SRR4047291"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047292/SRR4047292"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047293/SRR4047293"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047294/SRR4047294"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047295/SRR4047295"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047296/SRR4047296"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047297/SRR4047297"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047298/SRR4047298"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047299/SRR4047299"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047300/SRR4047300"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047301/SRR4047301"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047302/SRR4047302"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047303/SRR4047303"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047304/SRR4047304"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047305/SRR4047305"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047306/SRR4047306"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047307/SRR4047307"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047308/SRR4047308"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047309/SRR4047309"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047310/SRR4047310"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047311/SRR4047311"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047312/SRR4047312"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047313/SRR4047313"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047314/SRR4047314"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047315/SRR4047315"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047316/SRR4047316"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047317/SRR4047317"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047318/SRR4047318"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047319/SRR4047319"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047320/SRR4047320"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047321/SRR4047321"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047322/SRR4047322"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047323/SRR4047323"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047324/SRR4047324"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047325/SRR4047325"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047326/SRR4047326"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047327/SRR4047327"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047328/SRR4047328"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047329/SRR4047329"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047330/SRR4047330"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047331/SRR4047331"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047332/SRR4047332"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047333/SRR4047333"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047334/SRR4047334"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047335/SRR4047335"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047336/SRR4047336"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047337/SRR4047337"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047338/SRR4047338"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047339/SRR4047339"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047340/SRR4047340"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047341/SRR4047341"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047342/SRR4047342"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047343/SRR4047343"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047344/SRR4047344"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047345/SRR4047345"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047346/SRR4047346"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047347/SRR4047347"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047348/SRR4047348"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047349/SRR4047349"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047350/SRR4047350"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047351/SRR4047351"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047352/SRR4047352"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047353/SRR4047353"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047354/SRR4047354"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047355/SRR4047355"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047356/SRR4047356"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047357/SRR4047357"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047358/SRR4047358"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047359/SRR4047359"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047360/SRR4047360"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047361/SRR4047361"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047362/SRR4047362"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047363/SRR4047363"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047364/SRR4047364"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047365/SRR4047365"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047366/SRR4047366"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047367/SRR4047367"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047368/SRR4047368"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047369/SRR4047369"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047370/SRR4047370"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047371/SRR4047371"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047372/SRR4047372"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047373/SRR4047373"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047374/SRR4047374"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047375/SRR4047375"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047376/SRR4047376"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047377/SRR4047377"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047378/SRR4047378"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047379/SRR4047379"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047380/SRR4047380"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047381/SRR4047381"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047382/SRR4047382"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047383/SRR4047383"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047384/SRR4047384"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047385/SRR4047385"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047386/SRR4047386"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047387/SRR4047387"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047388/SRR4047388"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047389/SRR4047389"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047390/SRR4047390"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047391/SRR4047391"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047392/SRR4047392"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047393/SRR4047393"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047394/SRR4047394"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047395/SRR4047395"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047396/SRR4047396"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047397/SRR4047397"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047398/SRR4047398"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047399/SRR4047399"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047400/SRR4047400"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047401/SRR4047401"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047402/SRR4047402"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047403/SRR4047403"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047404/SRR4047404"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047405/SRR4047405"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047406/SRR4047406"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047407/SRR4047407"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047408/SRR4047408"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047409/SRR4047409"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047410/SRR4047410"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047411/SRR4047411"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047412/SRR4047412"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047413/SRR4047413"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047414/SRR4047414"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047415/SRR4047415"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047416/SRR4047416"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047417/SRR4047417"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047418/SRR4047418"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047419/SRR4047419"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047420/SRR4047420"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047421/SRR4047421"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047422/SRR4047422"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047423/SRR4047423"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047424/SRR4047424"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047425/SRR4047425"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047426/SRR4047426"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047427/SRR4047427"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047428/SRR4047428"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047429/SRR4047429"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047430/SRR4047430"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047431/SRR4047431"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047432/SRR4047432"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047433/SRR4047433"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047434/SRR4047434"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047435/SRR4047435"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047436/SRR4047436"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047437/SRR4047437"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047438/SRR4047438"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047439/SRR4047439"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047440/SRR4047440"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047441/SRR4047441"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047442/SRR4047442"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047443/SRR4047443"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047444/SRR4047444"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047445/SRR4047445"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047446/SRR4047446"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047447/SRR4047447"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047448/SRR4047448"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047449/SRR4047449"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047450/SRR4047450"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047451/SRR4047451"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047452/SRR4047452"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047453/SRR4047453"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047454/SRR4047454"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047455/SRR4047455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047456/SRR4047456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047457/SRR4047457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR4047458/SRR4047458"

echo "Download complete. Files saved to $OUTDIR"