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

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

# --- GEO supplementary files ---
wget -nc ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE120nnn/GSE120104/suppl/GSE120104_RAW.tar -O GSE120104_RAW.tar
wget -nc ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE120nnn/GSE120104/suppl/GSE120104_RBM25chip-NC-OPTIMAL_ppr.IDR0.02.filt.narrowPeak.gz -O GSE120104_RBM25chip-NC-OPTIMAL_ppr.IDR0.02.filt.narrowPeak.gz
wget -nc ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE120nnn/GSE120104/suppl/GSE120104_YY1chip-NC-OPTIMAL_ppr.IDR0.02.filt.narrowPeak.gz -O GSE120104_YY1chip-NC-OPTIMAL_ppr.IDR0.02.filt.narrowPeak.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 SRR7868840
gz1="$(_compress_if_exists SRR7868840_1 || true)"
gz2="$(_compress_if_exists SRR7868840_2 || true)"
gzs="$(_compress_if_exists SRR7868840 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF1_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868841
gz1="$(_compress_if_exists SRR7868841_1 || true)"
gz2="$(_compress_if_exists SRR7868841_2 || true)"
gzs="$(_compress_if_exists SRR7868841 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF1_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868842
gz1="$(_compress_if_exists SRR7868842_1 || true)"
gz2="$(_compress_if_exists SRR7868842_2 || true)"
gzs="$(_compress_if_exists SRR7868842 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF3_ChIP_rep1_HepG2_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868843
gz1="$(_compress_if_exists SRR7868843_1 || true)"
gz2="$(_compress_if_exists SRR7868843_2 || true)"
gzs="$(_compress_if_exists SRR7868843 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF3_ChIP_rep2_HepG2_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868844
gz1="$(_compress_if_exists SRR7868844_1 || true)"
gz2="$(_compress_if_exists SRR7868844_2 || true)"
gzs="$(_compress_if_exists SRR7868844 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF4_ChIP_rep1_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868845
gz1="$(_compress_if_exists SRR7868845_1 || true)"
gz2="$(_compress_if_exists SRR7868845_2 || true)"
gzs="$(_compress_if_exists SRR7868845 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF4_ChIP_rep2_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868846
gz1="$(_compress_if_exists SRR7868846_1 || true)"
gz2="$(_compress_if_exists SRR7868846_2 || true)"
gzs="$(_compress_if_exists SRR7868846 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF7_ChIP_rep1_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868847
gz1="$(_compress_if_exists SRR7868847_1 || true)"
gz2="$(_compress_if_exists SRR7868847_2 || true)"
gzs="$(_compress_if_exists SRR7868847 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF7_ChIP_rep2_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868848
gz1="$(_compress_if_exists SRR7868848_1 || true)"
gz2="$(_compress_if_exists SRR7868848_2 || true)"
gzs="$(_compress_if_exists SRR7868848 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF9_ChIP_rep1_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868849
gz1="$(_compress_if_exists SRR7868849_1 || true)"
gz2="$(_compress_if_exists SRR7868849_2 || true)"
gzs="$(_compress_if_exists SRR7868849 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF9_ChIP_rep2_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868850
gz1="$(_compress_if_exists SRR7868850_1 || true)"
gz2="$(_compress_if_exists SRR7868850_2 || true)"
gzs="$(_compress_if_exists SRR7868850 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF1_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868851
gz1="$(_compress_if_exists SRR7868851_1 || true)"
gz2="$(_compress_if_exists SRR7868851_2 || true)"
gzs="$(_compress_if_exists SRR7868851 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF1_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868852
gz1="$(_compress_if_exists SRR7868852_1 || true)"
gz2="$(_compress_if_exists SRR7868852_2 || true)"
gzs="$(_compress_if_exists SRR7868852 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF2_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868853
gz1="$(_compress_if_exists SRR7868853_1 || true)"
gz2="$(_compress_if_exists SRR7868853_2 || true)"
gzs="$(_compress_if_exists SRR7868853 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF2_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868854
gz1="$(_compress_if_exists SRR7868854_1 || true)"
gz2="$(_compress_if_exists SRR7868854_2 || true)"
gzs="$(_compress_if_exists SRR7868854 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPC_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868855
gz1="$(_compress_if_exists SRR7868855_1 || true)"
gz2="$(_compress_if_exists SRR7868855_2 || true)"
gzs="$(_compress_if_exists SRR7868855 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPC_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868856
gz1="$(_compress_if_exists SRR7868856_1 || true)"
gz2="$(_compress_if_exists SRR7868856_2 || true)"
gzs="$(_compress_if_exists SRR7868856 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPH1_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868857
gz1="$(_compress_if_exists SRR7868857_1 || true)"
gz2="$(_compress_if_exists SRR7868857_2 || true)"
gzs="$(_compress_if_exists SRR7868857 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPH1_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868858
gz1="$(_compress_if_exists SRR7868858_1 || true)"
gz2="$(_compress_if_exists SRR7868858_2 || true)"
gzs="$(_compress_if_exists SRR7868858 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPK_ChIP_rep1_HepG2_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868859
gz1="$(_compress_if_exists SRR7868859_1 || true)"
gz2="$(_compress_if_exists SRR7868859_2 || true)"
gzs="$(_compress_if_exists SRR7868859 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPK_ChIP_rep2_HepG2_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868860
gz1="$(_compress_if_exists SRR7868860_1 || true)"
gz2="$(_compress_if_exists SRR7868860_2 || true)"
gzs="$(_compress_if_exists SRR7868860 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPL_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868861
gz1="$(_compress_if_exists SRR7868861_1 || true)"
gz2="$(_compress_if_exists SRR7868861_2 || true)"
gzs="$(_compress_if_exists SRR7868861 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPL_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868862
gz1="$(_compress_if_exists SRR7868862_1 || true)"
gz2="$(_compress_if_exists SRR7868862_2 || true)"
gzs="$(_compress_if_exists SRR7868862 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPLL_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868863
gz1="$(_compress_if_exists SRR7868863_1 || true)"
gz2="$(_compress_if_exists SRR7868863_2 || true)"
gzs="$(_compress_if_exists SRR7868863 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPLL_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868864
gz1="$(_compress_if_exists SRR7868864_1 || true)"
gz2="$(_compress_if_exists SRR7868864_2 || true)"
gzs="$(_compress_if_exists SRR7868864 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPUL1_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868865
gz1="$(_compress_if_exists SRR7868865_1 || true)"
gz2="$(_compress_if_exists SRR7868865_2 || true)"
gzs="$(_compress_if_exists SRR7868865 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPUL1_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868866
gz1="$(_compress_if_exists SRR7868866_1 || true)"
gz2="$(_compress_if_exists SRR7868866_2 || true)"
gzs="$(_compress_if_exists SRR7868866 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PTBP1_ChIP_rep1_HepG2_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868867
gz1="$(_compress_if_exists SRR7868867_1 || true)"
gz2="$(_compress_if_exists SRR7868867_2 || true)"
gzs="$(_compress_if_exists SRR7868867 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PTBP1_ChIP_rep2_HepG2_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868868
gz1="$(_compress_if_exists SRR7868868_1 || true)"
gz2="$(_compress_if_exists SRR7868868_2 || true)"
gzs="$(_compress_if_exists SRR7868868 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP1_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868869
gz1="$(_compress_if_exists SRR7868869_1 || true)"
gz2="$(_compress_if_exists SRR7868869_2 || true)"
gzs="$(_compress_if_exists SRR7868869 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP1_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868870
gz1="$(_compress_if_exists SRR7868870_1 || true)"
gz2="$(_compress_if_exists SRR7868870_2 || true)"
gzs="$(_compress_if_exists SRR7868870 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP2_ChIP_rep1_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868871
gz1="$(_compress_if_exists SRR7868871_1 || true)"
gz2="$(_compress_if_exists SRR7868871_2 || true)"
gzs="$(_compress_if_exists SRR7868871 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP2_ChIP_rep2_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868872
gz1="$(_compress_if_exists SRR7868872_1 || true)"
gz2="$(_compress_if_exists SRR7868872_2 || true)"
gzs="$(_compress_if_exists SRR7868872 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FUS_ChIP_rep1_HepG2_batch12.fastq.gz
fi

fasterq-dump --split-files SRR7868873
gz1="$(_compress_if_exists SRR7868873_1 || true)"
gz2="$(_compress_if_exists SRR7868873_2 || true)"
gzs="$(_compress_if_exists SRR7868873 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FUS_ChIP_rep2_HepG2_batch12.fastq.gz
fi

fasterq-dump --split-files SRR7868874
gz1="$(_compress_if_exists SRR7868874_1 || true)"
gz2="$(_compress_if_exists SRR7868874_2 || true)"
gzs="$(_compress_if_exists SRR7868874 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TAF15_ChIP_rep1_HepG2_batch12.fastq.gz
fi

fasterq-dump --split-files SRR7868875
gz1="$(_compress_if_exists SRR7868875_1 || true)"
gz2="$(_compress_if_exists SRR7868875_2 || true)"
gzs="$(_compress_if_exists SRR7868875 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TAF15_ChIP_rep2_HepG2_batch12.fastq.gz
fi

fasterq-dump --split-files SRR7868876
gz1="$(_compress_if_exists SRR7868876_1 || true)"
gz2="$(_compress_if_exists SRR7868876_2 || true)"
gzs="$(_compress_if_exists SRR7868876 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SNRNP70_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868877
gz1="$(_compress_if_exists SRR7868877_1 || true)"
gz2="$(_compress_if_exists SRR7868877_2 || true)"
gzs="$(_compress_if_exists SRR7868877 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SNRNP70_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868878
gz1="$(_compress_if_exists SRR7868878_1 || true)"
gz2="$(_compress_if_exists SRR7868878_2 || true)"
gzs="$(_compress_if_exists SRR7868878 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PRPF4_ChIP_rep1_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868879
gz1="$(_compress_if_exists SRR7868879_1 || true)"
gz2="$(_compress_if_exists SRR7868879_2 || true)"
gzs="$(_compress_if_exists SRR7868879 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PRPF4_ChIP_rep2_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868880
gz1="$(_compress_if_exists SRR7868880_1 || true)"
gz2="$(_compress_if_exists SRR7868880_2 || true)"
gzs="$(_compress_if_exists SRR7868880 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FIP1L1_ChIP_rep1_HepG2_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7868881
gz1="$(_compress_if_exists SRR7868881_1 || true)"
gz2="$(_compress_if_exists SRR7868881_2 || true)"
gzs="$(_compress_if_exists SRR7868881 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FIP1L1_ChIP_rep2_HepG2_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7868882
gz1="$(_compress_if_exists SRR7868882_1 || true)"
gz2="$(_compress_if_exists SRR7868882_2 || true)"
gzs="$(_compress_if_exists SRR7868882 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBFOX2_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868883
gz1="$(_compress_if_exists SRR7868883_1 || true)"
gz2="$(_compress_if_exists SRR7868883_2 || true)"
gzs="$(_compress_if_exists SRR7868883 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBFOX2_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868884
gz1="$(_compress_if_exists SRR7868884_1 || true)"
gz2="$(_compress_if_exists SRR7868884_2 || true)"
gzs="$(_compress_if_exists SRR7868884 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM22_ChIP_rep1_HepG2_batch13.fastq.gz
fi

fasterq-dump --split-files SRR7868885
gz1="$(_compress_if_exists SRR7868885_1 || true)"
gz2="$(_compress_if_exists SRR7868885_2 || true)"
gzs="$(_compress_if_exists SRR7868885 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM22_ChIP_rep2_HepG2_batch13.fastq.gz
fi

fasterq-dump --split-files SRR7868886
gz1="$(_compress_if_exists SRR7868886_1 || true)"
gz2="$(_compress_if_exists SRR7868886_2 || true)"
gzs="$(_compress_if_exists SRR7868886 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM25_ChIP_rep1_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868887
gz1="$(_compress_if_exists SRR7868887_1 || true)"
gz2="$(_compress_if_exists SRR7868887_2 || true)"
gzs="$(_compress_if_exists SRR7868887 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM25_ChIP_rep2_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868888
gz1="$(_compress_if_exists SRR7868888_1 || true)"
gz2="$(_compress_if_exists SRR7868888_2 || true)"
gzs="$(_compress_if_exists SRR7868888 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM39_ChIP_rep1_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868889
gz1="$(_compress_if_exists SRR7868889_1 || true)"
gz2="$(_compress_if_exists SRR7868889_2 || true)"
gzs="$(_compress_if_exists SRR7868889 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM39_ChIP_rep2_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868890
gz1="$(_compress_if_exists SRR7868890_1 || true)"
gz2="$(_compress_if_exists SRR7868890_2 || true)"
gzs="$(_compress_if_exists SRR7868890 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" AGO1_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868891
gz1="$(_compress_if_exists SRR7868891_1 || true)"
gz2="$(_compress_if_exists SRR7868891_2 || true)"
gzs="$(_compress_if_exists SRR7868891 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" AGO1_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868892
gz1="$(_compress_if_exists SRR7868892_1 || true)"
gz2="$(_compress_if_exists SRR7868892_2 || true)"
gzs="$(_compress_if_exists SRR7868892 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" AGO2_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868893
gz1="$(_compress_if_exists SRR7868893_1 || true)"
gz2="$(_compress_if_exists SRR7868893_2 || true)"
gzs="$(_compress_if_exists SRR7868893 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" AGO2_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868894
gz1="$(_compress_if_exists SRR7868894_1 || true)"
gz2="$(_compress_if_exists SRR7868894_2 || true)"
gzs="$(_compress_if_exists SRR7868894 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SAFB2_ChIP_rep1_HepG2_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868895
gz1="$(_compress_if_exists SRR7868895_1 || true)"
gz2="$(_compress_if_exists SRR7868895_2 || true)"
gzs="$(_compress_if_exists SRR7868895 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SAFB2_ChIP_rep2_HepG2_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868896
gz1="$(_compress_if_exists SRR7868896_1 || true)"
gz2="$(_compress_if_exists SRR7868896_2 || true)"
gzs="$(_compress_if_exists SRR7868896 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" NONO_ChIP_rep1_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868897
gz1="$(_compress_if_exists SRR7868897_1 || true)"
gz2="$(_compress_if_exists SRR7868897_2 || true)"
gzs="$(_compress_if_exists SRR7868897 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" NONO_ChIP_rep2_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868898
gz1="$(_compress_if_exists SRR7868898_1 || true)"
gz2="$(_compress_if_exists SRR7868898_2 || true)"
gzs="$(_compress_if_exists SRR7868898 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" GTF2F1_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868899
gz1="$(_compress_if_exists SRR7868899_1 || true)"
gz2="$(_compress_if_exists SRR7868899_2 || true)"
gzs="$(_compress_if_exists SRR7868899 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" GTF2F1_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868900
gz1="$(_compress_if_exists SRR7868900_1 || true)"
gz2="$(_compress_if_exists SRR7868900_2 || true)"
gzs="$(_compress_if_exists SRR7868900 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" POLR2G_ChIP_rep1_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868901
gz1="$(_compress_if_exists SRR7868901_1 || true)"
gz2="$(_compress_if_exists SRR7868901_2 || true)"
gzs="$(_compress_if_exists SRR7868901 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" POLR2G_ChIP_rep2_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868902
gz1="$(_compress_if_exists SRR7868902_1 || true)"
gz2="$(_compress_if_exists SRR7868902_2 || true)"
gzs="$(_compress_if_exists SRR7868902 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SFPQ_ChIP_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868903
gz1="$(_compress_if_exists SRR7868903_1 || true)"
gz2="$(_compress_if_exists SRR7868903_2 || true)"
gzs="$(_compress_if_exists SRR7868903 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SFPQ_ChIP_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868904
gz1="$(_compress_if_exists SRR7868904_1 || true)"
gz2="$(_compress_if_exists SRR7868904_2 || true)"
gzs="$(_compress_if_exists SRR7868904 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TARDBP_ChIP_rep1_HepG2_batch15.fastq.gz
fi

fasterq-dump --split-files SRR7868905
gz1="$(_compress_if_exists SRR7868905_1 || true)"
gz2="$(_compress_if_exists SRR7868905_2 || true)"
gzs="$(_compress_if_exists SRR7868905 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TARDBP_ChIP_rep2_HepG2_batch15.fastq.gz
fi

fasterq-dump --split-files SRR7868906
gz1="$(_compress_if_exists SRR7868906_1 || true)"
gz2="$(_compress_if_exists SRR7868906_2 || true)"
gzs="$(_compress_if_exists SRR7868906 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" XRCC5_ChIP_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868907
gz1="$(_compress_if_exists SRR7868907_1 || true)"
gz2="$(_compress_if_exists SRR7868907_2 || true)"
gzs="$(_compress_if_exists SRR7868907 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" XRCC5_ChIP_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868908
gz1="$(_compress_if_exists SRR7868908_1 || true)"
gz2="$(_compress_if_exists SRR7868908_2 || true)"
gzs="$(_compress_if_exists SRR7868908 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" CCAR2_ChIP_rep1_HepG2_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868909
gz1="$(_compress_if_exists SRR7868909_1 || true)"
gz2="$(_compress_if_exists SRR7868909_2 || true)"
gzs="$(_compress_if_exists SRR7868909 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" CCAR2_ChIP_rep2_HepG2_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868910
gz1="$(_compress_if_exists SRR7868910_1 || true)"
gz2="$(_compress_if_exists SRR7868910_2 || true)"
gzs="$(_compress_if_exists SRR7868910 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868911
gz1="$(_compress_if_exists SRR7868911_1 || true)"
gz2="$(_compress_if_exists SRR7868911_2 || true)"
gzs="$(_compress_if_exists SRR7868911 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868912
gz1="$(_compress_if_exists SRR7868912_1 || true)"
gz2="$(_compress_if_exists SRR7868912_2 || true)"
gzs="$(_compress_if_exists SRR7868912 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868913
gz1="$(_compress_if_exists SRR7868913_1 || true)"
gz2="$(_compress_if_exists SRR7868913_2 || true)"
gzs="$(_compress_if_exists SRR7868913 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868914
gz1="$(_compress_if_exists SRR7868914_1 || true)"
gz2="$(_compress_if_exists SRR7868914_2 || true)"
gzs="$(_compress_if_exists SRR7868914 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868915
gz1="$(_compress_if_exists SRR7868915_1 || true)"
gz2="$(_compress_if_exists SRR7868915_2 || true)"
gzs="$(_compress_if_exists SRR7868915 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868916
gz1="$(_compress_if_exists SRR7868916_1 || true)"
gz2="$(_compress_if_exists SRR7868916_2 || true)"
gzs="$(_compress_if_exists SRR7868916 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868917
gz1="$(_compress_if_exists SRR7868917_1 || true)"
gz2="$(_compress_if_exists SRR7868917_2 || true)"
gzs="$(_compress_if_exists SRR7868917 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7868918
gz1="$(_compress_if_exists SRR7868918_1 || true)"
gz2="$(_compress_if_exists SRR7868918_2 || true)"
gzs="$(_compress_if_exists SRR7868918 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7868919
gz1="$(_compress_if_exists SRR7868919_1 || true)"
gz2="$(_compress_if_exists SRR7868919_2 || true)"
gzs="$(_compress_if_exists SRR7868919 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7868920
gz1="$(_compress_if_exists SRR7868920_1 || true)"
gz2="$(_compress_if_exists SRR7868920_2 || true)"
gzs="$(_compress_if_exists SRR7868920 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868921
gz1="$(_compress_if_exists SRR7868921_1 || true)"
gz2="$(_compress_if_exists SRR7868921_2 || true)"
gzs="$(_compress_if_exists SRR7868921 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868922
gz1="$(_compress_if_exists SRR7868922_1 || true)"
gz2="$(_compress_if_exists SRR7868922_2 || true)"
gzs="$(_compress_if_exists SRR7868922 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868923
gz1="$(_compress_if_exists SRR7868923_1 || true)"
gz2="$(_compress_if_exists SRR7868923_2 || true)"
gzs="$(_compress_if_exists SRR7868923 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868924
gz1="$(_compress_if_exists SRR7868924_1 || true)"
gz2="$(_compress_if_exists SRR7868924_2 || true)"
gzs="$(_compress_if_exists SRR7868924 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch12.fastq.gz
fi

fasterq-dump --split-files SRR7868925
gz1="$(_compress_if_exists SRR7868925_1 || true)"
gz2="$(_compress_if_exists SRR7868925_2 || true)"
gzs="$(_compress_if_exists SRR7868925 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch12.fastq.gz
fi

fasterq-dump --split-files SRR7868926
gz1="$(_compress_if_exists SRR7868926_1 || true)"
gz2="$(_compress_if_exists SRR7868926_2 || true)"
gzs="$(_compress_if_exists SRR7868926 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch13.fastq.gz
fi

fasterq-dump --split-files SRR7868927
gz1="$(_compress_if_exists SRR7868927_1 || true)"
gz2="$(_compress_if_exists SRR7868927_2 || true)"
gzs="$(_compress_if_exists SRR7868927 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch13.fastq.gz
fi

fasterq-dump --split-files SRR7868928
gz1="$(_compress_if_exists SRR7868928_1 || true)"
gz2="$(_compress_if_exists SRR7868928_2 || true)"
gzs="$(_compress_if_exists SRR7868928 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868929
gz1="$(_compress_if_exists SRR7868929_1 || true)"
gz2="$(_compress_if_exists SRR7868929_2 || true)"
gzs="$(_compress_if_exists SRR7868929 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch14.fastq.gz
fi

fasterq-dump --split-files SRR7868930
gz1="$(_compress_if_exists SRR7868930_1 || true)"
gz2="$(_compress_if_exists SRR7868930_2 || true)"
gzs="$(_compress_if_exists SRR7868930 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch15.fastq.gz
fi

fasterq-dump --split-files SRR7868931
gz1="$(_compress_if_exists SRR7868931_1 || true)"
gz2="$(_compress_if_exists SRR7868931_2 || true)"
gzs="$(_compress_if_exists SRR7868931 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch15.fastq.gz
fi

fasterq-dump --split-files SRR7868932
gz1="$(_compress_if_exists SRR7868932_1 || true)"
gz2="$(_compress_if_exists SRR7868932_2 || true)"
gzs="$(_compress_if_exists SRR7868932 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868933
gz1="$(_compress_if_exists SRR7868933_1 || true)"
gz2="$(_compress_if_exists SRR7868933_2 || true)"
gzs="$(_compress_if_exists SRR7868933 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch16.fastq.gz
fi

fasterq-dump --split-files SRR7868934
gz1="$(_compress_if_exists SRR7868934_1 || true)"
gz2="$(_compress_if_exists SRR7868934_2 || true)"
gzs="$(_compress_if_exists SRR7868934 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868935
gz1="$(_compress_if_exists SRR7868935_1 || true)"
gz2="$(_compress_if_exists SRR7868935_2 || true)"
gzs="$(_compress_if_exists SRR7868935 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_HepG2_batch17.fastq.gz
fi

fasterq-dump --split-files SRR7868936
gz1="$(_compress_if_exists SRR7868936_1 || true)"
gz2="$(_compress_if_exists SRR7868936_2 || true)"
gzs="$(_compress_if_exists SRR7868936 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF1_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868937
gz1="$(_compress_if_exists SRR7868937_1 || true)"
gz2="$(_compress_if_exists SRR7868937_2 || true)"
gzs="$(_compress_if_exists SRR7868937 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF1_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868938
gz1="$(_compress_if_exists SRR7868938_1 || true)"
gz2="$(_compress_if_exists SRR7868938_2 || true)"
gzs="$(_compress_if_exists SRR7868938 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF3_ChIP_rep1_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868939
gz1="$(_compress_if_exists SRR7868939_1 || true)"
gz2="$(_compress_if_exists SRR7868939_2 || true)"
gzs="$(_compress_if_exists SRR7868939 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF3_ChIP_rep2_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868940
gz1="$(_compress_if_exists SRR7868940_1 || true)"
gz2="$(_compress_if_exists SRR7868940_2 || true)"
gzs="$(_compress_if_exists SRR7868940 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF4_ChIP_rep1_K562_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868941
gz1="$(_compress_if_exists SRR7868941_1 || true)"
gz2="$(_compress_if_exists SRR7868941_2 || true)"
gzs="$(_compress_if_exists SRR7868941 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF4_ChIP_rep2_K562_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868942
gz1="$(_compress_if_exists SRR7868942_1 || true)"
gz2="$(_compress_if_exists SRR7868942_2 || true)"
gzs="$(_compress_if_exists SRR7868942 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF7_ChIP_rep1_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868943
gz1="$(_compress_if_exists SRR7868943_1 || true)"
gz2="$(_compress_if_exists SRR7868943_2 || true)"
gzs="$(_compress_if_exists SRR7868943 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF7_ChIP_rep2_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868944
gz1="$(_compress_if_exists SRR7868944_1 || true)"
gz2="$(_compress_if_exists SRR7868944_2 || true)"
gzs="$(_compress_if_exists SRR7868944 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF9_ChIP_rep1_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868945
gz1="$(_compress_if_exists SRR7868945_1 || true)"
gz2="$(_compress_if_exists SRR7868945_2 || true)"
gzs="$(_compress_if_exists SRR7868945 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SRSF9_ChIP_rep2_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868946
gz1="$(_compress_if_exists SRR7868946_1 || true)"
gz2="$(_compress_if_exists SRR7868946_2 || true)"
gzs="$(_compress_if_exists SRR7868946 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF1_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868947
gz1="$(_compress_if_exists SRR7868947_1 || true)"
gz2="$(_compress_if_exists SRR7868947_2 || true)"
gzs="$(_compress_if_exists SRR7868947 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF1_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868948
gz1="$(_compress_if_exists SRR7868948_1 || true)"
gz2="$(_compress_if_exists SRR7868948_2 || true)"
gzs="$(_compress_if_exists SRR7868948 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF2_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868949
gz1="$(_compress_if_exists SRR7868949_1 || true)"
gz2="$(_compress_if_exists SRR7868949_2 || true)"
gzs="$(_compress_if_exists SRR7868949 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" U2AF2_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868950
gz1="$(_compress_if_exists SRR7868950_1 || true)"
gz2="$(_compress_if_exists SRR7868950_2 || true)"
gzs="$(_compress_if_exists SRR7868950 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPC_ChIP_rep1_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868951
gz1="$(_compress_if_exists SRR7868951_1 || true)"
gz2="$(_compress_if_exists SRR7868951_2 || true)"
gzs="$(_compress_if_exists SRR7868951 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPC_ChIP_rep2_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7868952
gz1="$(_compress_if_exists SRR7868952_1 || true)"
gz2="$(_compress_if_exists SRR7868952_2 || true)"
gzs="$(_compress_if_exists SRR7868952 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPH1_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868953
gz1="$(_compress_if_exists SRR7868953_1 || true)"
gz2="$(_compress_if_exists SRR7868953_2 || true)"
gzs="$(_compress_if_exists SRR7868953 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPH1_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868954
gz1="$(_compress_if_exists SRR7868954_1 || true)"
gz2="$(_compress_if_exists SRR7868954_2 || true)"
gzs="$(_compress_if_exists SRR7868954 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPK_ChIP_rep1_K562_batch1.fastq.gz
fi

fasterq-dump --split-files SRR7868955
gz1="$(_compress_if_exists SRR7868955_1 || true)"
gz2="$(_compress_if_exists SRR7868955_2 || true)"
gzs="$(_compress_if_exists SRR7868955 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPK_ChIP_rep2_K562_batch1.fastq.gz
fi

fasterq-dump --split-files SRR7868956
gz1="$(_compress_if_exists SRR7868956_1 || true)"
gz2="$(_compress_if_exists SRR7868956_2 || true)"
gzs="$(_compress_if_exists SRR7868956 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPL_ChIP_rep1_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868957
gz1="$(_compress_if_exists SRR7868957_1 || true)"
gz2="$(_compress_if_exists SRR7868957_2 || true)"
gzs="$(_compress_if_exists SRR7868957 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPL_ChIP_rep2_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868958
gz1="$(_compress_if_exists SRR7868958_1 || true)"
gz2="$(_compress_if_exists SRR7868958_2 || true)"
gzs="$(_compress_if_exists SRR7868958 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPLL_ChIP_rep1_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868959
gz1="$(_compress_if_exists SRR7868959_1 || true)"
gz2="$(_compress_if_exists SRR7868959_2 || true)"
gzs="$(_compress_if_exists SRR7868959 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPLL_ChIP_rep2_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868960
gz1="$(_compress_if_exists SRR7868960_1 || true)"
gz2="$(_compress_if_exists SRR7868960_2 || true)"
gzs="$(_compress_if_exists SRR7868960 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPUL1_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868961
gz1="$(_compress_if_exists SRR7868961_1 || true)"
gz2="$(_compress_if_exists SRR7868961_2 || true)"
gzs="$(_compress_if_exists SRR7868961 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" HNRNPUL1_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868962
gz1="$(_compress_if_exists SRR7868962_1 || true)"
gz2="$(_compress_if_exists SRR7868962_2 || true)"
gzs="$(_compress_if_exists SRR7868962 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PTBP1_ChIP_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868963
gz1="$(_compress_if_exists SRR7868963_1 || true)"
gz2="$(_compress_if_exists SRR7868963_2 || true)"
gzs="$(_compress_if_exists SRR7868963 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PTBP1_ChIP_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868964
gz1="$(_compress_if_exists SRR7868964_1 || true)"
gz2="$(_compress_if_exists SRR7868964_2 || true)"
gzs="$(_compress_if_exists SRR7868964 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP1_ChIP_rep1_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7868965
gz1="$(_compress_if_exists SRR7868965_1 || true)"
gz2="$(_compress_if_exists SRR7868965_2 || true)"
gzs="$(_compress_if_exists SRR7868965 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP1_ChIP_rep2_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7868966
gz1="$(_compress_if_exists SRR7868966_1 || true)"
gz2="$(_compress_if_exists SRR7868966_2 || true)"
gzs="$(_compress_if_exists SRR7868966 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP2_ChIP_rep1_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7868967
gz1="$(_compress_if_exists SRR7868967_1 || true)"
gz2="$(_compress_if_exists SRR7868967_2 || true)"
gzs="$(_compress_if_exists SRR7868967 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PCBP2_ChIP_rep2_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7868968
gz1="$(_compress_if_exists SRR7868968_1 || true)"
gz2="$(_compress_if_exists SRR7868968_2 || true)"
gzs="$(_compress_if_exists SRR7868968 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FUS_ChIP_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868969
gz1="$(_compress_if_exists SRR7868969_1 || true)"
gz2="$(_compress_if_exists SRR7868969_2 || true)"
gzs="$(_compress_if_exists SRR7868969 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FUS_ChIP_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868970
gz1="$(_compress_if_exists SRR7868970_1 || true)"
gz2="$(_compress_if_exists SRR7868970_2 || true)"
gzs="$(_compress_if_exists SRR7868970 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TAF15_ChIP_rep1_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868971
gz1="$(_compress_if_exists SRR7868971_1 || true)"
gz2="$(_compress_if_exists SRR7868971_2 || true)"
gzs="$(_compress_if_exists SRR7868971 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TAF15_ChIP_rep2_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868972
gz1="$(_compress_if_exists SRR7868972_1 || true)"
gz2="$(_compress_if_exists SRR7868972_2 || true)"
gzs="$(_compress_if_exists SRR7868972 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SNRNP70_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868973
gz1="$(_compress_if_exists SRR7868973_1 || true)"
gz2="$(_compress_if_exists SRR7868973_2 || true)"
gzs="$(_compress_if_exists SRR7868973 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SNRNP70_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868974
gz1="$(_compress_if_exists SRR7868974_1 || true)"
gz2="$(_compress_if_exists SRR7868974_2 || true)"
gzs="$(_compress_if_exists SRR7868974 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PRPF4_ChIP_rep1_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7868975
gz1="$(_compress_if_exists SRR7868975_1 || true)"
gz2="$(_compress_if_exists SRR7868975_2 || true)"
gzs="$(_compress_if_exists SRR7868975 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" PRPF4_ChIP_rep2_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7868976
gz1="$(_compress_if_exists SRR7868976_1 || true)"
gz2="$(_compress_if_exists SRR7868976_2 || true)"
gzs="$(_compress_if_exists SRR7868976 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FIP1L1_ChIP_rep1_K562_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868977
gz1="$(_compress_if_exists SRR7868977_1 || true)"
gz2="$(_compress_if_exists SRR7868977_2 || true)"
gzs="$(_compress_if_exists SRR7868977 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" FIP1L1_ChIP_rep2_K562_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7868978
gz1="$(_compress_if_exists SRR7868978_1 || true)"
gz2="$(_compress_if_exists SRR7868978_2 || true)"
gzs="$(_compress_if_exists SRR7868978 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBFOX2_ChIP_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868979
gz1="$(_compress_if_exists SRR7868979_1 || true)"
gz2="$(_compress_if_exists SRR7868979_2 || true)"
gzs="$(_compress_if_exists SRR7868979 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBFOX2_ChIP_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868980
gz1="$(_compress_if_exists SRR7868980_1 || true)"
gz2="$(_compress_if_exists SRR7868980_2 || true)"
gzs="$(_compress_if_exists SRR7868980 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM22_ChIP_rep1_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868981
gz1="$(_compress_if_exists SRR7868981_1 || true)"
gz2="$(_compress_if_exists SRR7868981_2 || true)"
gzs="$(_compress_if_exists SRR7868981 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM22_ChIP_rep2_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868982
gz1="$(_compress_if_exists SRR7868982_1 || true)"
gz2="$(_compress_if_exists SRR7868982_2 || true)"
gzs="$(_compress_if_exists SRR7868982 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM25_ChIP_rep1_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868983
gz1="$(_compress_if_exists SRR7868983_1 || true)"
gz2="$(_compress_if_exists SRR7868983_2 || true)"
gzs="$(_compress_if_exists SRR7868983 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM25_ChIP_rep2_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868984
gz1="$(_compress_if_exists SRR7868984_1 || true)"
gz2="$(_compress_if_exists SRR7868984_2 || true)"
gzs="$(_compress_if_exists SRR7868984 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM39_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868985
gz1="$(_compress_if_exists SRR7868985_1 || true)"
gz2="$(_compress_if_exists SRR7868985_2 || true)"
gzs="$(_compress_if_exists SRR7868985 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" RBM39_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7868986
gz1="$(_compress_if_exists SRR7868986_1 || true)"
gz2="$(_compress_if_exists SRR7868986_2 || true)"
gzs="$(_compress_if_exists SRR7868986 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" AGO1_ChIP_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868987
gz1="$(_compress_if_exists SRR7868987_1 || true)"
gz2="$(_compress_if_exists SRR7868987_2 || true)"
gzs="$(_compress_if_exists SRR7868987 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" AGO1_ChIP_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868988
gz1="$(_compress_if_exists SRR7868988_1 || true)"
gz2="$(_compress_if_exists SRR7868988_2 || true)"
gzs="$(_compress_if_exists SRR7868988 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SAFB_ChIP_rep1_K562_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868989
gz1="$(_compress_if_exists SRR7868989_1 || true)"
gz2="$(_compress_if_exists SRR7868989_2 || true)"
gzs="$(_compress_if_exists SRR7868989 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SAFB_ChIP_rep2_K562_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868990
gz1="$(_compress_if_exists SRR7868990_1 || true)"
gz2="$(_compress_if_exists SRR7868990_2 || true)"
gzs="$(_compress_if_exists SRR7868990 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SAFB2_ChIP_rep1_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868991
gz1="$(_compress_if_exists SRR7868991_1 || true)"
gz2="$(_compress_if_exists SRR7868991_2 || true)"
gzs="$(_compress_if_exists SRR7868991 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SAFB2_ChIP_rep2_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7868992
gz1="$(_compress_if_exists SRR7868992_1 || true)"
gz2="$(_compress_if_exists SRR7868992_2 || true)"
gzs="$(_compress_if_exists SRR7868992 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" NONO_ChIP_rep1_K562_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7868993
gz1="$(_compress_if_exists SRR7868993_1 || true)"
gz2="$(_compress_if_exists SRR7868993_2 || true)"
gzs="$(_compress_if_exists SRR7868993 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" NONO_ChIP_rep2_K562_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7868994
gz1="$(_compress_if_exists SRR7868994_1 || true)"
gz2="$(_compress_if_exists SRR7868994_2 || true)"
gzs="$(_compress_if_exists SRR7868994 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" GTF2F1_ChIP_rep1_K562_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868995
gz1="$(_compress_if_exists SRR7868995_1 || true)"
gz2="$(_compress_if_exists SRR7868995_2 || true)"
gzs="$(_compress_if_exists SRR7868995 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" GTF2F1_ChIP_rep2_K562_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7868996
gz1="$(_compress_if_exists SRR7868996_1 || true)"
gz2="$(_compress_if_exists SRR7868996_2 || true)"
gzs="$(_compress_if_exists SRR7868996 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" POLR2G_ChIP_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868997
gz1="$(_compress_if_exists SRR7868997_1 || true)"
gz2="$(_compress_if_exists SRR7868997_2 || true)"
gzs="$(_compress_if_exists SRR7868997 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" POLR2G_ChIP_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7868998
gz1="$(_compress_if_exists SRR7868998_1 || true)"
gz2="$(_compress_if_exists SRR7868998_2 || true)"
gzs="$(_compress_if_exists SRR7868998 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SFPQ_ChIP_rep1_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7868999
gz1="$(_compress_if_exists SRR7868999_1 || true)"
gz2="$(_compress_if_exists SRR7868999_2 || true)"
gzs="$(_compress_if_exists SRR7868999 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" SFPQ_ChIP_rep2_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7869000
gz1="$(_compress_if_exists SRR7869000_1 || true)"
gz2="$(_compress_if_exists SRR7869000_2 || true)"
gzs="$(_compress_if_exists SRR7869000 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TARDBP_ChIP_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7869001
gz1="$(_compress_if_exists SRR7869001_1 || true)"
gz2="$(_compress_if_exists SRR7869001_2 || true)"
gzs="$(_compress_if_exists SRR7869001 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" TARDBP_ChIP_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7869002
gz1="$(_compress_if_exists SRR7869002_1 || true)"
gz2="$(_compress_if_exists SRR7869002_2 || true)"
gzs="$(_compress_if_exists SRR7869002 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" XRCC5_ChIP_rep1_K562_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7869003
gz1="$(_compress_if_exists SRR7869003_1 || true)"
gz2="$(_compress_if_exists SRR7869003_2 || true)"
gzs="$(_compress_if_exists SRR7869003 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" XRCC5_ChIP_rep2_K562_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7869004
gz1="$(_compress_if_exists SRR7869004_1 || true)"
gz2="$(_compress_if_exists SRR7869004_2 || true)"
gzs="$(_compress_if_exists SRR7869004 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" CCAR2_ChIP_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7869005
gz1="$(_compress_if_exists SRR7869005_1 || true)"
gz2="$(_compress_if_exists SRR7869005_2 || true)"
gzs="$(_compress_if_exists SRR7869005 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" CCAR2_ChIP_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7869006
gz1="$(_compress_if_exists SRR7869006_1 || true)"
gz2="$(_compress_if_exists SRR7869006_2 || true)"
gzs="$(_compress_if_exists SRR7869006 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch1.fastq.gz
fi

fasterq-dump --split-files SRR7869007
gz1="$(_compress_if_exists SRR7869007_1 || true)"
gz2="$(_compress_if_exists SRR7869007_2 || true)"
gzs="$(_compress_if_exists SRR7869007 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch1.fastq.gz
fi

fasterq-dump --split-files SRR7869008
gz1="$(_compress_if_exists SRR7869008_1 || true)"
gz2="$(_compress_if_exists SRR7869008_2 || true)"
gzs="$(_compress_if_exists SRR7869008 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7869009
gz1="$(_compress_if_exists SRR7869009_1 || true)"
gz2="$(_compress_if_exists SRR7869009_2 || true)"
gzs="$(_compress_if_exists SRR7869009 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch2.fastq.gz
fi

fasterq-dump --split-files SRR7869010
gz1="$(_compress_if_exists SRR7869010_1 || true)"
gz2="$(_compress_if_exists SRR7869010_2 || true)"
gzs="$(_compress_if_exists SRR7869010 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7869011
gz1="$(_compress_if_exists SRR7869011_1 || true)"
gz2="$(_compress_if_exists SRR7869011_2 || true)"
gzs="$(_compress_if_exists SRR7869011 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch3.fastq.gz
fi

fasterq-dump --split-files SRR7869012
gz1="$(_compress_if_exists SRR7869012_1 || true)"
gz2="$(_compress_if_exists SRR7869012_2 || true)"
gzs="$(_compress_if_exists SRR7869012 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7869013
gz1="$(_compress_if_exists SRR7869013_1 || true)"
gz2="$(_compress_if_exists SRR7869013_2 || true)"
gzs="$(_compress_if_exists SRR7869013 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch4.fastq.gz
fi

fasterq-dump --split-files SRR7869014
gz1="$(_compress_if_exists SRR7869014_1 || true)"
gz2="$(_compress_if_exists SRR7869014_2 || true)"
gzs="$(_compress_if_exists SRR7869014 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7869015
gz1="$(_compress_if_exists SRR7869015_1 || true)"
gz2="$(_compress_if_exists SRR7869015_2 || true)"
gzs="$(_compress_if_exists SRR7869015 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch5.fastq.gz
fi

fasterq-dump --split-files SRR7869016
gz1="$(_compress_if_exists SRR7869016_1 || true)"
gz2="$(_compress_if_exists SRR7869016_2 || true)"
gzs="$(_compress_if_exists SRR7869016 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7869017
gz1="$(_compress_if_exists SRR7869017_1 || true)"
gz2="$(_compress_if_exists SRR7869017_2 || true)"
gzs="$(_compress_if_exists SRR7869017 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch6.fastq.gz
fi

fasterq-dump --split-files SRR7869018
gz1="$(_compress_if_exists SRR7869018_1 || true)"
gz2="$(_compress_if_exists SRR7869018_2 || true)"
gzs="$(_compress_if_exists SRR7869018 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7869019
gz1="$(_compress_if_exists SRR7869019_1 || true)"
gz2="$(_compress_if_exists SRR7869019_2 || true)"
gzs="$(_compress_if_exists SRR7869019 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch7.fastq.gz
fi

fasterq-dump --split-files SRR7869020
gz1="$(_compress_if_exists SRR7869020_1 || true)"
gz2="$(_compress_if_exists SRR7869020_2 || true)"
gzs="$(_compress_if_exists SRR7869020 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7869021
gz1="$(_compress_if_exists SRR7869021_1 || true)"
gz2="$(_compress_if_exists SRR7869021_2 || true)"
gzs="$(_compress_if_exists SRR7869021 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch8.fastq.gz
fi

fasterq-dump --split-files SRR7869022
gz1="$(_compress_if_exists SRR7869022_1 || true)"
gz2="$(_compress_if_exists SRR7869022_2 || true)"
gzs="$(_compress_if_exists SRR7869022 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7869023
gz1="$(_compress_if_exists SRR7869023_1 || true)"
gz2="$(_compress_if_exists SRR7869023_2 || true)"
gzs="$(_compress_if_exists SRR7869023 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch9.fastq.gz
fi

fasterq-dump --split-files SRR7869024
gz1="$(_compress_if_exists SRR7869024_1 || true)"
gz2="$(_compress_if_exists SRR7869024_2 || true)"
gzs="$(_compress_if_exists SRR7869024 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7869025
gz1="$(_compress_if_exists SRR7869025_1 || true)"
gz2="$(_compress_if_exists SRR7869025_2 || true)"
gzs="$(_compress_if_exists SRR7869025 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch10.fastq.gz
fi

fasterq-dump --split-files SRR7869026
gz1="$(_compress_if_exists SRR7869026_1 || true)"
gz2="$(_compress_if_exists SRR7869026_2 || true)"
gzs="$(_compress_if_exists SRR7869026 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep1_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7869027
gz1="$(_compress_if_exists SRR7869027_1 || true)"
gz2="$(_compress_if_exists SRR7869027_2 || true)"
gzs="$(_compress_if_exists SRR7869027 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" input_Control_rep2_K562_batch11.fastq.gz
fi

fasterq-dump --split-files SRR7869028
gz1="$(_compress_if_exists SRR7869028_1 || true)"
gz2="$(_compress_if_exists SRR7869028_2 || true)"
gzs="$(_compress_if_exists SRR7869028 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" RBM25chip-NC.rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" RBM25chip-NC.rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869029
gz1="$(_compress_if_exists SRR7869029_1 || true)"
gz2="$(_compress_if_exists SRR7869029_2 || true)"
gzs="$(_compress_if_exists SRR7869029 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" RBM25chip-NC.rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" RBM25chip-NC.rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869030
gz1="$(_compress_if_exists SRR7869030_1 || true)"
gz2="$(_compress_if_exists SRR7869030_2 || true)"
gzs="$(_compress_if_exists SRR7869030 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" RBM25chip-yy1kd.rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" RBM25chip-yy1kd.rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869031
gz1="$(_compress_if_exists SRR7869031_1 || true)"
gz2="$(_compress_if_exists SRR7869031_2 || true)"
gzs="$(_compress_if_exists SRR7869031 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" RBM25chip-yy1kd.rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" RBM25chip-yy1kd.rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869032
gz1="$(_compress_if_exists SRR7869032_1 || true)"
gz2="$(_compress_if_exists SRR7869032_2 || true)"
gzs="$(_compress_if_exists SRR7869032 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-NC4rbm25chip-rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-NC4rbm25chip-rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869033
gz1="$(_compress_if_exists SRR7869033_1 || true)"
gz2="$(_compress_if_exists SRR7869033_2 || true)"
gzs="$(_compress_if_exists SRR7869033 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-NC4rbm25chip-rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-NC4rbm25chip-rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869034
gz1="$(_compress_if_exists SRR7869034_1 || true)"
gz2="$(_compress_if_exists SRR7869034_2 || true)"
gzs="$(_compress_if_exists SRR7869034 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-yy1kd4rbm25chip-rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-yy1kd4rbm25chip-rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869035
gz1="$(_compress_if_exists SRR7869035_1 || true)"
gz2="$(_compress_if_exists SRR7869035_2 || true)"
gzs="$(_compress_if_exists SRR7869035 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-yy1kd4rbm25chip-rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-yy1kd4rbm25chip-rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869036
gz1="$(_compress_if_exists SRR7869036_1 || true)"
gz2="$(_compress_if_exists SRR7869036_2 || true)"
gzs="$(_compress_if_exists SRR7869036 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" YY1chip-NC.rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" YY1chip-NC.rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869037
gz1="$(_compress_if_exists SRR7869037_1 || true)"
gz2="$(_compress_if_exists SRR7869037_2 || true)"
gzs="$(_compress_if_exists SRR7869037 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" YY1chip-NC.rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" YY1chip-NC.rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869038
gz1="$(_compress_if_exists SRR7869038_1 || true)"
gz2="$(_compress_if_exists SRR7869038_2 || true)"
gzs="$(_compress_if_exists SRR7869038 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" YY1chip-rbm25kd.rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" YY1chip-rbm25kd.rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869039
gz1="$(_compress_if_exists SRR7869039_1 || true)"
gz2="$(_compress_if_exists SRR7869039_2 || true)"
gzs="$(_compress_if_exists SRR7869039 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" YY1chip-rbm25kd.rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" YY1chip-rbm25kd.rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869040
gz1="$(_compress_if_exists SRR7869040_1 || true)"
gz2="$(_compress_if_exists SRR7869040_2 || true)"
gzs="$(_compress_if_exists SRR7869040 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-NC4yy1chip-rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-NC4yy1chip-rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869041
gz1="$(_compress_if_exists SRR7869041_1 || true)"
gz2="$(_compress_if_exists SRR7869041_2 || true)"
gzs="$(_compress_if_exists SRR7869041 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-NC4yy1chip-rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-NC4yy1chip-rep2_R2.fq.gz
fi

fasterq-dump --split-files SRR7869042
gz1="$(_compress_if_exists SRR7869042_1 || true)"
gz2="$(_compress_if_exists SRR7869042_2 || true)"
gzs="$(_compress_if_exists SRR7869042 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-rbm25kd4yy1chip-rep1_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-rbm25kd4yy1chip-rep1_R2.fq.gz
fi

fasterq-dump --split-files SRR7869043
gz1="$(_compress_if_exists SRR7869043_1 || true)"
gz2="$(_compress_if_exists SRR7869043_2 || true)"
gzs="$(_compress_if_exists SRR7869043 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" input-rbm25kd4yy1chip-rep2_R1.fq.gz
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" input-rbm25kd4yy1chip-rep2_R2.fq.gz
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868840/SRR7868840
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868841/SRR7868841
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868842/SRR7868842
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868843/SRR7868843
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868844/SRR7868844
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868845/SRR7868845
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868846/SRR7868846
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868847/SRR7868847
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868848/SRR7868848
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868849/SRR7868849
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868850/SRR7868850
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868851/SRR7868851
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868852/SRR7868852
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868853/SRR7868853
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868854/SRR7868854
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868855/SRR7868855
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868856/SRR7868856
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868857/SRR7868857
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868858/SRR7868858
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868859/SRR7868859
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868860/SRR7868860
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868861/SRR7868861
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868862/SRR7868862
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868863/SRR7868863
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868864/SRR7868864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868865/SRR7868865
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868866/SRR7868866
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868867/SRR7868867
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868868/SRR7868868
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868869/SRR7868869
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868870/SRR7868870
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868871/SRR7868871
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868872/SRR7868872
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868873/SRR7868873
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868874/SRR7868874
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868875/SRR7868875
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868876/SRR7868876
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868877/SRR7868877
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868878/SRR7868878
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868879/SRR7868879
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868880/SRR7868880
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868881/SRR7868881
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868882/SRR7868882
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868883/SRR7868883
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868884/SRR7868884
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868885/SRR7868885
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868886/SRR7868886
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868887/SRR7868887
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868888/SRR7868888
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868889/SRR7868889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868890/SRR7868890
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868891/SRR7868891
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868892/SRR7868892
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868893/SRR7868893
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868894/SRR7868894
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868895/SRR7868895
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868896/SRR7868896
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868897/SRR7868897
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868898/SRR7868898
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868899/SRR7868899
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868900/SRR7868900
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868901/SRR7868901
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868902/SRR7868902
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868903/SRR7868903
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868904/SRR7868904
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868905/SRR7868905
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868906/SRR7868906
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868907/SRR7868907
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868908/SRR7868908
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868909/SRR7868909
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868910/SRR7868910
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868911/SRR7868911
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868912/SRR7868912
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868913/SRR7868913
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868914/SRR7868914
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868915/SRR7868915
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868916/SRR7868916
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868917/SRR7868917
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868918/SRR7868918
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868919/SRR7868919
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868920/SRR7868920
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868921/SRR7868921
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868922/SRR7868922
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868923/SRR7868923
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868924/SRR7868924
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868925/SRR7868925
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868926/SRR7868926
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868927/SRR7868927
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868928/SRR7868928
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868929/SRR7868929
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868930/SRR7868930
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868931/SRR7868931
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868932/SRR7868932
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868933/SRR7868933
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868934/SRR7868934
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868935/SRR7868935
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868936/SRR7868936
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868937/SRR7868937
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868938/SRR7868938
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868939/SRR7868939
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868940/SRR7868940
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868941/SRR7868941
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868942/SRR7868942
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868943/SRR7868943
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868944/SRR7868944
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868945/SRR7868945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868946/SRR7868946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868947/SRR7868947
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868948/SRR7868948
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868949/SRR7868949
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868950/SRR7868950
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868951/SRR7868951
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868952/SRR7868952
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868953/SRR7868953
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868954/SRR7868954
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868955/SRR7868955
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868956/SRR7868956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868957/SRR7868957
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868958/SRR7868958
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868959/SRR7868959
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868960/SRR7868960
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868961/SRR7868961
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868962/SRR7868962
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868963/SRR7868963
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868964/SRR7868964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868965/SRR7868965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868966/SRR7868966
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868967/SRR7868967
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868968/SRR7868968
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868969/SRR7868969
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868970/SRR7868970
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868971/SRR7868971
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868972/SRR7868972
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868973/SRR7868973
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868974/SRR7868974
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868975/SRR7868975
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868976/SRR7868976
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868977/SRR7868977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868978/SRR7868978
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868979/SRR7868979
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868980/SRR7868980
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868981/SRR7868981
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868982/SRR7868982
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868983/SRR7868983
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868984/SRR7868984
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868985/SRR7868985
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868986/SRR7868986
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868987/SRR7868987
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868988/SRR7868988
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868989/SRR7868989
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868990/SRR7868990
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868991/SRR7868991
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868992/SRR7868992
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868993/SRR7868993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868994/SRR7868994
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868995/SRR7868995
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868996/SRR7868996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868997/SRR7868997
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868998/SRR7868998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868999/SRR7868999
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869000/SRR7869000
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869001/SRR7869001
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869002/SRR7869002
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869003/SRR7869003
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869004/SRR7869004
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869005/SRR7869005
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869006/SRR7869006
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869007/SRR7869007
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869008/SRR7869008
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869009/SRR7869009
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869010/SRR7869010
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869011/SRR7869011
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869012/SRR7869012
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869013/SRR7869013
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869014/SRR7869014
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869015/SRR7869015
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869016/SRR7869016
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869017/SRR7869017
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869018/SRR7869018
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869019/SRR7869019
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869020/SRR7869020
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869021/SRR7869021
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869022/SRR7869022
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869023/SRR7869023
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869024/SRR7869024
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869025/SRR7869025
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869026/SRR7869026
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869027/SRR7869027
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869028/SRR7869028
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869029/SRR7869029
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869030/SRR7869030
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869031/SRR7869031
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869032/SRR7869032
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869033/SRR7869033
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869034/SRR7869034
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869035/SRR7869035
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869036/SRR7869036
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869037/SRR7869037
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869038/SRR7869038
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869039/SRR7869039
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869040/SRR7869040
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869041/SRR7869041
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869042/SRR7869042
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869043/SRR7869043

# --- Additional data files ---
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868890/SRR7868890
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868986/SRR7868986
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868891/SRR7868891
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868987/SRR7868987
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868892/SRR7868892
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868893/SRR7868893
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868908/SRR7868908
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869004/SRR7869004
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868909/SRR7868909
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869005/SRR7869005
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868880/SRR7868880
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868976/SRR7868976
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868881/SRR7868881
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868977/SRR7868977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868872/SRR7868872
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868968/SRR7868968
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868873/SRR7868873
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868969/SRR7868969
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868898/SRR7868898
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868994/SRR7868994
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868899/SRR7868899
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868995/SRR7868995
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868854/SRR7868854
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868950/SRR7868950
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868855/SRR7868855
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868951/SRR7868951
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868856/SRR7868856
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868952/SRR7868952
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868857/SRR7868857
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868953/SRR7868953
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868858/SRR7868858
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868954/SRR7868954
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868859/SRR7868859
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868955/SRR7868955
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868860/SRR7868860
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868956/SRR7868956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868861/SRR7868861
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868957/SRR7868957
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868862/SRR7868862
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868958/SRR7868958
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868863/SRR7868863
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868959/SRR7868959
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868864/SRR7868864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868960/SRR7868960
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868865/SRR7868865
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868961/SRR7868961
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868920/SRR7868920
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868922/SRR7868922
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868924/SRR7868924
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868926/SRR7868926
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868928/SRR7868928
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868930/SRR7868930
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868932/SRR7868932
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868934/SRR7868934
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868910/SRR7868910
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868912/SRR7868912
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868914/SRR7868914
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868916/SRR7868916
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868918/SRR7868918
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869024/SRR7869024
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869026/SRR7869026
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869006/SRR7869006
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869008/SRR7869008
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869010/SRR7869010
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869012/SRR7869012
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869014/SRR7869014
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869016/SRR7869016
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869018/SRR7869018
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869020/SRR7869020
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869022/SRR7869022
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868921/SRR7868921
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868923/SRR7868923
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868925/SRR7868925
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868927/SRR7868927
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868929/SRR7868929
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868931/SRR7868931
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868933/SRR7868933
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868935/SRR7868935
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868911/SRR7868911
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868913/SRR7868913
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868915/SRR7868915
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868917/SRR7868917
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868919/SRR7868919
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869025/SRR7869025
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869027/SRR7869027
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869007/SRR7869007
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869009/SRR7869009
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869011/SRR7869011
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869013/SRR7869013
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869015/SRR7869015
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869017/SRR7869017
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869019/SRR7869019
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869021/SRR7869021
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869023/SRR7869023
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869032/SRR7869032
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869033/SRR7869033
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869040/SRR7869040
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869041/SRR7869041
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869042/SRR7869042
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869043/SRR7869043
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869034/SRR7869034
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869035/SRR7869035
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868896/SRR7868896
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868992/SRR7868992
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868897/SRR7868897
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868993/SRR7868993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868868/SRR7868868
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868964/SRR7868964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868869/SRR7868869
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868965/SRR7868965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868870/SRR7868870
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868966/SRR7868966
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868871/SRR7868871
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868967/SRR7868967
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868900/SRR7868900
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868996/SRR7868996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868901/SRR7868901
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868997/SRR7868997
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868878/SRR7868878
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868974/SRR7868974
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868879/SRR7868879
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868975/SRR7868975
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868866/SRR7868866
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868962/SRR7868962
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868867/SRR7868867
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868963/SRR7868963
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868882/SRR7868882
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868978/SRR7868978
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868883/SRR7868883
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868979/SRR7868979
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868884/SRR7868884
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868980/SRR7868980
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868885/SRR7868885
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868981/SRR7868981
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869028/SRR7869028
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869029/SRR7869029
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868886/SRR7868886
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868982/SRR7868982
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868887/SRR7868887
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868983/SRR7868983
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869030/SRR7869030
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869031/SRR7869031
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868888/SRR7868888
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868984/SRR7868984
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868889/SRR7868889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868985/SRR7868985
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868894/SRR7868894
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868990/SRR7868990
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868895/SRR7868895
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868991/SRR7868991
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868988/SRR7868988
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868989/SRR7868989
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868902/SRR7868902
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868998/SRR7868998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868903/SRR7868903
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868999/SRR7868999
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868876/SRR7868876
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868972/SRR7868972
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868877/SRR7868877
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868973/SRR7868973
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868864/SRR7868864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868889/SRR7868889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868945/SRR7868945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868946/SRR7868946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868956/SRR7868956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868964/SRR7868964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868965/SRR7868965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868976/SRR7868976
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868977/SRR7868977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868993/SRR7868993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868996/SRR7868996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868998/SRR7868998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869007/SRR7869007
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868840/SRR7868840
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868936/SRR7868936
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868841/SRR7868841
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868937/SRR7868937
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868842/SRR7868842
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868938/SRR7868938
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868843/SRR7868843
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868939/SRR7868939
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868844/SRR7868844
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868940/SRR7868940
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868845/SRR7868845
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868941/SRR7868941
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868846/SRR7868846
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868942/SRR7868942
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868847/SRR7868847
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868943/SRR7868943
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868848/SRR7868848
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868944/SRR7868944
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868849/SRR7868849
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868945/SRR7868945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868874/SRR7868874
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868970/SRR7868970
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868875/SRR7868875
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868971/SRR7868971
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868904/SRR7868904
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869000/SRR7869000
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868905/SRR7868905
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869001/SRR7869001
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868850/SRR7868850
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868946/SRR7868946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868851/SRR7868851
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868947/SRR7868947
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868852/SRR7868852
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868948/SRR7868948
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868853/SRR7868853
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868949/SRR7868949
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868906/SRR7868906
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869002/SRR7869002
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7868907/SRR7868907
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869003/SRR7869003
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869036/SRR7869036
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869037/SRR7869037
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869038/SRR7869038
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR7869039/SRR7869039

echo "Download complete. Files saved to $OUTDIR"