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

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

# --- GEO supplementary files ---
wget -nc ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE74nnn/GSE74672/suppl/GSE74672_expressed_mols_with_classes.xlsx.gz -O GSE74672_expressed_mols_with_classes.xlsx.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 SRR2934320
gz1="$(_compress_if_exists SRR2934320_1 || true)"
gz2="$(_compress_if_exists SRR2934320_2 || true)"
gzs="$(_compress_if_exists SRR2934320 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2934321
gz1="$(_compress_if_exists SRR2934321_1 || true)"
gz2="$(_compress_if_exists SRR2934321_2 || true)"
gzs="$(_compress_if_exists SRR2934321 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_A05_ACCTCGTT.fq.gz
fi

fasterq-dump --split-files SRR2934322
gz1="$(_compress_if_exists SRR2934322_1 || true)"
gz2="$(_compress_if_exists SRR2934322_2 || true)"
gzs="$(_compress_if_exists SRR2934322 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_A06_CACGGTGT.fq.gz
fi

fasterq-dump --split-files SRR2934323
gz1="$(_compress_if_exists SRR2934323_1 || true)"
gz2="$(_compress_if_exists SRR2934323_2 || true)"
gzs="$(_compress_if_exists SRR2934323 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_A07_TATAGGAC.fq.gz
fi

fasterq-dump --split-files SRR2934324
gz1="$(_compress_if_exists SRR2934324_1 || true)"
gz2="$(_compress_if_exists SRR2934324_2 || true)"
gzs="$(_compress_if_exists SRR2934324 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_A08_TCCCATGG.fq.gz
fi

fasterq-dump --split-files SRR2934325
gz1="$(_compress_if_exists SRR2934325_1 || true)"
gz2="$(_compress_if_exists SRR2934325_2 || true)"
gzs="$(_compress_if_exists SRR2934325 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_A09_GAATCACG.fq.gz
fi

fasterq-dump --split-files SRR2934326
gz1="$(_compress_if_exists SRR2934326_1 || true)"
gz2="$(_compress_if_exists SRR2934326_2 || true)"
gzs="$(_compress_if_exists SRR2934326 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B01_ACGAGTCT.fq.gz
fi

fasterq-dump --split-files SRR2934327
gz1="$(_compress_if_exists SRR2934327_1 || true)"
gz2="$(_compress_if_exists SRR2934327_2 || true)"
gzs="$(_compress_if_exists SRR2934327 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B03_CAGGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934328
gz1="$(_compress_if_exists SRR2934328_1 || true)"
gz2="$(_compress_if_exists SRR2934328_2 || true)"
gzs="$(_compress_if_exists SRR2934328 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B04_ACTTTGCG.fq.gz
fi

fasterq-dump --split-files SRR2934329
gz1="$(_compress_if_exists SRR2934329_1 || true)"
gz2="$(_compress_if_exists SRR2934329_2 || true)"
gzs="$(_compress_if_exists SRR2934329 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B05_TGGTGGCT.fq.gz
fi

fasterq-dump --split-files SRR2934330
gz1="$(_compress_if_exists SRR2934330_1 || true)"
gz2="$(_compress_if_exists SRR2934330_2 || true)"
gzs="$(_compress_if_exists SRR2934330 || true)"

fasterq-dump --split-files SRR2934331
gz1="$(_compress_if_exists SRR2934331_1 || true)"
gz2="$(_compress_if_exists SRR2934331_2 || true)"
gzs="$(_compress_if_exists SRR2934331 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B07_CAGCGTAG.fq.gz
fi

fasterq-dump --split-files SRR2934332
gz1="$(_compress_if_exists SRR2934332_1 || true)"
gz2="$(_compress_if_exists SRR2934332_2 || true)"
gzs="$(_compress_if_exists SRR2934332 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2934333
gz1="$(_compress_if_exists SRR2934333_1 || true)"
gz2="$(_compress_if_exists SRR2934333_2 || true)"
gzs="$(_compress_if_exists SRR2934333 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2934334
gz1="$(_compress_if_exists SRR2934334_1 || true)"
gz2="$(_compress_if_exists SRR2934334_2 || true)"
gzs="$(_compress_if_exists SRR2934334 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934335
gz1="$(_compress_if_exists SRR2934335_1 || true)"
gz2="$(_compress_if_exists SRR2934335_2 || true)"
gzs="$(_compress_if_exists SRR2934335 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_B12_GATAAGTG.fq.gz
fi

fasterq-dump --split-files SRR2934336
gz1="$(_compress_if_exists SRR2934336_1 || true)"
gz2="$(_compress_if_exists SRR2934336_2 || true)"
gzs="$(_compress_if_exists SRR2934336 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2934337
gz1="$(_compress_if_exists SRR2934337_1 || true)"
gz2="$(_compress_if_exists SRR2934337_2 || true)"
gzs="$(_compress_if_exists SRR2934337 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C02_TACCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2934338
gz1="$(_compress_if_exists SRR2934338_1 || true)"
gz2="$(_compress_if_exists SRR2934338_2 || true)"
gzs="$(_compress_if_exists SRR2934338 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2934339
gz1="$(_compress_if_exists SRR2934339_1 || true)"
gz2="$(_compress_if_exists SRR2934339_2 || true)"
gzs="$(_compress_if_exists SRR2934339 || true)"

fasterq-dump --split-files SRR2934340
gz1="$(_compress_if_exists SRR2934340_1 || true)"
gz2="$(_compress_if_exists SRR2934340_2 || true)"
gzs="$(_compress_if_exists SRR2934340 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C07_ACAATCCC.fq.gz
fi

fasterq-dump --split-files SRR2934341
gz1="$(_compress_if_exists SRR2934341_1 || true)"
gz2="$(_compress_if_exists SRR2934341_2 || true)"
gzs="$(_compress_if_exists SRR2934341 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C09_GGAGTTAC.fq.gz
fi

fasterq-dump --split-files SRR2934342
gz1="$(_compress_if_exists SRR2934342_1 || true)"
gz2="$(_compress_if_exists SRR2934342_2 || true)"
gzs="$(_compress_if_exists SRR2934342 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2934343
gz1="$(_compress_if_exists SRR2934343_1 || true)"
gz2="$(_compress_if_exists SRR2934343_2 || true)"
gzs="$(_compress_if_exists SRR2934343 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_C12_TTAGCGGT.fq.gz
fi

fasterq-dump --split-files SRR2934344
gz1="$(_compress_if_exists SRR2934344_1 || true)"
gz2="$(_compress_if_exists SRR2934344_2 || true)"
gzs="$(_compress_if_exists SRR2934344 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D01_GTCGTTGA.fq.gz
fi

fasterq-dump --split-files SRR2934345
gz1="$(_compress_if_exists SRR2934345_1 || true)"
gz2="$(_compress_if_exists SRR2934345_2 || true)"
gzs="$(_compress_if_exists SRR2934345 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D03_CCTGTAAC.fq.gz
fi

fasterq-dump --split-files SRR2934346
gz1="$(_compress_if_exists SRR2934346_1 || true)"
gz2="$(_compress_if_exists SRR2934346_2 || true)"
gzs="$(_compress_if_exists SRR2934346 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D04_CTAATGAC.fq.gz
fi

fasterq-dump --split-files SRR2934347
gz1="$(_compress_if_exists SRR2934347_1 || true)"
gz2="$(_compress_if_exists SRR2934347_2 || true)"
gzs="$(_compress_if_exists SRR2934347 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D06_GGATACGT.fq.gz
fi

fasterq-dump --split-files SRR2934348
gz1="$(_compress_if_exists SRR2934348_1 || true)"
gz2="$(_compress_if_exists SRR2934348_2 || true)"
gzs="$(_compress_if_exists SRR2934348 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D08_TTCACCCG.fq.gz
fi

fasterq-dump --split-files SRR2934349
gz1="$(_compress_if_exists SRR2934349_1 || true)"
gz2="$(_compress_if_exists SRR2934349_2 || true)"
gzs="$(_compress_if_exists SRR2934349 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D11_CGACTATG.fq.gz
fi

fasterq-dump --split-files SRR2934350
gz1="$(_compress_if_exists SRR2934350_1 || true)"
gz2="$(_compress_if_exists SRR2934350_2 || true)"
gzs="$(_compress_if_exists SRR2934350 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2934351
gz1="$(_compress_if_exists SRR2934351_1 || true)"
gz2="$(_compress_if_exists SRR2934351_2 || true)"
gzs="$(_compress_if_exists SRR2934351 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E01_CGCTAAAT.fq.gz
fi

fasterq-dump --split-files SRR2934352
gz1="$(_compress_if_exists SRR2934352_1 || true)"
gz2="$(_compress_if_exists SRR2934352_2 || true)"
gzs="$(_compress_if_exists SRR2934352 || true)"

fasterq-dump --split-files SRR2934354
gz1="$(_compress_if_exists SRR2934354_1 || true)"
gz2="$(_compress_if_exists SRR2934354_2 || true)"
gzs="$(_compress_if_exists SRR2934354 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2934355
gz1="$(_compress_if_exists SRR2934355_1 || true)"
gz2="$(_compress_if_exists SRR2934355_2 || true)"
gzs="$(_compress_if_exists SRR2934355 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E07_ACAGCGAA.fq.gz
fi

fasterq-dump --split-files SRR2934356
gz1="$(_compress_if_exists SRR2934356_1 || true)"
gz2="$(_compress_if_exists SRR2934356_2 || true)"
gzs="$(_compress_if_exists SRR2934356 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E08_AAGATGGC.fq.gz
fi

fasterq-dump --split-files SRR2934357
gz1="$(_compress_if_exists SRR2934357_1 || true)"
gz2="$(_compress_if_exists SRR2934357_2 || true)"
gzs="$(_compress_if_exists SRR2934357 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E09_GTACTCGG.fq.gz
fi

fasterq-dump --split-files SRR2934358
gz1="$(_compress_if_exists SRR2934358_1 || true)"
gz2="$(_compress_if_exists SRR2934358_2 || true)"
gzs="$(_compress_if_exists SRR2934358 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E10_AGTTGTGG.fq.gz
fi

fasterq-dump --split-files SRR2934359
gz1="$(_compress_if_exists SRR2934359_1 || true)"
gz2="$(_compress_if_exists SRR2934359_2 || true)"
gzs="$(_compress_if_exists SRR2934359 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2934360
gz1="$(_compress_if_exists SRR2934360_1 || true)"
gz2="$(_compress_if_exists SRR2934360_2 || true)"
gzs="$(_compress_if_exists SRR2934360 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F01_GTCTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2934361
gz1="$(_compress_if_exists SRR2934361_1 || true)"
gz2="$(_compress_if_exists SRR2934361_2 || true)"
gzs="$(_compress_if_exists SRR2934361 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2934362
gz1="$(_compress_if_exists SRR2934362_1 || true)"
gz2="$(_compress_if_exists SRR2934362_2 || true)"
gzs="$(_compress_if_exists SRR2934362 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F06_ACACAACT.fq.gz
fi

fasterq-dump --split-files SRR2934363
gz1="$(_compress_if_exists SRR2934363_1 || true)"
gz2="$(_compress_if_exists SRR2934363_2 || true)"
gzs="$(_compress_if_exists SRR2934363 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F07_AAGTCTTC.fq.gz
fi

fasterq-dump --split-files SRR2934364
gz1="$(_compress_if_exists SRR2934364_1 || true)"
gz2="$(_compress_if_exists SRR2934364_2 || true)"
gzs="$(_compress_if_exists SRR2934364 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F08_GATTATGC.fq.gz
fi

fasterq-dump --split-files SRR2934365
gz1="$(_compress_if_exists SRR2934365_1 || true)"
gz2="$(_compress_if_exists SRR2934365_2 || true)"
gzs="$(_compress_if_exists SRR2934365 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2934366
gz1="$(_compress_if_exists SRR2934366_1 || true)"
gz2="$(_compress_if_exists SRR2934366_2 || true)"
gzs="$(_compress_if_exists SRR2934366 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_F12_TACAACGT.fq.gz
fi

fasterq-dump --split-files SRR2934367
gz1="$(_compress_if_exists SRR2934367_1 || true)"
gz2="$(_compress_if_exists SRR2934367_2 || true)"
gzs="$(_compress_if_exists SRR2934367 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_G01_CCTACGCA.fq.gz
fi

fasterq-dump --split-files SRR2934368
gz1="$(_compress_if_exists SRR2934368_1 || true)"
gz2="$(_compress_if_exists SRR2934368_2 || true)"
gzs="$(_compress_if_exists SRR2934368 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2934369
gz1="$(_compress_if_exists SRR2934369_1 || true)"
gz2="$(_compress_if_exists SRR2934369_2 || true)"
gzs="$(_compress_if_exists SRR2934369 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2934370
gz1="$(_compress_if_exists SRR2934370_1 || true)"
gz2="$(_compress_if_exists SRR2934370_2 || true)"
gzs="$(_compress_if_exists SRR2934370 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_G08_ACCATAGA.fq.gz
fi

fasterq-dump --split-files SRR2934371
gz1="$(_compress_if_exists SRR2934371_1 || true)"
gz2="$(_compress_if_exists SRR2934371_2 || true)"
gzs="$(_compress_if_exists SRR2934371 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_G11_GGGAATAT.fq.gz
fi

fasterq-dump --split-files SRR2934372
gz1="$(_compress_if_exists SRR2934372_1 || true)"
gz2="$(_compress_if_exists SRR2934372_2 || true)"
gzs="$(_compress_if_exists SRR2934372 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_G12_TTCTCTGC.fq.gz
fi

fasterq-dump --split-files SRR2934373
gz1="$(_compress_if_exists SRR2934373_1 || true)"
gz2="$(_compress_if_exists SRR2934373_2 || true)"
gzs="$(_compress_if_exists SRR2934373 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_H02_TGTCAAAG.fq.gz
fi

fasterq-dump --split-files SRR2934374
gz1="$(_compress_if_exists SRR2934374_1 || true)"
gz2="$(_compress_if_exists SRR2934374_2 || true)"
gzs="$(_compress_if_exists SRR2934374 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-030_R274_L4_1_H06_AATGACAG.fq.gz
fi

fasterq-dump --split-files SRR2934376
gz1="$(_compress_if_exists SRR2934376_1 || true)"
gz2="$(_compress_if_exists SRR2934376_2 || true)"
gzs="$(_compress_if_exists SRR2934376 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A03_GTCTGGTA.fq.gz
fi

fasterq-dump --split-files SRR2934377
gz1="$(_compress_if_exists SRR2934377_1 || true)"
gz2="$(_compress_if_exists SRR2934377_2 || true)"
gzs="$(_compress_if_exists SRR2934377 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A04_GTTGCTAG.fq.gz
fi

fasterq-dump --split-files SRR2934378
gz1="$(_compress_if_exists SRR2934378_1 || true)"
gz2="$(_compress_if_exists SRR2934378_2 || true)"
gzs="$(_compress_if_exists SRR2934378 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2934379
gz1="$(_compress_if_exists SRR2934379_1 || true)"
gz2="$(_compress_if_exists SRR2934379_2 || true)"
gzs="$(_compress_if_exists SRR2934379 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A06_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2934380
gz1="$(_compress_if_exists SRR2934380_1 || true)"
gz2="$(_compress_if_exists SRR2934380_2 || true)"
gzs="$(_compress_if_exists SRR2934380 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A08_CAATGCTG.fq.gz
fi

fasterq-dump --split-files SRR2934381
gz1="$(_compress_if_exists SRR2934381_1 || true)"
gz2="$(_compress_if_exists SRR2934381_2 || true)"
gzs="$(_compress_if_exists SRR2934381 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A10_ACAGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934382
gz1="$(_compress_if_exists SRR2934382_1 || true)"
gz2="$(_compress_if_exists SRR2934382_2 || true)"
gzs="$(_compress_if_exists SRR2934382 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A11_AATAGGGG.fq.gz
fi

fasterq-dump --split-files SRR2934383
gz1="$(_compress_if_exists SRR2934383_1 || true)"
gz2="$(_compress_if_exists SRR2934383_2 || true)"
gzs="$(_compress_if_exists SRR2934383 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_A12_CCCTCAAA.fq.gz
fi

fasterq-dump --split-files SRR2934384
gz1="$(_compress_if_exists SRR2934384_1 || true)"
gz2="$(_compress_if_exists SRR2934384_2 || true)"
gzs="$(_compress_if_exists SRR2934384 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934385
gz1="$(_compress_if_exists SRR2934385_1 || true)"
gz2="$(_compress_if_exists SRR2934385_2 || true)"
gzs="$(_compress_if_exists SRR2934385 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2934386
gz1="$(_compress_if_exists SRR2934386_1 || true)"
gz2="$(_compress_if_exists SRR2934386_2 || true)"
gzs="$(_compress_if_exists SRR2934386 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_B06_TAACGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934387
gz1="$(_compress_if_exists SRR2934387_1 || true)"
gz2="$(_compress_if_exists SRR2934387_2 || true)"
gzs="$(_compress_if_exists SRR2934387 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_B08_TTACGGAC.fq.gz
fi

fasterq-dump --split-files SRR2934388
gz1="$(_compress_if_exists SRR2934388_1 || true)"
gz2="$(_compress_if_exists SRR2934388_2 || true)"
gzs="$(_compress_if_exists SRR2934388 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_B09_CAAGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2934389
gz1="$(_compress_if_exists SRR2934389_1 || true)"
gz2="$(_compress_if_exists SRR2934389_2 || true)"
gzs="$(_compress_if_exists SRR2934389 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_B12_TACGGTTG.fq.gz
fi

fasterq-dump --split-files SRR2934390
gz1="$(_compress_if_exists SRR2934390_1 || true)"
gz2="$(_compress_if_exists SRR2934390_2 || true)"
gzs="$(_compress_if_exists SRR2934390 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_C01_CCAGCATT.fq.gz
fi

fasterq-dump --split-files SRR2934391
gz1="$(_compress_if_exists SRR2934391_1 || true)"
gz2="$(_compress_if_exists SRR2934391_2 || true)"
gzs="$(_compress_if_exists SRR2934391 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_C03_CCAAAGAG.fq.gz
fi

fasterq-dump --split-files SRR2934392
gz1="$(_compress_if_exists SRR2934392_1 || true)"
gz2="$(_compress_if_exists SRR2934392_2 || true)"
gzs="$(_compress_if_exists SRR2934392 || true)"

fasterq-dump --split-files SRR2934393
gz1="$(_compress_if_exists SRR2934393_1 || true)"
gz2="$(_compress_if_exists SRR2934393_2 || true)"
gzs="$(_compress_if_exists SRR2934393 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_C07_GTGGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2934394
gz1="$(_compress_if_exists SRR2934394_1 || true)"
gz2="$(_compress_if_exists SRR2934394_2 || true)"
gzs="$(_compress_if_exists SRR2934394 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_C08_GACAACCA.fq.gz
fi

fasterq-dump --split-files SRR2934396
gz1="$(_compress_if_exists SRR2934396_1 || true)"
gz2="$(_compress_if_exists SRR2934396_2 || true)"
gzs="$(_compress_if_exists SRR2934396 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_C11_TACGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2934399
gz1="$(_compress_if_exists SRR2934399_1 || true)"
gz2="$(_compress_if_exists SRR2934399_2 || true)"
gzs="$(_compress_if_exists SRR2934399 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_D05_TGCACAAG.fq.gz
fi

fasterq-dump --split-files SRR2934400
gz1="$(_compress_if_exists SRR2934400_1 || true)"
gz2="$(_compress_if_exists SRR2934400_2 || true)"
gzs="$(_compress_if_exists SRR2934400 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_D06_GTGACCTA.fq.gz
fi

fasterq-dump --split-files SRR2934401
gz1="$(_compress_if_exists SRR2934401_1 || true)"
gz2="$(_compress_if_exists SRR2934401_2 || true)"
gzs="$(_compress_if_exists SRR2934401 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_D07_TGCAGCTT.fq.gz
fi

fasterq-dump --split-files SRR2934402
gz1="$(_compress_if_exists SRR2934402_1 || true)"
gz2="$(_compress_if_exists SRR2934402_2 || true)"
gzs="$(_compress_if_exists SRR2934402 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2934404
gz1="$(_compress_if_exists SRR2934404_1 || true)"
gz2="$(_compress_if_exists SRR2934404_2 || true)"
gzs="$(_compress_if_exists SRR2934404 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2934405
gz1="$(_compress_if_exists SRR2934405_1 || true)"
gz2="$(_compress_if_exists SRR2934405_2 || true)"
gzs="$(_compress_if_exists SRR2934405 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_E02_GAGCAATC.fq.gz
fi

fasterq-dump --split-files SRR2934406
gz1="$(_compress_if_exists SRR2934406_1 || true)"
gz2="$(_compress_if_exists SRR2934406_2 || true)"
gzs="$(_compress_if_exists SRR2934406 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_E05_GCTTCAGT.fq.gz
fi

fasterq-dump --split-files SRR2934407
gz1="$(_compress_if_exists SRR2934407_1 || true)"
gz2="$(_compress_if_exists SRR2934407_2 || true)"
gzs="$(_compress_if_exists SRR2934407 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_E07_ACATCCGT.fq.gz
fi

fasterq-dump --split-files SRR2934409
gz1="$(_compress_if_exists SRR2934409_1 || true)"
gz2="$(_compress_if_exists SRR2934409_2 || true)"
gzs="$(_compress_if_exists SRR2934409 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2934411
gz1="$(_compress_if_exists SRR2934411_1 || true)"
gz2="$(_compress_if_exists SRR2934411_2 || true)"
gzs="$(_compress_if_exists SRR2934411 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_E12_AACGTTGC.fq.gz
fi

fasterq-dump --split-files SRR2934412
gz1="$(_compress_if_exists SRR2934412_1 || true)"
gz2="$(_compress_if_exists SRR2934412_2 || true)"
gzs="$(_compress_if_exists SRR2934412 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_F01_TGTTCGCA.fq.gz
fi

fasterq-dump --split-files SRR2934413
gz1="$(_compress_if_exists SRR2934413_1 || true)"
gz2="$(_compress_if_exists SRR2934413_2 || true)"
gzs="$(_compress_if_exists SRR2934413 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_F03_ACGATCTG.fq.gz
fi

fasterq-dump --split-files SRR2934414
gz1="$(_compress_if_exists SRR2934414_1 || true)"
gz2="$(_compress_if_exists SRR2934414_2 || true)"
gzs="$(_compress_if_exists SRR2934414 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2934415
gz1="$(_compress_if_exists SRR2934415_1 || true)"
gz2="$(_compress_if_exists SRR2934415_2 || true)"
gzs="$(_compress_if_exists SRR2934415 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_F06_CATTCTCG.fq.gz
fi

fasterq-dump --split-files SRR2934416
gz1="$(_compress_if_exists SRR2934416_1 || true)"
gz2="$(_compress_if_exists SRR2934416_2 || true)"
gzs="$(_compress_if_exists SRR2934416 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2934417
gz1="$(_compress_if_exists SRR2934417_1 || true)"
gz2="$(_compress_if_exists SRR2934417_2 || true)"
gzs="$(_compress_if_exists SRR2934417 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_F11_TTGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2934418
gz1="$(_compress_if_exists SRR2934418_1 || true)"
gz2="$(_compress_if_exists SRR2934418_2 || true)"
gzs="$(_compress_if_exists SRR2934418 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G01_ACAGTCAG.fq.gz
fi

fasterq-dump --split-files SRR2934419
gz1="$(_compress_if_exists SRR2934419_1 || true)"
gz2="$(_compress_if_exists SRR2934419_2 || true)"
gzs="$(_compress_if_exists SRR2934419 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G02_GTACGAAG.fq.gz
fi

fasterq-dump --split-files SRR2934420
gz1="$(_compress_if_exists SRR2934420_1 || true)"
gz2="$(_compress_if_exists SRR2934420_2 || true)"
gzs="$(_compress_if_exists SRR2934420 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2934421
gz1="$(_compress_if_exists SRR2934421_1 || true)"
gz2="$(_compress_if_exists SRR2934421_2 || true)"
gzs="$(_compress_if_exists SRR2934421 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G06_CTATAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934422
gz1="$(_compress_if_exists SRR2934422_1 || true)"
gz2="$(_compress_if_exists SRR2934422_2 || true)"
gzs="$(_compress_if_exists SRR2934422 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G07_TTGTCCCT.fq.gz
fi

fasterq-dump --split-files SRR2934423
gz1="$(_compress_if_exists SRR2934423_1 || true)"
gz2="$(_compress_if_exists SRR2934423_2 || true)"
gzs="$(_compress_if_exists SRR2934423 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G08_TTTGTGGC.fq.gz
fi

fasterq-dump --split-files SRR2934424
gz1="$(_compress_if_exists SRR2934424_1 || true)"
gz2="$(_compress_if_exists SRR2934424_2 || true)"
gzs="$(_compress_if_exists SRR2934424 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G10_GCGAGATA.fq.gz
fi

fasterq-dump --split-files SRR2934425
gz1="$(_compress_if_exists SRR2934425_1 || true)"
gz2="$(_compress_if_exists SRR2934425_2 || true)"
gzs="$(_compress_if_exists SRR2934425 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G11_TGTGTAGG.fq.gz
fi

fasterq-dump --split-files SRR2934426
gz1="$(_compress_if_exists SRR2934426_1 || true)"
gz2="$(_compress_if_exists SRR2934426_2 || true)"
gzs="$(_compress_if_exists SRR2934426 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2934427
gz1="$(_compress_if_exists SRR2934427_1 || true)"
gz2="$(_compress_if_exists SRR2934427_2 || true)"
gzs="$(_compress_if_exists SRR2934427 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_H01_AATCGCTG.fq.gz
fi

fasterq-dump --split-files SRR2934429
gz1="$(_compress_if_exists SRR2934429_1 || true)"
gz2="$(_compress_if_exists SRR2934429_2 || true)"
gzs="$(_compress_if_exists SRR2934429 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_H07_GGTTACAC.fq.gz
fi

fasterq-dump --split-files SRR2934430
gz1="$(_compress_if_exists SRR2934430_1 || true)"
gz2="$(_compress_if_exists SRR2934430_2 || true)"
gzs="$(_compress_if_exists SRR2934430 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_H08_TCGTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2934431
gz1="$(_compress_if_exists SRR2934431_1 || true)"
gz2="$(_compress_if_exists SRR2934431_2 || true)"
gzs="$(_compress_if_exists SRR2934431 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2934432
gz1="$(_compress_if_exists SRR2934432_1 || true)"
gz2="$(_compress_if_exists SRR2934432_2 || true)"
gzs="$(_compress_if_exists SRR2934432 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_H11_GTTCTGCT.fq.gz
fi

fasterq-dump --split-files SRR2934433
gz1="$(_compress_if_exists SRR2934433_1 || true)"
gz2="$(_compress_if_exists SRR2934433_2 || true)"
gzs="$(_compress_if_exists SRR2934433 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772078-031_R274_L4_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2934520
gz1="$(_compress_if_exists SRR2934520_1 || true)"
gz2="$(_compress_if_exists SRR2934520_2 || true)"
gzs="$(_compress_if_exists SRR2934520 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_A01_GCACACTA.fq.gz
fi

fasterq-dump --split-files SRR2934521
gz1="$(_compress_if_exists SRR2934521_1 || true)"
gz2="$(_compress_if_exists SRR2934521_2 || true)"
gzs="$(_compress_if_exists SRR2934521 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_A04_GTTGCTAG.fq.gz
fi

fasterq-dump --split-files SRR2934522
gz1="$(_compress_if_exists SRR2934522_1 || true)"
gz2="$(_compress_if_exists SRR2934522_2 || true)"
gzs="$(_compress_if_exists SRR2934522 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2934523
gz1="$(_compress_if_exists SRR2934523_1 || true)"
gz2="$(_compress_if_exists SRR2934523_2 || true)"
gzs="$(_compress_if_exists SRR2934523 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_A10_ACAGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934525
gz1="$(_compress_if_exists SRR2934525_1 || true)"
gz2="$(_compress_if_exists SRR2934525_2 || true)"
gzs="$(_compress_if_exists SRR2934525 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B01_CCCTTGTA.fq.gz
fi

fasterq-dump --split-files SRR2934526
gz1="$(_compress_if_exists SRR2934526_1 || true)"
gz2="$(_compress_if_exists SRR2934526_2 || true)"
gzs="$(_compress_if_exists SRR2934526 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934527
gz1="$(_compress_if_exists SRR2934527_1 || true)"
gz2="$(_compress_if_exists SRR2934527_2 || true)"
gzs="$(_compress_if_exists SRR2934527 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2934529
gz1="$(_compress_if_exists SRR2934529_1 || true)"
gz2="$(_compress_if_exists SRR2934529_2 || true)"
gzs="$(_compress_if_exists SRR2934529 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B08_TTACGGAC.fq.gz
fi

fasterq-dump --split-files SRR2934530
gz1="$(_compress_if_exists SRR2934530_1 || true)"
gz2="$(_compress_if_exists SRR2934530_2 || true)"
gzs="$(_compress_if_exists SRR2934530 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B09_CAAGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2934531
gz1="$(_compress_if_exists SRR2934531_1 || true)"
gz2="$(_compress_if_exists SRR2934531_2 || true)"
gzs="$(_compress_if_exists SRR2934531 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934532
gz1="$(_compress_if_exists SRR2934532_1 || true)"
gz2="$(_compress_if_exists SRR2934532_2 || true)"
gzs="$(_compress_if_exists SRR2934532 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2934533
gz1="$(_compress_if_exists SRR2934533_1 || true)"
gz2="$(_compress_if_exists SRR2934533_2 || true)"
gzs="$(_compress_if_exists SRR2934533 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2934534
gz1="$(_compress_if_exists SRR2934534_1 || true)"
gz2="$(_compress_if_exists SRR2934534_2 || true)"
gzs="$(_compress_if_exists SRR2934534 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_C01_AGTAGTCC.fq.gz
fi

fasterq-dump --split-files SRR2934536
gz1="$(_compress_if_exists SRR2934536_1 || true)"
gz2="$(_compress_if_exists SRR2934536_2 || true)"
gzs="$(_compress_if_exists SRR2934536 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2934537
gz1="$(_compress_if_exists SRR2934537_1 || true)"
gz2="$(_compress_if_exists SRR2934537_2 || true)"
gzs="$(_compress_if_exists SRR2934537 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_C08_GACAACCA.fq.gz
fi

fasterq-dump --split-files SRR2934538
gz1="$(_compress_if_exists SRR2934538_1 || true)"
gz2="$(_compress_if_exists SRR2934538_2 || true)"
gzs="$(_compress_if_exists SRR2934538 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934539
gz1="$(_compress_if_exists SRR2934539_1 || true)"
gz2="$(_compress_if_exists SRR2934539_2 || true)"
gzs="$(_compress_if_exists SRR2934539 || true)"

fasterq-dump --split-files SRR2934540
gz1="$(_compress_if_exists SRR2934540_1 || true)"
gz2="$(_compress_if_exists SRR2934540_2 || true)"
gzs="$(_compress_if_exists SRR2934540 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_D01_TCTAGGGA.fq.gz
fi

fasterq-dump --split-files SRR2934541
gz1="$(_compress_if_exists SRR2934541_1 || true)"
gz2="$(_compress_if_exists SRR2934541_2 || true)"
gzs="$(_compress_if_exists SRR2934541 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_D03_CGTGGATA.fq.gz
fi

fasterq-dump --split-files SRR2934542
gz1="$(_compress_if_exists SRR2934542_1 || true)"
gz2="$(_compress_if_exists SRR2934542_2 || true)"
gzs="$(_compress_if_exists SRR2934542 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_D04_TCAGAACC.fq.gz
fi

fasterq-dump --split-files SRR2934546
gz1="$(_compress_if_exists SRR2934546_1 || true)"
gz2="$(_compress_if_exists SRR2934546_2 || true)"
gzs="$(_compress_if_exists SRR2934546 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_D08_AGATGCCT.fq.gz
fi

fasterq-dump --split-files SRR2934547
gz1="$(_compress_if_exists SRR2934547_1 || true)"
gz2="$(_compress_if_exists SRR2934547_2 || true)"
gzs="$(_compress_if_exists SRR2934547 || true)"

fasterq-dump --split-files SRR2934549
gz1="$(_compress_if_exists SRR2934549_1 || true)"
gz2="$(_compress_if_exists SRR2934549_2 || true)"
gzs="$(_compress_if_exists SRR2934549 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_E02_GAGCAATC.fq.gz
fi

fasterq-dump --split-files SRR2934551
gz1="$(_compress_if_exists SRR2934551_1 || true)"
gz2="$(_compress_if_exists SRR2934551_2 || true)"
gzs="$(_compress_if_exists SRR2934551 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_E08_AGGTAGAC.fq.gz
fi

fasterq-dump --split-files SRR2934554
gz1="$(_compress_if_exists SRR2934554_1 || true)"
gz2="$(_compress_if_exists SRR2934554_2 || true)"
gzs="$(_compress_if_exists SRR2934554 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_F07_ATCCCACT.fq.gz
fi

fasterq-dump --split-files SRR2934555
gz1="$(_compress_if_exists SRR2934555_1 || true)"
gz2="$(_compress_if_exists SRR2934555_2 || true)"
gzs="$(_compress_if_exists SRR2934555 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_F08_CACTGAAC.fq.gz
fi

fasterq-dump --split-files SRR2934556
gz1="$(_compress_if_exists SRR2934556_1 || true)"
gz2="$(_compress_if_exists SRR2934556_2 || true)"
gzs="$(_compress_if_exists SRR2934556 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2934557
gz1="$(_compress_if_exists SRR2934557_1 || true)"
gz2="$(_compress_if_exists SRR2934557_2 || true)"
gzs="$(_compress_if_exists SRR2934557 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_G06_CTATAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934560
gz1="$(_compress_if_exists SRR2934560_1 || true)"
gz2="$(_compress_if_exists SRR2934560_2 || true)"
gzs="$(_compress_if_exists SRR2934560 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_H07_GGTTACAC.fq.gz
fi

fasterq-dump --split-files SRR2934561
gz1="$(_compress_if_exists SRR2934561_1 || true)"
gz2="$(_compress_if_exists SRR2934561_2 || true)"
gzs="$(_compress_if_exists SRR2934561 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-014_R295_L5_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2934563
gz1="$(_compress_if_exists SRR2934563_1 || true)"
gz2="$(_compress_if_exists SRR2934563_2 || true)"
gzs="$(_compress_if_exists SRR2934563 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_A01_CTTTCTGG.fq.gz
fi

fasterq-dump --split-files SRR2934564
gz1="$(_compress_if_exists SRR2934564_1 || true)"
gz2="$(_compress_if_exists SRR2934564_2 || true)"
gzs="$(_compress_if_exists SRR2934564 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2934565
gz1="$(_compress_if_exists SRR2934565_1 || true)"
gz2="$(_compress_if_exists SRR2934565_2 || true)"
gzs="$(_compress_if_exists SRR2934565 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_A04_GCTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2934566
gz1="$(_compress_if_exists SRR2934566_1 || true)"
gz2="$(_compress_if_exists SRR2934566_2 || true)"
gzs="$(_compress_if_exists SRR2934566 || true)"

fasterq-dump --split-files SRR2934567
gz1="$(_compress_if_exists SRR2934567_1 || true)"
gz2="$(_compress_if_exists SRR2934567_2 || true)"
gzs="$(_compress_if_exists SRR2934567 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_A07_TGAGGCAT.fq.gz
fi

fasterq-dump --split-files SRR2934569
gz1="$(_compress_if_exists SRR2934569_1 || true)"
gz2="$(_compress_if_exists SRR2934569_2 || true)"
gzs="$(_compress_if_exists SRR2934569 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_A11_TATCGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934570
gz1="$(_compress_if_exists SRR2934570_1 || true)"
gz2="$(_compress_if_exists SRR2934570_2 || true)"
gzs="$(_compress_if_exists SRR2934570 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2934571
gz1="$(_compress_if_exists SRR2934571_1 || true)"
gz2="$(_compress_if_exists SRR2934571_2 || true)"
gzs="$(_compress_if_exists SRR2934571 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2934572
gz1="$(_compress_if_exists SRR2934572_1 || true)"
gz2="$(_compress_if_exists SRR2934572_2 || true)"
gzs="$(_compress_if_exists SRR2934572 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2934573
gz1="$(_compress_if_exists SRR2934573_1 || true)"
gz2="$(_compress_if_exists SRR2934573_2 || true)"
gzs="$(_compress_if_exists SRR2934573 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2934574
gz1="$(_compress_if_exists SRR2934574_1 || true)"
gz2="$(_compress_if_exists SRR2934574_2 || true)"
gzs="$(_compress_if_exists SRR2934574 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2934575
gz1="$(_compress_if_exists SRR2934575_1 || true)"
gz2="$(_compress_if_exists SRR2934575_2 || true)"
gzs="$(_compress_if_exists SRR2934575 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2934576
gz1="$(_compress_if_exists SRR2934576_1 || true)"
gz2="$(_compress_if_exists SRR2934576_2 || true)"
gzs="$(_compress_if_exists SRR2934576 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B08_CCGGATAA.fq.gz
fi

fasterq-dump --split-files SRR2934577
gz1="$(_compress_if_exists SRR2934577_1 || true)"
gz2="$(_compress_if_exists SRR2934577_2 || true)"
gzs="$(_compress_if_exists SRR2934577 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2934578
gz1="$(_compress_if_exists SRR2934578_1 || true)"
gz2="$(_compress_if_exists SRR2934578_2 || true)"
gzs="$(_compress_if_exists SRR2934578 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C01_AAATGCGG.fq.gz
fi

fasterq-dump --split-files SRR2934579
gz1="$(_compress_if_exists SRR2934579_1 || true)"
gz2="$(_compress_if_exists SRR2934579_2 || true)"
gzs="$(_compress_if_exists SRR2934579 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C02_GTGACATG.fq.gz
fi

fasterq-dump --split-files SRR2934580
gz1="$(_compress_if_exists SRR2934580_1 || true)"
gz2="$(_compress_if_exists SRR2934580_2 || true)"
gzs="$(_compress_if_exists SRR2934580 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2934581
gz1="$(_compress_if_exists SRR2934581_1 || true)"
gz2="$(_compress_if_exists SRR2934581_2 || true)"
gzs="$(_compress_if_exists SRR2934581 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2934582
gz1="$(_compress_if_exists SRR2934582_1 || true)"
gz2="$(_compress_if_exists SRR2934582_2 || true)"
gzs="$(_compress_if_exists SRR2934582 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2934583
gz1="$(_compress_if_exists SRR2934583_1 || true)"
gz2="$(_compress_if_exists SRR2934583_2 || true)"
gzs="$(_compress_if_exists SRR2934583 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2934584
gz1="$(_compress_if_exists SRR2934584_1 || true)"
gz2="$(_compress_if_exists SRR2934584_2 || true)"
gzs="$(_compress_if_exists SRR2934584 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C10_GCGAATCA.fq.gz
fi

fasterq-dump --split-files SRR2934585
gz1="$(_compress_if_exists SRR2934585_1 || true)"
gz2="$(_compress_if_exists SRR2934585_2 || true)"
gzs="$(_compress_if_exists SRR2934585 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2934586
gz1="$(_compress_if_exists SRR2934586_1 || true)"
gz2="$(_compress_if_exists SRR2934586_2 || true)"
gzs="$(_compress_if_exists SRR2934586 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2934587
gz1="$(_compress_if_exists SRR2934587_1 || true)"
gz2="$(_compress_if_exists SRR2934587_2 || true)"
gzs="$(_compress_if_exists SRR2934587 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2934588
gz1="$(_compress_if_exists SRR2934588_1 || true)"
gz2="$(_compress_if_exists SRR2934588_2 || true)"
gzs="$(_compress_if_exists SRR2934588 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_D04_CCCGAATA.fq.gz
fi

fasterq-dump --split-files SRR2934589
gz1="$(_compress_if_exists SRR2934589_1 || true)"
gz2="$(_compress_if_exists SRR2934589_2 || true)"
gzs="$(_compress_if_exists SRR2934589 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2934590
gz1="$(_compress_if_exists SRR2934590_1 || true)"
gz2="$(_compress_if_exists SRR2934590_2 || true)"
gzs="$(_compress_if_exists SRR2934590 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_D08_GCGTATTG.fq.gz
fi

fasterq-dump --split-files SRR2934591
gz1="$(_compress_if_exists SRR2934591_1 || true)"
gz2="$(_compress_if_exists SRR2934591_2 || true)"
gzs="$(_compress_if_exists SRR2934591 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2934592
gz1="$(_compress_if_exists SRR2934592_1 || true)"
gz2="$(_compress_if_exists SRR2934592_2 || true)"
gzs="$(_compress_if_exists SRR2934592 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2934593
gz1="$(_compress_if_exists SRR2934593_1 || true)"
gz2="$(_compress_if_exists SRR2934593_2 || true)"
gzs="$(_compress_if_exists SRR2934593 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_E05_TCGATTGC.fq.gz
fi

fasterq-dump --split-files SRR2934594
gz1="$(_compress_if_exists SRR2934594_1 || true)"
gz2="$(_compress_if_exists SRR2934594_2 || true)"
gzs="$(_compress_if_exists SRR2934594 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2934595
gz1="$(_compress_if_exists SRR2934595_1 || true)"
gz2="$(_compress_if_exists SRR2934595_2 || true)"
gzs="$(_compress_if_exists SRR2934595 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2934596
gz1="$(_compress_if_exists SRR2934596_1 || true)"
gz2="$(_compress_if_exists SRR2934596_2 || true)"
gzs="$(_compress_if_exists SRR2934596 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_E11_CTTTGGAC.fq.gz
fi

fasterq-dump --split-files SRR2934597
gz1="$(_compress_if_exists SRR2934597_1 || true)"
gz2="$(_compress_if_exists SRR2934597_2 || true)"
gzs="$(_compress_if_exists SRR2934597 || true)"

fasterq-dump --split-files SRR2934598
gz1="$(_compress_if_exists SRR2934598_1 || true)"
gz2="$(_compress_if_exists SRR2934598_2 || true)"
gzs="$(_compress_if_exists SRR2934598 || true)"

fasterq-dump --split-files SRR2934599
gz1="$(_compress_if_exists SRR2934599_1 || true)"
gz2="$(_compress_if_exists SRR2934599_2 || true)"
gzs="$(_compress_if_exists SRR2934599 || true)"

fasterq-dump --split-files SRR2934600
gz1="$(_compress_if_exists SRR2934600_1 || true)"
gz2="$(_compress_if_exists SRR2934600_2 || true)"
gzs="$(_compress_if_exists SRR2934600 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_F05_CGATTGGA.fq.gz
fi

fasterq-dump --split-files SRR2934601
gz1="$(_compress_if_exists SRR2934601_1 || true)"
gz2="$(_compress_if_exists SRR2934601_2 || true)"
gzs="$(_compress_if_exists SRR2934601 || true)"

fasterq-dump --split-files SRR2934602
gz1="$(_compress_if_exists SRR2934602_1 || true)"
gz2="$(_compress_if_exists SRR2934602_2 || true)"
gzs="$(_compress_if_exists SRR2934602 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_F09_AGAGTGCT.fq.gz
fi

fasterq-dump --split-files SRR2934603
gz1="$(_compress_if_exists SRR2934603_1 || true)"
gz2="$(_compress_if_exists SRR2934603_2 || true)"
gzs="$(_compress_if_exists SRR2934603 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2934604
gz1="$(_compress_if_exists SRR2934604_1 || true)"
gz2="$(_compress_if_exists SRR2934604_2 || true)"
gzs="$(_compress_if_exists SRR2934604 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_F11_AGAAGCAG.fq.gz
fi

fasterq-dump --split-files SRR2934605
gz1="$(_compress_if_exists SRR2934605_1 || true)"
gz2="$(_compress_if_exists SRR2934605_2 || true)"
gzs="$(_compress_if_exists SRR2934605 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_F12_TGTGCATG.fq.gz
fi

fasterq-dump --split-files SRR2934606
gz1="$(_compress_if_exists SRR2934606_1 || true)"
gz2="$(_compress_if_exists SRR2934606_2 || true)"
gzs="$(_compress_if_exists SRR2934606 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2934607
gz1="$(_compress_if_exists SRR2934607_1 || true)"
gz2="$(_compress_if_exists SRR2934607_2 || true)"
gzs="$(_compress_if_exists SRR2934607 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2934608
gz1="$(_compress_if_exists SRR2934608_1 || true)"
gz2="$(_compress_if_exists SRR2934608_2 || true)"
gzs="$(_compress_if_exists SRR2934608 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_G07_GATTCCGA.fq.gz
fi

fasterq-dump --split-files SRR2934609
gz1="$(_compress_if_exists SRR2934609_1 || true)"
gz2="$(_compress_if_exists SRR2934609_2 || true)"
gzs="$(_compress_if_exists SRR2934609 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_G09_ACTCGCTT.fq.gz
fi

fasterq-dump --split-files SRR2934610
gz1="$(_compress_if_exists SRR2934610_1 || true)"
gz2="$(_compress_if_exists SRR2934610_2 || true)"
gzs="$(_compress_if_exists SRR2934610 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_G10_AGTCTCCT.fq.gz
fi

fasterq-dump --split-files SRR2934611
gz1="$(_compress_if_exists SRR2934611_1 || true)"
gz2="$(_compress_if_exists SRR2934611_2 || true)"
gzs="$(_compress_if_exists SRR2934611 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_G12_GCAAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2934612
gz1="$(_compress_if_exists SRR2934612_1 || true)"
gz2="$(_compress_if_exists SRR2934612_2 || true)"
gzs="$(_compress_if_exists SRR2934612 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2934613
gz1="$(_compress_if_exists SRR2934613_1 || true)"
gz2="$(_compress_if_exists SRR2934613_2 || true)"
gzs="$(_compress_if_exists SRR2934613 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_H04_ACGCTGAA.fq.gz
fi

fasterq-dump --split-files SRR2934614
gz1="$(_compress_if_exists SRR2934614_1 || true)"
gz2="$(_compress_if_exists SRR2934614_2 || true)"
gzs="$(_compress_if_exists SRR2934614 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_H07_CAAAGCTG.fq.gz
fi

fasterq-dump --split-files SRR2934615
gz1="$(_compress_if_exists SRR2934615_1 || true)"
gz2="$(_compress_if_exists SRR2934615_2 || true)"
gzs="$(_compress_if_exists SRR2934615 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_H10_ATCGGAAC.fq.gz
fi

fasterq-dump --split-files SRR2934616
gz1="$(_compress_if_exists SRR2934616_1 || true)"
gz2="$(_compress_if_exists SRR2934616_2 || true)"
gzs="$(_compress_if_exists SRR2934616 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_H11_AAGGACGA.fq.gz
fi

fasterq-dump --split-files SRR2934617
gz1="$(_compress_if_exists SRR2934617_1 || true)"
gz2="$(_compress_if_exists SRR2934617_2 || true)"
gzs="$(_compress_if_exists SRR2934617 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-017_R297_L7_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2934618
gz1="$(_compress_if_exists SRR2934618_1 || true)"
gz2="$(_compress_if_exists SRR2934618_2 || true)"
gzs="$(_compress_if_exists SRR2934618 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_A01_GCACACTA.fq.gz
fi

fasterq-dump --split-files SRR2934619
gz1="$(_compress_if_exists SRR2934619_1 || true)"
gz2="$(_compress_if_exists SRR2934619_2 || true)"
gzs="$(_compress_if_exists SRR2934619 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2934620
gz1="$(_compress_if_exists SRR2934620_1 || true)"
gz2="$(_compress_if_exists SRR2934620_2 || true)"
gzs="$(_compress_if_exists SRR2934620 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_A10_ACAGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934622
gz1="$(_compress_if_exists SRR2934622_1 || true)"
gz2="$(_compress_if_exists SRR2934622_2 || true)"
gzs="$(_compress_if_exists SRR2934622 || true)"

fasterq-dump --split-files SRR2934623
gz1="$(_compress_if_exists SRR2934623_1 || true)"
gz2="$(_compress_if_exists SRR2934623_2 || true)"
gzs="$(_compress_if_exists SRR2934623 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934624
gz1="$(_compress_if_exists SRR2934624_1 || true)"
gz2="$(_compress_if_exists SRR2934624_2 || true)"
gzs="$(_compress_if_exists SRR2934624 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2934625
gz1="$(_compress_if_exists SRR2934625_1 || true)"
gz2="$(_compress_if_exists SRR2934625_2 || true)"
gzs="$(_compress_if_exists SRR2934625 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934627
gz1="$(_compress_if_exists SRR2934627_1 || true)"
gz2="$(_compress_if_exists SRR2934627_2 || true)"
gzs="$(_compress_if_exists SRR2934627 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2934629
gz1="$(_compress_if_exists SRR2934629_1 || true)"
gz2="$(_compress_if_exists SRR2934629_2 || true)"
gzs="$(_compress_if_exists SRR2934629 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2934631
gz1="$(_compress_if_exists SRR2934631_1 || true)"
gz2="$(_compress_if_exists SRR2934631_2 || true)"
gzs="$(_compress_if_exists SRR2934631 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_C10_GATTACCG.fq.gz
fi

fasterq-dump --split-files SRR2934635
gz1="$(_compress_if_exists SRR2934635_1 || true)"
gz2="$(_compress_if_exists SRR2934635_2 || true)"
gzs="$(_compress_if_exists SRR2934635 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_D04_TCAGAACC.fq.gz
fi

fasterq-dump --split-files SRR2934636
gz1="$(_compress_if_exists SRR2934636_1 || true)"
gz2="$(_compress_if_exists SRR2934636_2 || true)"
gzs="$(_compress_if_exists SRR2934636 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_D05_TGCACAAG.fq.gz
fi

fasterq-dump --split-files SRR2934637
gz1="$(_compress_if_exists SRR2934637_1 || true)"
gz2="$(_compress_if_exists SRR2934637_2 || true)"
gzs="$(_compress_if_exists SRR2934637 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_E02_GAGCAATC.fq.gz
fi

fasterq-dump --split-files SRR2934639
gz1="$(_compress_if_exists SRR2934639_1 || true)"
gz2="$(_compress_if_exists SRR2934639_2 || true)"
gzs="$(_compress_if_exists SRR2934639 || true)"

fasterq-dump --split-files SRR2934640
gz1="$(_compress_if_exists SRR2934640_1 || true)"
gz2="$(_compress_if_exists SRR2934640_2 || true)"
gzs="$(_compress_if_exists SRR2934640 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_E07_ACATCCGT.fq.gz
fi

fasterq-dump --split-files SRR2934641
gz1="$(_compress_if_exists SRR2934641_1 || true)"
gz2="$(_compress_if_exists SRR2934641_2 || true)"
gzs="$(_compress_if_exists SRR2934641 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_E08_AGGTAGAC.fq.gz
fi

fasterq-dump --split-files SRR2934642
gz1="$(_compress_if_exists SRR2934642_1 || true)"
gz2="$(_compress_if_exists SRR2934642_2 || true)"
gzs="$(_compress_if_exists SRR2934642 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_E11_TGTGAGAC.fq.gz
fi

fasterq-dump --split-files SRR2934643
gz1="$(_compress_if_exists SRR2934643_1 || true)"
gz2="$(_compress_if_exists SRR2934643_2 || true)"
gzs="$(_compress_if_exists SRR2934643 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_F06_CATTCTCG.fq.gz
fi

fasterq-dump --split-files SRR2934644
gz1="$(_compress_if_exists SRR2934644_1 || true)"
gz2="$(_compress_if_exists SRR2934644_2 || true)"
gzs="$(_compress_if_exists SRR2934644 || true)"

fasterq-dump --split-files SRR2934645
gz1="$(_compress_if_exists SRR2934645_1 || true)"
gz2="$(_compress_if_exists SRR2934645_2 || true)"
gzs="$(_compress_if_exists SRR2934645 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_F11_GGTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2934646
gz1="$(_compress_if_exists SRR2934646_1 || true)"
gz2="$(_compress_if_exists SRR2934646_2 || true)"
gzs="$(_compress_if_exists SRR2934646 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_F12_TGCATTCG.fq.gz
fi

fasterq-dump --split-files SRR2934647
gz1="$(_compress_if_exists SRR2934647_1 || true)"
gz2="$(_compress_if_exists SRR2934647_2 || true)"
gzs="$(_compress_if_exists SRR2934647 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_G03_ACGCACAT.fq.gz
fi

fasterq-dump --split-files SRR2934648
gz1="$(_compress_if_exists SRR2934648_1 || true)"
gz2="$(_compress_if_exists SRR2934648_2 || true)"
gzs="$(_compress_if_exists SRR2934648 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2934649
gz1="$(_compress_if_exists SRR2934649_1 || true)"
gz2="$(_compress_if_exists SRR2934649_2 || true)"
gzs="$(_compress_if_exists SRR2934649 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2934650
gz1="$(_compress_if_exists SRR2934650_1 || true)"
gz2="$(_compress_if_exists SRR2934650_2 || true)"
gzs="$(_compress_if_exists SRR2934650 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_H05_AGCAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2934651
gz1="$(_compress_if_exists SRR2934651_1 || true)"
gz2="$(_compress_if_exists SRR2934651_2 || true)"
gzs="$(_compress_if_exists SRR2934651 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-020_R297_L4_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2934656
gz1="$(_compress_if_exists SRR2934656_1 || true)"
gz2="$(_compress_if_exists SRR2934656_2 || true)"
gzs="$(_compress_if_exists SRR2934656 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_A07_TATAGGAC.fq.gz
fi

fasterq-dump --split-files SRR2934657
gz1="$(_compress_if_exists SRR2934657_1 || true)"
gz2="$(_compress_if_exists SRR2934657_2 || true)"
gzs="$(_compress_if_exists SRR2934657 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_A08_TCCCATGG.fq.gz
fi

fasterq-dump --split-files SRR2934660
gz1="$(_compress_if_exists SRR2934660_1 || true)"
gz2="$(_compress_if_exists SRR2934660_2 || true)"
gzs="$(_compress_if_exists SRR2934660 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_A11_GCGTCTAA.fq.gz
fi

fasterq-dump --split-files SRR2934661
gz1="$(_compress_if_exists SRR2934661_1 || true)"
gz2="$(_compress_if_exists SRR2934661_2 || true)"
gzs="$(_compress_if_exists SRR2934661 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_A12_GAGGCGTA.fq.gz
fi

fasterq-dump --split-files SRR2934662
gz1="$(_compress_if_exists SRR2934662_1 || true)"
gz2="$(_compress_if_exists SRR2934662_2 || true)"
gzs="$(_compress_if_exists SRR2934662 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B01_ACGAGTCT.fq.gz
fi

fasterq-dump --split-files SRR2934663
gz1="$(_compress_if_exists SRR2934663_1 || true)"
gz2="$(_compress_if_exists SRR2934663_2 || true)"
gzs="$(_compress_if_exists SRR2934663 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B02_GTGTGAGA.fq.gz
fi

fasterq-dump --split-files SRR2934664
gz1="$(_compress_if_exists SRR2934664_1 || true)"
gz2="$(_compress_if_exists SRR2934664_2 || true)"
gzs="$(_compress_if_exists SRR2934664 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B03_CAGGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934665
gz1="$(_compress_if_exists SRR2934665_1 || true)"
gz2="$(_compress_if_exists SRR2934665_2 || true)"
gzs="$(_compress_if_exists SRR2934665 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B04_ACTTTGCG.fq.gz
fi

fasterq-dump --split-files SRR2934666
gz1="$(_compress_if_exists SRR2934666_1 || true)"
gz2="$(_compress_if_exists SRR2934666_2 || true)"
gzs="$(_compress_if_exists SRR2934666 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B05_TGGTGGCT.fq.gz
fi

fasterq-dump --split-files SRR2934667
gz1="$(_compress_if_exists SRR2934667_1 || true)"
gz2="$(_compress_if_exists SRR2934667_2 || true)"
gzs="$(_compress_if_exists SRR2934667 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B06_CGTTCTAC.fq.gz
fi

fasterq-dump --split-files SRR2934668
gz1="$(_compress_if_exists SRR2934668_1 || true)"
gz2="$(_compress_if_exists SRR2934668_2 || true)"
gzs="$(_compress_if_exists SRR2934668 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B07_CAGCGTAG.fq.gz
fi

fasterq-dump --split-files SRR2934669
gz1="$(_compress_if_exists SRR2934669_1 || true)"
gz2="$(_compress_if_exists SRR2934669_2 || true)"
gzs="$(_compress_if_exists SRR2934669 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2934670
gz1="$(_compress_if_exists SRR2934670_1 || true)"
gz2="$(_compress_if_exists SRR2934670_2 || true)"
gzs="$(_compress_if_exists SRR2934670 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2934671
gz1="$(_compress_if_exists SRR2934671_1 || true)"
gz2="$(_compress_if_exists SRR2934671_2 || true)"
gzs="$(_compress_if_exists SRR2934671 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B10_GCATGATT.fq.gz
fi

fasterq-dump --split-files SRR2934672
gz1="$(_compress_if_exists SRR2934672_1 || true)"
gz2="$(_compress_if_exists SRR2934672_2 || true)"
gzs="$(_compress_if_exists SRR2934672 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934675
gz1="$(_compress_if_exists SRR2934675_1 || true)"
gz2="$(_compress_if_exists SRR2934675_2 || true)"
gzs="$(_compress_if_exists SRR2934675 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_C06_GTCAATCC.fq.gz
fi

fasterq-dump --split-files SRR2934676
gz1="$(_compress_if_exists SRR2934676_1 || true)"
gz2="$(_compress_if_exists SRR2934676_2 || true)"
gzs="$(_compress_if_exists SRR2934676 || true)"

fasterq-dump --split-files SRR2934677
gz1="$(_compress_if_exists SRR2934677_1 || true)"
gz2="$(_compress_if_exists SRR2934677_2 || true)"
gzs="$(_compress_if_exists SRR2934677 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_C09_GGAGTTAC.fq.gz
fi

fasterq-dump --split-files SRR2934678
gz1="$(_compress_if_exists SRR2934678_1 || true)"
gz2="$(_compress_if_exists SRR2934678_2 || true)"
gzs="$(_compress_if_exists SRR2934678 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_C10_AGGGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2934679
gz1="$(_compress_if_exists SRR2934679_1 || true)"
gz2="$(_compress_if_exists SRR2934679_2 || true)"
gzs="$(_compress_if_exists SRR2934679 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2934680
gz1="$(_compress_if_exists SRR2934680_1 || true)"
gz2="$(_compress_if_exists SRR2934680_2 || true)"
gzs="$(_compress_if_exists SRR2934680 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_D03_CCTGTAAC.fq.gz
fi

fasterq-dump --split-files SRR2934681
gz1="$(_compress_if_exists SRR2934681_1 || true)"
gz2="$(_compress_if_exists SRR2934681_2 || true)"
gzs="$(_compress_if_exists SRR2934681 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_D05_TGGACTGG.fq.gz
fi

fasterq-dump --split-files SRR2934682
gz1="$(_compress_if_exists SRR2934682_1 || true)"
gz2="$(_compress_if_exists SRR2934682_2 || true)"
gzs="$(_compress_if_exists SRR2934682 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_D06_GGATACGT.fq.gz
fi

fasterq-dump --split-files SRR2934683
gz1="$(_compress_if_exists SRR2934683_1 || true)"
gz2="$(_compress_if_exists SRR2934683_2 || true)"
gzs="$(_compress_if_exists SRR2934683 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_D07_CTACATCA.fq.gz
fi

fasterq-dump --split-files SRR2934684
gz1="$(_compress_if_exists SRR2934684_1 || true)"
gz2="$(_compress_if_exists SRR2934684_2 || true)"
gzs="$(_compress_if_exists SRR2934684 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_D08_TTCACCCG.fq.gz
fi

fasterq-dump --split-files SRR2934686
gz1="$(_compress_if_exists SRR2934686_1 || true)"
gz2="$(_compress_if_exists SRR2934686_2 || true)"
gzs="$(_compress_if_exists SRR2934686 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2934687
gz1="$(_compress_if_exists SRR2934687_1 || true)"
gz2="$(_compress_if_exists SRR2934687_2 || true)"
gzs="$(_compress_if_exists SRR2934687 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E01_CGCTAAAT.fq.gz
fi

fasterq-dump --split-files SRR2934688
gz1="$(_compress_if_exists SRR2934688_1 || true)"
gz2="$(_compress_if_exists SRR2934688_2 || true)"
gzs="$(_compress_if_exists SRR2934688 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E02_TCGACATC.fq.gz
fi

fasterq-dump --split-files SRR2934689
gz1="$(_compress_if_exists SRR2934689_1 || true)"
gz2="$(_compress_if_exists SRR2934689_2 || true)"
gzs="$(_compress_if_exists SRR2934689 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E03_AAAGGTCC.fq.gz
fi

fasterq-dump --split-files SRR2934690
gz1="$(_compress_if_exists SRR2934690_1 || true)"
gz2="$(_compress_if_exists SRR2934690_2 || true)"
gzs="$(_compress_if_exists SRR2934690 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E04_AAGGAGCT.fq.gz
fi

fasterq-dump --split-files SRR2934691
gz1="$(_compress_if_exists SRR2934691_1 || true)"
gz2="$(_compress_if_exists SRR2934691_2 || true)"
gzs="$(_compress_if_exists SRR2934691 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E05_GCTGAGGT.fq.gz
fi

fasterq-dump --split-files SRR2934692
gz1="$(_compress_if_exists SRR2934692_1 || true)"
gz2="$(_compress_if_exists SRR2934692_2 || true)"
gzs="$(_compress_if_exists SRR2934692 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2934693
gz1="$(_compress_if_exists SRR2934693_1 || true)"
gz2="$(_compress_if_exists SRR2934693_2 || true)"
gzs="$(_compress_if_exists SRR2934693 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E10_AGTTGTGG.fq.gz
fi

fasterq-dump --split-files SRR2934694
gz1="$(_compress_if_exists SRR2934694_1 || true)"
gz2="$(_compress_if_exists SRR2934694_2 || true)"
gzs="$(_compress_if_exists SRR2934694 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2934695
gz1="$(_compress_if_exists SRR2934695_1 || true)"
gz2="$(_compress_if_exists SRR2934695_2 || true)"
gzs="$(_compress_if_exists SRR2934695 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2934696
gz1="$(_compress_if_exists SRR2934696_1 || true)"
gz2="$(_compress_if_exists SRR2934696_2 || true)"
gzs="$(_compress_if_exists SRR2934696 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F01_GTCTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2934697
gz1="$(_compress_if_exists SRR2934697_1 || true)"
gz2="$(_compress_if_exists SRR2934697_2 || true)"
gzs="$(_compress_if_exists SRR2934697 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F02_ACCCGTAA.fq.gz
fi

fasterq-dump --split-files SRR2934698
gz1="$(_compress_if_exists SRR2934698_1 || true)"
gz2="$(_compress_if_exists SRR2934698_2 || true)"
gzs="$(_compress_if_exists SRR2934698 || true)"

fasterq-dump --split-files SRR2934699
gz1="$(_compress_if_exists SRR2934699_1 || true)"
gz2="$(_compress_if_exists SRR2934699_2 || true)"
gzs="$(_compress_if_exists SRR2934699 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2934700
gz1="$(_compress_if_exists SRR2934700_1 || true)"
gz2="$(_compress_if_exists SRR2934700_2 || true)"
gzs="$(_compress_if_exists SRR2934700 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F06_ACACAACT.fq.gz
fi

fasterq-dump --split-files SRR2934701
gz1="$(_compress_if_exists SRR2934701_1 || true)"
gz2="$(_compress_if_exists SRR2934701_2 || true)"
gzs="$(_compress_if_exists SRR2934701 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F07_AAGTCTTC.fq.gz
fi

fasterq-dump --split-files SRR2934702
gz1="$(_compress_if_exists SRR2934702_1 || true)"
gz2="$(_compress_if_exists SRR2934702_2 || true)"
gzs="$(_compress_if_exists SRR2934702 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F09_ATTGCGTC.fq.gz
fi

fasterq-dump --split-files SRR2934703
gz1="$(_compress_if_exists SRR2934703_1 || true)"
gz2="$(_compress_if_exists SRR2934703_2 || true)"
gzs="$(_compress_if_exists SRR2934703 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F10_ATGCCTGT.fq.gz
fi

fasterq-dump --split-files SRR2934704
gz1="$(_compress_if_exists SRR2934704_1 || true)"
gz2="$(_compress_if_exists SRR2934704_2 || true)"
gzs="$(_compress_if_exists SRR2934704 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2934705
gz1="$(_compress_if_exists SRR2934705_1 || true)"
gz2="$(_compress_if_exists SRR2934705_2 || true)"
gzs="$(_compress_if_exists SRR2934705 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_F12_TACAACGT.fq.gz
fi

fasterq-dump --split-files SRR2934706
gz1="$(_compress_if_exists SRR2934706_1 || true)"
gz2="$(_compress_if_exists SRR2934706_2 || true)"
gzs="$(_compress_if_exists SRR2934706 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_G03_CAAACAGT.fq.gz
fi

fasterq-dump --split-files SRR2934707
gz1="$(_compress_if_exists SRR2934707_1 || true)"
gz2="$(_compress_if_exists SRR2934707_2 || true)"
gzs="$(_compress_if_exists SRR2934707 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_G04_GTGGCAAC.fq.gz
fi

fasterq-dump --split-files SRR2934709
gz1="$(_compress_if_exists SRR2934709_1 || true)"
gz2="$(_compress_if_exists SRR2934709_2 || true)"
gzs="$(_compress_if_exists SRR2934709 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2934711
gz1="$(_compress_if_exists SRR2934711_1 || true)"
gz2="$(_compress_if_exists SRR2934711_2 || true)"
gzs="$(_compress_if_exists SRR2934711 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_G09_CTCCAGGT.fq.gz
fi

fasterq-dump --split-files SRR2934712
gz1="$(_compress_if_exists SRR2934712_1 || true)"
gz2="$(_compress_if_exists SRR2934712_2 || true)"
gzs="$(_compress_if_exists SRR2934712 || true)"

fasterq-dump --split-files SRR2934714
gz1="$(_compress_if_exists SRR2934714_1 || true)"
gz2="$(_compress_if_exists SRR2934714_2 || true)"
gzs="$(_compress_if_exists SRR2934714 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_G12_TTCTCTGC.fq.gz
fi

fasterq-dump --split-files SRR2934715
gz1="$(_compress_if_exists SRR2934715_1 || true)"
gz2="$(_compress_if_exists SRR2934715_2 || true)"
gzs="$(_compress_if_exists SRR2934715 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_H01_GAGCTCCA.fq.gz
fi

fasterq-dump --split-files SRR2934716
gz1="$(_compress_if_exists SRR2934716_1 || true)"
gz2="$(_compress_if_exists SRR2934716_2 || true)"
gzs="$(_compress_if_exists SRR2934716 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2934717
gz1="$(_compress_if_exists SRR2934717_1 || true)"
gz2="$(_compress_if_exists SRR2934717_2 || true)"
gzs="$(_compress_if_exists SRR2934717 || true)"

fasterq-dump --split-files SRR2934719
gz1="$(_compress_if_exists SRR2934719_1 || true)"
gz2="$(_compress_if_exists SRR2934719_2 || true)"
gzs="$(_compress_if_exists SRR2934719 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772084-021_R297_L7_1_H12_CCAAATGC.fq.gz
fi

fasterq-dump --split-files SRR2934721
gz1="$(_compress_if_exists SRR2934721_1 || true)"
gz2="$(_compress_if_exists SRR2934721_2 || true)"
gzs="$(_compress_if_exists SRR2934721 || true)"

fasterq-dump --split-files SRR2934722
gz1="$(_compress_if_exists SRR2934722_1 || true)"
gz2="$(_compress_if_exists SRR2934722_2 || true)"
gzs="$(_compress_if_exists SRR2934722 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2934723
gz1="$(_compress_if_exists SRR2934723_1 || true)"
gz2="$(_compress_if_exists SRR2934723_2 || true)"
gzs="$(_compress_if_exists SRR2934723 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2934724
gz1="$(_compress_if_exists SRR2934724_1 || true)"
gz2="$(_compress_if_exists SRR2934724_2 || true)"
gzs="$(_compress_if_exists SRR2934724 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_A10_ACAGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934725
gz1="$(_compress_if_exists SRR2934725_1 || true)"
gz2="$(_compress_if_exists SRR2934725_2 || true)"
gzs="$(_compress_if_exists SRR2934725 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_B01_CCCTTGTA.fq.gz
fi

fasterq-dump --split-files SRR2934726
gz1="$(_compress_if_exists SRR2934726_1 || true)"
gz2="$(_compress_if_exists SRR2934726_2 || true)"
gzs="$(_compress_if_exists SRR2934726 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_B03_GGTTGCAA.fq.gz
fi

fasterq-dump --split-files SRR2934727
gz1="$(_compress_if_exists SRR2934727_1 || true)"
gz2="$(_compress_if_exists SRR2934727_2 || true)"
gzs="$(_compress_if_exists SRR2934727 || true)"

fasterq-dump --split-files SRR2934728
gz1="$(_compress_if_exists SRR2934728_1 || true)"
gz2="$(_compress_if_exists SRR2934728_2 || true)"
gzs="$(_compress_if_exists SRR2934728 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934729
gz1="$(_compress_if_exists SRR2934729_1 || true)"
gz2="$(_compress_if_exists SRR2934729_2 || true)"
gzs="$(_compress_if_exists SRR2934729 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2934730
gz1="$(_compress_if_exists SRR2934730_1 || true)"
gz2="$(_compress_if_exists SRR2934730_2 || true)"
gzs="$(_compress_if_exists SRR2934730 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C01_AGTAGTCC.fq.gz
fi

fasterq-dump --split-files SRR2934731
gz1="$(_compress_if_exists SRR2934731_1 || true)"
gz2="$(_compress_if_exists SRR2934731_2 || true)"
gzs="$(_compress_if_exists SRR2934731 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2934732
gz1="$(_compress_if_exists SRR2934732_1 || true)"
gz2="$(_compress_if_exists SRR2934732_2 || true)"
gzs="$(_compress_if_exists SRR2934732 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C03_CGTCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2934733
gz1="$(_compress_if_exists SRR2934733_1 || true)"
gz2="$(_compress_if_exists SRR2934733_2 || true)"
gzs="$(_compress_if_exists SRR2934733 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2934734
gz1="$(_compress_if_exists SRR2934734_1 || true)"
gz2="$(_compress_if_exists SRR2934734_2 || true)"
gzs="$(_compress_if_exists SRR2934734 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C07_GTGGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2934735
gz1="$(_compress_if_exists SRR2934735_1 || true)"
gz2="$(_compress_if_exists SRR2934735_2 || true)"
gzs="$(_compress_if_exists SRR2934735 || true)"

fasterq-dump --split-files SRR2934736
gz1="$(_compress_if_exists SRR2934736_1 || true)"
gz2="$(_compress_if_exists SRR2934736_2 || true)"
gzs="$(_compress_if_exists SRR2934736 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934737
gz1="$(_compress_if_exists SRR2934737_1 || true)"
gz2="$(_compress_if_exists SRR2934737_2 || true)"
gzs="$(_compress_if_exists SRR2934737 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C11_TACGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2934738
gz1="$(_compress_if_exists SRR2934738_1 || true)"
gz2="$(_compress_if_exists SRR2934738_2 || true)"
gzs="$(_compress_if_exists SRR2934738 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2934739
gz1="$(_compress_if_exists SRR2934739_1 || true)"
gz2="$(_compress_if_exists SRR2934739_2 || true)"
gzs="$(_compress_if_exists SRR2934739 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_D02_TTAGCCAG.fq.gz
fi

fasterq-dump --split-files SRR2934741
gz1="$(_compress_if_exists SRR2934741_1 || true)"
gz2="$(_compress_if_exists SRR2934741_2 || true)"
gzs="$(_compress_if_exists SRR2934741 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_D04_TCAGAACC.fq.gz
fi

fasterq-dump --split-files SRR2934742
gz1="$(_compress_if_exists SRR2934742_1 || true)"
gz2="$(_compress_if_exists SRR2934742_2 || true)"
gzs="$(_compress_if_exists SRR2934742 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_D07_TGCAGCTT.fq.gz
fi

fasterq-dump --split-files SRR2934743
gz1="$(_compress_if_exists SRR2934743_1 || true)"
gz2="$(_compress_if_exists SRR2934743_2 || true)"
gzs="$(_compress_if_exists SRR2934743 || true)"

fasterq-dump --split-files SRR2934744
gz1="$(_compress_if_exists SRR2934744_1 || true)"
gz2="$(_compress_if_exists SRR2934744_2 || true)"
gzs="$(_compress_if_exists SRR2934744 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_D11_CCACTTTG.fq.gz
fi

fasterq-dump --split-files SRR2934745
gz1="$(_compress_if_exists SRR2934745_1 || true)"
gz2="$(_compress_if_exists SRR2934745_2 || true)"
gzs="$(_compress_if_exists SRR2934745 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2934748
gz1="$(_compress_if_exists SRR2934748_1 || true)"
gz2="$(_compress_if_exists SRR2934748_2 || true)"
gzs="$(_compress_if_exists SRR2934748 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_E09_GACATCAC.fq.gz
fi

fasterq-dump --split-files SRR2934749
gz1="$(_compress_if_exists SRR2934749_1 || true)"
gz2="$(_compress_if_exists SRR2934749_2 || true)"
gzs="$(_compress_if_exists SRR2934749 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2934750
gz1="$(_compress_if_exists SRR2934750_1 || true)"
gz2="$(_compress_if_exists SRR2934750_2 || true)"
gzs="$(_compress_if_exists SRR2934750 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_E11_TGTGAGAC.fq.gz
fi

fasterq-dump --split-files SRR2934751
gz1="$(_compress_if_exists SRR2934751_1 || true)"
gz2="$(_compress_if_exists SRR2934751_2 || true)"
gzs="$(_compress_if_exists SRR2934751 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_F02_CATAACCC.fq.gz
fi

fasterq-dump --split-files SRR2934752
gz1="$(_compress_if_exists SRR2934752_1 || true)"
gz2="$(_compress_if_exists SRR2934752_2 || true)"
gzs="$(_compress_if_exists SRR2934752 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_F03_ACGATCTG.fq.gz
fi

fasterq-dump --split-files SRR2934754
gz1="$(_compress_if_exists SRR2934754_1 || true)"
gz2="$(_compress_if_exists SRR2934754_2 || true)"
gzs="$(_compress_if_exists SRR2934754 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_F12_TGCATTCG.fq.gz
fi

fasterq-dump --split-files SRR2934756
gz1="$(_compress_if_exists SRR2934756_1 || true)"
gz2="$(_compress_if_exists SRR2934756_2 || true)"
gzs="$(_compress_if_exists SRR2934756 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2934757
gz1="$(_compress_if_exists SRR2934757_1 || true)"
gz2="$(_compress_if_exists SRR2934757_2 || true)"
gzs="$(_compress_if_exists SRR2934757 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_G06_CTATAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934758
gz1="$(_compress_if_exists SRR2934758_1 || true)"
gz2="$(_compress_if_exists SRR2934758_2 || true)"
gzs="$(_compress_if_exists SRR2934758 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_G09_GGAAATGG.fq.gz
fi

fasterq-dump --split-files SRR2934759
gz1="$(_compress_if_exists SRR2934759_1 || true)"
gz2="$(_compress_if_exists SRR2934759_2 || true)"
gzs="$(_compress_if_exists SRR2934759 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_G10_GCGAGATA.fq.gz
fi

fasterq-dump --split-files SRR2934760
gz1="$(_compress_if_exists SRR2934760_1 || true)"
gz2="$(_compress_if_exists SRR2934760_2 || true)"
gzs="$(_compress_if_exists SRR2934760 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_H03_CGAGACTT.fq.gz
fi

fasterq-dump --split-files SRR2934761
gz1="$(_compress_if_exists SRR2934761_1 || true)"
gz2="$(_compress_if_exists SRR2934761_2 || true)"
gzs="$(_compress_if_exists SRR2934761 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2934762
gz1="$(_compress_if_exists SRR2934762_1 || true)"
gz2="$(_compress_if_exists SRR2934762_2 || true)"
gzs="$(_compress_if_exists SRR2934762 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-186_R279_L4_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2934763
gz1="$(_compress_if_exists SRR2934763_1 || true)"
gz2="$(_compress_if_exists SRR2934763_2 || true)"
gzs="$(_compress_if_exists SRR2934763 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2934765
gz1="$(_compress_if_exists SRR2934765_1 || true)"
gz2="$(_compress_if_exists SRR2934765_2 || true)"
gzs="$(_compress_if_exists SRR2934765 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_A06_GGTCTGAA.fq.gz
fi

fasterq-dump --split-files SRR2934766
gz1="$(_compress_if_exists SRR2934766_1 || true)"
gz2="$(_compress_if_exists SRR2934766_2 || true)"
gzs="$(_compress_if_exists SRR2934766 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_A07_TGAGGCAT.fq.gz
fi

fasterq-dump --split-files SRR2934767
gz1="$(_compress_if_exists SRR2934767_1 || true)"
gz2="$(_compress_if_exists SRR2934767_2 || true)"
gzs="$(_compress_if_exists SRR2934767 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_A08_AGCTACCA.fq.gz
fi

fasterq-dump --split-files SRR2934768
gz1="$(_compress_if_exists SRR2934768_1 || true)"
gz2="$(_compress_if_exists SRR2934768_2 || true)"
gzs="$(_compress_if_exists SRR2934768 || true)"

fasterq-dump --split-files SRR2934769
gz1="$(_compress_if_exists SRR2934769_1 || true)"
gz2="$(_compress_if_exists SRR2934769_2 || true)"
gzs="$(_compress_if_exists SRR2934769 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_A12_CCATTAGC.fq.gz
fi

fasterq-dump --split-files SRR2934771
gz1="$(_compress_if_exists SRR2934771_1 || true)"
gz2="$(_compress_if_exists SRR2934771_2 || true)"
gzs="$(_compress_if_exists SRR2934771 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2934772
gz1="$(_compress_if_exists SRR2934772_1 || true)"
gz2="$(_compress_if_exists SRR2934772_2 || true)"
gzs="$(_compress_if_exists SRR2934772 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2934773
gz1="$(_compress_if_exists SRR2934773_1 || true)"
gz2="$(_compress_if_exists SRR2934773_2 || true)"
gzs="$(_compress_if_exists SRR2934773 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2934774
gz1="$(_compress_if_exists SRR2934774_1 || true)"
gz2="$(_compress_if_exists SRR2934774_2 || true)"
gzs="$(_compress_if_exists SRR2934774 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2934775
gz1="$(_compress_if_exists SRR2934775_1 || true)"
gz2="$(_compress_if_exists SRR2934775_2 || true)"
gzs="$(_compress_if_exists SRR2934775 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2934776
gz1="$(_compress_if_exists SRR2934776_1 || true)"
gz2="$(_compress_if_exists SRR2934776_2 || true)"
gzs="$(_compress_if_exists SRR2934776 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2934777
gz1="$(_compress_if_exists SRR2934777_1 || true)"
gz2="$(_compress_if_exists SRR2934777_2 || true)"
gzs="$(_compress_if_exists SRR2934777 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2934778
gz1="$(_compress_if_exists SRR2934778_1 || true)"
gz2="$(_compress_if_exists SRR2934778_2 || true)"
gzs="$(_compress_if_exists SRR2934778 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2934779
gz1="$(_compress_if_exists SRR2934779_1 || true)"
gz2="$(_compress_if_exists SRR2934779_2 || true)"
gzs="$(_compress_if_exists SRR2934779 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2934780
gz1="$(_compress_if_exists SRR2934780_1 || true)"
gz2="$(_compress_if_exists SRR2934780_2 || true)"
gzs="$(_compress_if_exists SRR2934780 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2934781
gz1="$(_compress_if_exists SRR2934781_1 || true)"
gz2="$(_compress_if_exists SRR2934781_2 || true)"
gzs="$(_compress_if_exists SRR2934781 || true)"

fasterq-dump --split-files SRR2934782
gz1="$(_compress_if_exists SRR2934782_1 || true)"
gz2="$(_compress_if_exists SRR2934782_2 || true)"
gzs="$(_compress_if_exists SRR2934782 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2934783
gz1="$(_compress_if_exists SRR2934783_1 || true)"
gz2="$(_compress_if_exists SRR2934783_2 || true)"
gzs="$(_compress_if_exists SRR2934783 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_E05_TCGATTGC.fq.gz
fi

fasterq-dump --split-files SRR2934784
gz1="$(_compress_if_exists SRR2934784_1 || true)"
gz2="$(_compress_if_exists SRR2934784_2 || true)"
gzs="$(_compress_if_exists SRR2934784 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_E10_TCCTGACT.fq.gz
fi

fasterq-dump --split-files SRR2934785
gz1="$(_compress_if_exists SRR2934785_1 || true)"
gz2="$(_compress_if_exists SRR2934785_2 || true)"
gzs="$(_compress_if_exists SRR2934785 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_E12_CTTCTTGC.fq.gz
fi

fasterq-dump --split-files SRR2934786
gz1="$(_compress_if_exists SRR2934786_1 || true)"
gz2="$(_compress_if_exists SRR2934786_2 || true)"
gzs="$(_compress_if_exists SRR2934786 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_F04_GGTAGCTA.fq.gz
fi

fasterq-dump --split-files SRR2934787
gz1="$(_compress_if_exists SRR2934787_1 || true)"
gz2="$(_compress_if_exists SRR2934787_2 || true)"
gzs="$(_compress_if_exists SRR2934787 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_F05_CGATTGGA.fq.gz
fi

fasterq-dump --split-files SRR2934788
gz1="$(_compress_if_exists SRR2934788_1 || true)"
gz2="$(_compress_if_exists SRR2934788_2 || true)"
gzs="$(_compress_if_exists SRR2934788 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2934789
gz1="$(_compress_if_exists SRR2934789_1 || true)"
gz2="$(_compress_if_exists SRR2934789_2 || true)"
gzs="$(_compress_if_exists SRR2934789 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2934791
gz1="$(_compress_if_exists SRR2934791_1 || true)"
gz2="$(_compress_if_exists SRR2934791_2 || true)"
gzs="$(_compress_if_exists SRR2934791 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2934793
gz1="$(_compress_if_exists SRR2934793_1 || true)"
gz2="$(_compress_if_exists SRR2934793_2 || true)"
gzs="$(_compress_if_exists SRR2934793 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_G11_TGTAGGGT.fq.gz
fi

fasterq-dump --split-files SRR2934794
gz1="$(_compress_if_exists SRR2934794_1 || true)"
gz2="$(_compress_if_exists SRR2934794_2 || true)"
gzs="$(_compress_if_exists SRR2934794 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_H06_CTGACCTT.fq.gz
fi

fasterq-dump --split-files SRR2934795
gz1="$(_compress_if_exists SRR2934795_1 || true)"
gz2="$(_compress_if_exists SRR2934795_2 || true)"
gzs="$(_compress_if_exists SRR2934795 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_H07_CAAAGCTG.fq.gz
fi

fasterq-dump --split-files SRR2934796
gz1="$(_compress_if_exists SRR2934796_1 || true)"
gz2="$(_compress_if_exists SRR2934796_2 || true)"
gzs="$(_compress_if_exists SRR2934796 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_H10_ATCGGAAC.fq.gz
fi

fasterq-dump --split-files SRR2934797
gz1="$(_compress_if_exists SRR2934797_1 || true)"
gz2="$(_compress_if_exists SRR2934797_2 || true)"
gzs="$(_compress_if_exists SRR2934797 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-187_R279_L4_1_H11_AAGGACGA.fq.gz
fi

fasterq-dump --split-files SRR2934800
gz1="$(_compress_if_exists SRR2934800_1 || true)"
gz2="$(_compress_if_exists SRR2934800_2 || true)"
gzs="$(_compress_if_exists SRR2934800 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2934801
gz1="$(_compress_if_exists SRR2934801_1 || true)"
gz2="$(_compress_if_exists SRR2934801_2 || true)"
gzs="$(_compress_if_exists SRR2934801 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_B04_GTGATCAG.fq.gz
fi

fasterq-dump --split-files SRR2934804
gz1="$(_compress_if_exists SRR2934804_1 || true)"
gz2="$(_compress_if_exists SRR2934804_2 || true)"
gzs="$(_compress_if_exists SRR2934804 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_B10_TCGTCGAT.fq.gz
fi

fasterq-dump --split-files SRR2934805
gz1="$(_compress_if_exists SRR2934805_1 || true)"
gz2="$(_compress_if_exists SRR2934805_2 || true)"
gzs="$(_compress_if_exists SRR2934805 || true)"

fasterq-dump --split-files SRR2934806
gz1="$(_compress_if_exists SRR2934806_1 || true)"
gz2="$(_compress_if_exists SRR2934806_2 || true)"
gzs="$(_compress_if_exists SRR2934806 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_C05_ACCCTCTA.fq.gz
fi

fasterq-dump --split-files SRR2934807
gz1="$(_compress_if_exists SRR2934807_1 || true)"
gz2="$(_compress_if_exists SRR2934807_2 || true)"
gzs="$(_compress_if_exists SRR2934807 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_C06_CTAACACC.fq.gz
fi

fasterq-dump --split-files SRR2934808
gz1="$(_compress_if_exists SRR2934808_1 || true)"
gz2="$(_compress_if_exists SRR2934808_2 || true)"
gzs="$(_compress_if_exists SRR2934808 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_C12_CTTCTCTG.fq.gz
fi

fasterq-dump --split-files SRR2934809
gz1="$(_compress_if_exists SRR2934809_1 || true)"
gz2="$(_compress_if_exists SRR2934809_2 || true)"
gzs="$(_compress_if_exists SRR2934809 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_D02_TCCTTGGT.fq.gz
fi

fasterq-dump --split-files SRR2934811
gz1="$(_compress_if_exists SRR2934811_1 || true)"
gz2="$(_compress_if_exists SRR2934811_2 || true)"
gzs="$(_compress_if_exists SRR2934811 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_D06_GGTAAGAC.fq.gz
fi

fasterq-dump --split-files SRR2934813
gz1="$(_compress_if_exists SRR2934813_1 || true)"
gz2="$(_compress_if_exists SRR2934813_2 || true)"
gzs="$(_compress_if_exists SRR2934813 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_D10_TACTAGGG.fq.gz
fi

fasterq-dump --split-files SRR2934814
gz1="$(_compress_if_exists SRR2934814_1 || true)"
gz2="$(_compress_if_exists SRR2934814_2 || true)"
gzs="$(_compress_if_exists SRR2934814 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_E01_TCGTGGTA.fq.gz
fi

fasterq-dump --split-files SRR2934815
gz1="$(_compress_if_exists SRR2934815_1 || true)"
gz2="$(_compress_if_exists SRR2934815_2 || true)"
gzs="$(_compress_if_exists SRR2934815 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_E05_ACATGGTG.fq.gz
fi

fasterq-dump --split-files SRR2934817
gz1="$(_compress_if_exists SRR2934817_1 || true)"
gz2="$(_compress_if_exists SRR2934817_2 || true)"
gzs="$(_compress_if_exists SRR2934817 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_E10_GTCAAAGG.fq.gz
fi

fasterq-dump --split-files SRR2934818
gz1="$(_compress_if_exists SRR2934818_1 || true)"
gz2="$(_compress_if_exists SRR2934818_2 || true)"
gzs="$(_compress_if_exists SRR2934818 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2934821
gz1="$(_compress_if_exists SRR2934821_1 || true)"
gz2="$(_compress_if_exists SRR2934821_2 || true)"
gzs="$(_compress_if_exists SRR2934821 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_F07_GCTCCATA.fq.gz
fi

fasterq-dump --split-files SRR2934822
gz1="$(_compress_if_exists SRR2934822_1 || true)"
gz2="$(_compress_if_exists SRR2934822_2 || true)"
gzs="$(_compress_if_exists SRR2934822 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_F11_TTCCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2934823
gz1="$(_compress_if_exists SRR2934823_1 || true)"
gz2="$(_compress_if_exists SRR2934823_2 || true)"
gzs="$(_compress_if_exists SRR2934823 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_G04_GCCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2934824
gz1="$(_compress_if_exists SRR2934824_1 || true)"
gz2="$(_compress_if_exists SRR2934824_2 || true)"
gzs="$(_compress_if_exists SRR2934824 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2934825
gz1="$(_compress_if_exists SRR2934825_1 || true)"
gz2="$(_compress_if_exists SRR2934825_2 || true)"
gzs="$(_compress_if_exists SRR2934825 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_G11_CCAGAGTT.fq.gz
fi

fasterq-dump --split-files SRR2934826
gz1="$(_compress_if_exists SRR2934826_1 || true)"
gz2="$(_compress_if_exists SRR2934826_2 || true)"
gzs="$(_compress_if_exists SRR2934826 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_G12_TCTGCACT.fq.gz
fi

fasterq-dump --split-files SRR2934827
gz1="$(_compress_if_exists SRR2934827_1 || true)"
gz2="$(_compress_if_exists SRR2934827_2 || true)"
gzs="$(_compress_if_exists SRR2934827 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-188_R279_L6_1_H10_GTGTTCGT.fq.gz
fi

fasterq-dump --split-files SRR2934829
gz1="$(_compress_if_exists SRR2934829_1 || true)"
gz2="$(_compress_if_exists SRR2934829_2 || true)"
gzs="$(_compress_if_exists SRR2934829 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2934830
gz1="$(_compress_if_exists SRR2934830_1 || true)"
gz2="$(_compress_if_exists SRR2934830_2 || true)"
gzs="$(_compress_if_exists SRR2934830 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_A02_TTAGCTCC.fq.gz
fi

fasterq-dump --split-files SRR2934831
gz1="$(_compress_if_exists SRR2934831_1 || true)"
gz2="$(_compress_if_exists SRR2934831_2 || true)"
gzs="$(_compress_if_exists SRR2934831 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_A04_ACCGATCA.fq.gz
fi

fasterq-dump --split-files SRR2934833
gz1="$(_compress_if_exists SRR2934833_1 || true)"
gz2="$(_compress_if_exists SRR2934833_2 || true)"
gzs="$(_compress_if_exists SRR2934833 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2934834
gz1="$(_compress_if_exists SRR2934834_1 || true)"
gz2="$(_compress_if_exists SRR2934834_2 || true)"
gzs="$(_compress_if_exists SRR2934834 || true)"

fasterq-dump --split-files SRR2934835
gz1="$(_compress_if_exists SRR2934835_1 || true)"
gz2="$(_compress_if_exists SRR2934835_2 || true)"
gzs="$(_compress_if_exists SRR2934835 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2934836
gz1="$(_compress_if_exists SRR2934836_1 || true)"
gz2="$(_compress_if_exists SRR2934836_2 || true)"
gzs="$(_compress_if_exists SRR2934836 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2934837
gz1="$(_compress_if_exists SRR2934837_1 || true)"
gz2="$(_compress_if_exists SRR2934837_2 || true)"
gzs="$(_compress_if_exists SRR2934837 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_B04_GTGATCAG.fq.gz
fi

fasterq-dump --split-files SRR2934838
gz1="$(_compress_if_exists SRR2934838_1 || true)"
gz2="$(_compress_if_exists SRR2934838_2 || true)"
gzs="$(_compress_if_exists SRR2934838 || true)"

fasterq-dump --split-files SRR2934839
gz1="$(_compress_if_exists SRR2934839_1 || true)"
gz2="$(_compress_if_exists SRR2934839_2 || true)"
gzs="$(_compress_if_exists SRR2934839 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_B06_TCTACAGG.fq.gz
fi

fasterq-dump --split-files SRR2934840
gz1="$(_compress_if_exists SRR2934840_1 || true)"
gz2="$(_compress_if_exists SRR2934840_2 || true)"
gzs="$(_compress_if_exists SRR2934840 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_B07_ACAGTTCG.fq.gz
fi

fasterq-dump --split-files SRR2934841
gz1="$(_compress_if_exists SRR2934841_1 || true)"
gz2="$(_compress_if_exists SRR2934841_2 || true)"
gzs="$(_compress_if_exists SRR2934841 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_B08_CAGCCTTT.fq.gz
fi

fasterq-dump --split-files SRR2934842
gz1="$(_compress_if_exists SRR2934842_1 || true)"
gz2="$(_compress_if_exists SRR2934842_2 || true)"
gzs="$(_compress_if_exists SRR2934842 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_C01_TCACCGTA.fq.gz
fi

fasterq-dump --split-files SRR2934843
gz1="$(_compress_if_exists SRR2934843_1 || true)"
gz2="$(_compress_if_exists SRR2934843_2 || true)"
gzs="$(_compress_if_exists SRR2934843 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_C02_CGAGAACT.fq.gz
fi

fasterq-dump --split-files SRR2934844
gz1="$(_compress_if_exists SRR2934844_1 || true)"
gz2="$(_compress_if_exists SRR2934844_2 || true)"
gzs="$(_compress_if_exists SRR2934844 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_C04_AGTACGAG.fq.gz
fi

fasterq-dump --split-files SRR2934845
gz1="$(_compress_if_exists SRR2934845_1 || true)"
gz2="$(_compress_if_exists SRR2934845_2 || true)"
gzs="$(_compress_if_exists SRR2934845 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_C06_CTAACACC.fq.gz
fi

fasterq-dump --split-files SRR2934846
gz1="$(_compress_if_exists SRR2934846_1 || true)"
gz2="$(_compress_if_exists SRR2934846_2 || true)"
gzs="$(_compress_if_exists SRR2934846 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2934847
gz1="$(_compress_if_exists SRR2934847_1 || true)"
gz2="$(_compress_if_exists SRR2934847_2 || true)"
gzs="$(_compress_if_exists SRR2934847 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_C12_CTTCTCTG.fq.gz
fi

fasterq-dump --split-files SRR2934848
gz1="$(_compress_if_exists SRR2934848_1 || true)"
gz2="$(_compress_if_exists SRR2934848_2 || true)"
gzs="$(_compress_if_exists SRR2934848 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_D01_GGTACATC.fq.gz
fi

fasterq-dump --split-files SRR2934849
gz1="$(_compress_if_exists SRR2934849_1 || true)"
gz2="$(_compress_if_exists SRR2934849_2 || true)"
gzs="$(_compress_if_exists SRR2934849 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_D11_TCCGCTTT.fq.gz
fi

fasterq-dump --split-files SRR2934850
gz1="$(_compress_if_exists SRR2934850_1 || true)"
gz2="$(_compress_if_exists SRR2934850_2 || true)"
gzs="$(_compress_if_exists SRR2934850 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_E03_AGCTTTCG.fq.gz
fi

fasterq-dump --split-files SRR2934851
gz1="$(_compress_if_exists SRR2934851_1 || true)"
gz2="$(_compress_if_exists SRR2934851_2 || true)"
gzs="$(_compress_if_exists SRR2934851 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2934852
gz1="$(_compress_if_exists SRR2934852_1 || true)"
gz2="$(_compress_if_exists SRR2934852_2 || true)"
gzs="$(_compress_if_exists SRR2934852 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_E08_GAACTGGT.fq.gz
fi

fasterq-dump --split-files SRR2934853
gz1="$(_compress_if_exists SRR2934853_1 || true)"
gz2="$(_compress_if_exists SRR2934853_2 || true)"
gzs="$(_compress_if_exists SRR2934853 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_E12_TAGAGGTG.fq.gz
fi

fasterq-dump --split-files SRR2934854
gz1="$(_compress_if_exists SRR2934854_1 || true)"
gz2="$(_compress_if_exists SRR2934854_2 || true)"
gzs="$(_compress_if_exists SRR2934854 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_F06_TGAAGCCA.fq.gz
fi

fasterq-dump --split-files SRR2934855
gz1="$(_compress_if_exists SRR2934855_1 || true)"
gz2="$(_compress_if_exists SRR2934855_2 || true)"
gzs="$(_compress_if_exists SRR2934855 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_F10_AAGCCACA.fq.gz
fi

fasterq-dump --split-files SRR2934856
gz1="$(_compress_if_exists SRR2934856_1 || true)"
gz2="$(_compress_if_exists SRR2934856_2 || true)"
gzs="$(_compress_if_exists SRR2934856 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_F11_TTCCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2934857
gz1="$(_compress_if_exists SRR2934857_1 || true)"
gz2="$(_compress_if_exists SRR2934857_2 || true)"
gzs="$(_compress_if_exists SRR2934857 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_F12_GTCCAACT.fq.gz
fi

fasterq-dump --split-files SRR2934858
gz1="$(_compress_if_exists SRR2934858_1 || true)"
gz2="$(_compress_if_exists SRR2934858_2 || true)"
gzs="$(_compress_if_exists SRR2934858 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_G02_TCACCTCT.fq.gz
fi

fasterq-dump --split-files SRR2934859
gz1="$(_compress_if_exists SRR2934859_1 || true)"
gz2="$(_compress_if_exists SRR2934859_2 || true)"
gzs="$(_compress_if_exists SRR2934859 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2934860
gz1="$(_compress_if_exists SRR2934860_1 || true)"
gz2="$(_compress_if_exists SRR2934860_2 || true)"
gzs="$(_compress_if_exists SRR2934860 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_G06_GTGAAGCT.fq.gz
fi

fasterq-dump --split-files SRR2934861
gz1="$(_compress_if_exists SRR2934861_1 || true)"
gz2="$(_compress_if_exists SRR2934861_2 || true)"
gzs="$(_compress_if_exists SRR2934861 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_G08_GTTGGGTT.fq.gz
fi

fasterq-dump --split-files SRR2934862
gz1="$(_compress_if_exists SRR2934862_1 || true)"
gz2="$(_compress_if_exists SRR2934862_2 || true)"
gzs="$(_compress_if_exists SRR2934862 || true)"

fasterq-dump --split-files SRR2934863
gz1="$(_compress_if_exists SRR2934863_1 || true)"
gz2="$(_compress_if_exists SRR2934863_2 || true)"
gzs="$(_compress_if_exists SRR2934863 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_H04_GCACATGT.fq.gz
fi

fasterq-dump --split-files SRR2934864
gz1="$(_compress_if_exists SRR2934864_1 || true)"
gz2="$(_compress_if_exists SRR2934864_2 || true)"
gzs="$(_compress_if_exists SRR2934864 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_H06_TGACACTG.fq.gz
fi

fasterq-dump --split-files SRR2934865
gz1="$(_compress_if_exists SRR2934865_1 || true)"
gz2="$(_compress_if_exists SRR2934865_2 || true)"
gzs="$(_compress_if_exists SRR2934865 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-190_R279_L4_1_H10_GTGTTCGT.fq.gz
fi

fasterq-dump --split-files SRR2934866
gz1="$(_compress_if_exists SRR2934866_1 || true)"
gz2="$(_compress_if_exists SRR2934866_2 || true)"
gzs="$(_compress_if_exists SRR2934866 || true)"

fasterq-dump --split-files SRR2934867
gz1="$(_compress_if_exists SRR2934867_1 || true)"
gz2="$(_compress_if_exists SRR2934867_2 || true)"
gzs="$(_compress_if_exists SRR2934867 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_A02_GGTATTCA.fq.gz
fi

fasterq-dump --split-files SRR2934868
gz1="$(_compress_if_exists SRR2934868_1 || true)"
gz2="$(_compress_if_exists SRR2934868_2 || true)"
gzs="$(_compress_if_exists SRR2934868 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2934869
gz1="$(_compress_if_exists SRR2934869_1 || true)"
gz2="$(_compress_if_exists SRR2934869_2 || true)"
gzs="$(_compress_if_exists SRR2934869 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2934870
gz1="$(_compress_if_exists SRR2934870_1 || true)"
gz2="$(_compress_if_exists SRR2934870_2 || true)"
gzs="$(_compress_if_exists SRR2934870 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_A07_TATAGGAC.fq.gz
fi

fasterq-dump --split-files SRR2934871
gz1="$(_compress_if_exists SRR2934871_1 || true)"
gz2="$(_compress_if_exists SRR2934871_2 || true)"
gzs="$(_compress_if_exists SRR2934871 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_A08_TCCCATGG.fq.gz
fi

fasterq-dump --split-files SRR2934873
gz1="$(_compress_if_exists SRR2934873_1 || true)"
gz2="$(_compress_if_exists SRR2934873_2 || true)"
gzs="$(_compress_if_exists SRR2934873 || true)"

fasterq-dump --split-files SRR2934875
gz1="$(_compress_if_exists SRR2934875_1 || true)"
gz2="$(_compress_if_exists SRR2934875_2 || true)"
gzs="$(_compress_if_exists SRR2934875 || true)"

fasterq-dump --split-files SRR2934876
gz1="$(_compress_if_exists SRR2934876_1 || true)"
gz2="$(_compress_if_exists SRR2934876_2 || true)"
gzs="$(_compress_if_exists SRR2934876 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_B07_CAGCGTAG.fq.gz
fi

fasterq-dump --split-files SRR2934877
gz1="$(_compress_if_exists SRR2934877_1 || true)"
gz2="$(_compress_if_exists SRR2934877_2 || true)"
gzs="$(_compress_if_exists SRR2934877 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2934878
gz1="$(_compress_if_exists SRR2934878_1 || true)"
gz2="$(_compress_if_exists SRR2934878_2 || true)"
gzs="$(_compress_if_exists SRR2934878 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2934879
gz1="$(_compress_if_exists SRR2934879_1 || true)"
gz2="$(_compress_if_exists SRR2934879_2 || true)"
gzs="$(_compress_if_exists SRR2934879 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934880
gz1="$(_compress_if_exists SRR2934880_1 || true)"
gz2="$(_compress_if_exists SRR2934880_2 || true)"
gzs="$(_compress_if_exists SRR2934880 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2934881
gz1="$(_compress_if_exists SRR2934881_1 || true)"
gz2="$(_compress_if_exists SRR2934881_2 || true)"
gzs="$(_compress_if_exists SRR2934881 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_C02_TACCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2934882
gz1="$(_compress_if_exists SRR2934882_1 || true)"
gz2="$(_compress_if_exists SRR2934882_2 || true)"
gzs="$(_compress_if_exists SRR2934882 || true)"

fasterq-dump --split-files SRR2934883
gz1="$(_compress_if_exists SRR2934883_1 || true)"
gz2="$(_compress_if_exists SRR2934883_2 || true)"
gzs="$(_compress_if_exists SRR2934883 || true)"

fasterq-dump --split-files SRR2934884
gz1="$(_compress_if_exists SRR2934884_1 || true)"
gz2="$(_compress_if_exists SRR2934884_2 || true)"
gzs="$(_compress_if_exists SRR2934884 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_C09_GGAGTTAC.fq.gz
fi

fasterq-dump --split-files SRR2934885
gz1="$(_compress_if_exists SRR2934885_1 || true)"
gz2="$(_compress_if_exists SRR2934885_2 || true)"
gzs="$(_compress_if_exists SRR2934885 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2934886
gz1="$(_compress_if_exists SRR2934886_1 || true)"
gz2="$(_compress_if_exists SRR2934886_2 || true)"
gzs="$(_compress_if_exists SRR2934886 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_D03_CCTGTAAC.fq.gz
fi

fasterq-dump --split-files SRR2934887
gz1="$(_compress_if_exists SRR2934887_1 || true)"
gz2="$(_compress_if_exists SRR2934887_2 || true)"
gzs="$(_compress_if_exists SRR2934887 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_D06_GGATACGT.fq.gz
fi

fasterq-dump --split-files SRR2934888
gz1="$(_compress_if_exists SRR2934888_1 || true)"
gz2="$(_compress_if_exists SRR2934888_2 || true)"
gzs="$(_compress_if_exists SRR2934888 || true)"

fasterq-dump --split-files SRR2934889
gz1="$(_compress_if_exists SRR2934889_1 || true)"
gz2="$(_compress_if_exists SRR2934889_2 || true)"
gzs="$(_compress_if_exists SRR2934889 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2934890
gz1="$(_compress_if_exists SRR2934890_1 || true)"
gz2="$(_compress_if_exists SRR2934890_2 || true)"
gzs="$(_compress_if_exists SRR2934890 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_E04_AAGGAGCT.fq.gz
fi

fasterq-dump --split-files SRR2934891
gz1="$(_compress_if_exists SRR2934891_1 || true)"
gz2="$(_compress_if_exists SRR2934891_2 || true)"
gzs="$(_compress_if_exists SRR2934891 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_E05_GCTGAGGT.fq.gz
fi

fasterq-dump --split-files SRR2934892
gz1="$(_compress_if_exists SRR2934892_1 || true)"
gz2="$(_compress_if_exists SRR2934892_2 || true)"
gzs="$(_compress_if_exists SRR2934892 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_E07_ACAGCGAA.fq.gz
fi

fasterq-dump --split-files SRR2934893
gz1="$(_compress_if_exists SRR2934893_1 || true)"
gz2="$(_compress_if_exists SRR2934893_2 || true)"
gzs="$(_compress_if_exists SRR2934893 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_E10_AGTTGTGG.fq.gz
fi

fasterq-dump --split-files SRR2934894
gz1="$(_compress_if_exists SRR2934894_1 || true)"
gz2="$(_compress_if_exists SRR2934894_2 || true)"
gzs="$(_compress_if_exists SRR2934894 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_F03_GAACGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934895
gz1="$(_compress_if_exists SRR2934895_1 || true)"
gz2="$(_compress_if_exists SRR2934895_2 || true)"
gzs="$(_compress_if_exists SRR2934895 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_F04_TCGGGTGA.fq.gz
fi

fasterq-dump --split-files SRR2934896
gz1="$(_compress_if_exists SRR2934896_1 || true)"
gz2="$(_compress_if_exists SRR2934896_2 || true)"
gzs="$(_compress_if_exists SRR2934896 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2934898
gz1="$(_compress_if_exists SRR2934898_1 || true)"
gz2="$(_compress_if_exists SRR2934898_2 || true)"
gzs="$(_compress_if_exists SRR2934898 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_F08_GATTATGC.fq.gz
fi

fasterq-dump --split-files SRR2934899
gz1="$(_compress_if_exists SRR2934899_1 || true)"
gz2="$(_compress_if_exists SRR2934899_2 || true)"
gzs="$(_compress_if_exists SRR2934899 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2934900
gz1="$(_compress_if_exists SRR2934900_1 || true)"
gz2="$(_compress_if_exists SRR2934900_2 || true)"
gzs="$(_compress_if_exists SRR2934900 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_G09_CTCCAGGT.fq.gz
fi

fasterq-dump --split-files SRR2934901
gz1="$(_compress_if_exists SRR2934901_1 || true)"
gz2="$(_compress_if_exists SRR2934901_2 || true)"
gzs="$(_compress_if_exists SRR2934901 || true)"

fasterq-dump --split-files SRR2934902
gz1="$(_compress_if_exists SRR2934902_1 || true)"
gz2="$(_compress_if_exists SRR2934902_2 || true)"
gzs="$(_compress_if_exists SRR2934902 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_H02_TGTCAAAG.fq.gz
fi

fasterq-dump --split-files SRR2934903
gz1="$(_compress_if_exists SRR2934903_1 || true)"
gz2="$(_compress_if_exists SRR2934903_2 || true)"
gzs="$(_compress_if_exists SRR2934903 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_H03_AGCCACTT.fq.gz
fi

fasterq-dump --split-files SRR2934904
gz1="$(_compress_if_exists SRR2934904_1 || true)"
gz2="$(_compress_if_exists SRR2934904_2 || true)"
gzs="$(_compress_if_exists SRR2934904 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2934905
gz1="$(_compress_if_exists SRR2934905_1 || true)"
gz2="$(_compress_if_exists SRR2934905_2 || true)"
gzs="$(_compress_if_exists SRR2934905 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-194_R279_L3_1_H06_AATGACAG.fq.gz
fi

fasterq-dump --split-files SRR2934907
gz1="$(_compress_if_exists SRR2934907_1 || true)"
gz2="$(_compress_if_exists SRR2934907_2 || true)"
gzs="$(_compress_if_exists SRR2934907 || true)"

fasterq-dump --split-files SRR2934909
gz1="$(_compress_if_exists SRR2934909_1 || true)"
gz2="$(_compress_if_exists SRR2934909_2 || true)"
gzs="$(_compress_if_exists SRR2934909 || true)"

fasterq-dump --split-files SRR2934910
gz1="$(_compress_if_exists SRR2934910_1 || true)"
gz2="$(_compress_if_exists SRR2934910_2 || true)"
gzs="$(_compress_if_exists SRR2934910 || true)"

fasterq-dump --split-files SRR2934912
gz1="$(_compress_if_exists SRR2934912_1 || true)"
gz2="$(_compress_if_exists SRR2934912_2 || true)"
gzs="$(_compress_if_exists SRR2934912 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_B02_GTGAGATG.fq.gz
fi

fasterq-dump --split-files SRR2934913
gz1="$(_compress_if_exists SRR2934913_1 || true)"
gz2="$(_compress_if_exists SRR2934913_2 || true)"
gzs="$(_compress_if_exists SRR2934913 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934915
gz1="$(_compress_if_exists SRR2934915_1 || true)"
gz2="$(_compress_if_exists SRR2934915_2 || true)"
gzs="$(_compress_if_exists SRR2934915 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934916
gz1="$(_compress_if_exists SRR2934916_1 || true)"
gz2="$(_compress_if_exists SRR2934916_2 || true)"
gzs="$(_compress_if_exists SRR2934916 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2934917
gz1="$(_compress_if_exists SRR2934917_1 || true)"
gz2="$(_compress_if_exists SRR2934917_2 || true)"
gzs="$(_compress_if_exists SRR2934917 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2934918
gz1="$(_compress_if_exists SRR2934918_1 || true)"
gz2="$(_compress_if_exists SRR2934918_2 || true)"
gzs="$(_compress_if_exists SRR2934918 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2934919
gz1="$(_compress_if_exists SRR2934919_1 || true)"
gz2="$(_compress_if_exists SRR2934919_2 || true)"
gzs="$(_compress_if_exists SRR2934919 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2934920
gz1="$(_compress_if_exists SRR2934920_1 || true)"
gz2="$(_compress_if_exists SRR2934920_2 || true)"
gzs="$(_compress_if_exists SRR2934920 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_C10_GATTACCG.fq.gz
fi

fasterq-dump --split-files SRR2934921
gz1="$(_compress_if_exists SRR2934921_1 || true)"
gz2="$(_compress_if_exists SRR2934921_2 || true)"
gzs="$(_compress_if_exists SRR2934921 || true)"

fasterq-dump --split-files SRR2934922
gz1="$(_compress_if_exists SRR2934922_1 || true)"
gz2="$(_compress_if_exists SRR2934922_2 || true)"
gzs="$(_compress_if_exists SRR2934922 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_D07_TGCAGCTT.fq.gz
fi

fasterq-dump --split-files SRR2934923
gz1="$(_compress_if_exists SRR2934923_1 || true)"
gz2="$(_compress_if_exists SRR2934923_2 || true)"
gzs="$(_compress_if_exists SRR2934923 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_D09_TGAGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2934924
gz1="$(_compress_if_exists SRR2934924_1 || true)"
gz2="$(_compress_if_exists SRR2934924_2 || true)"
gzs="$(_compress_if_exists SRR2934924 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2934925
gz1="$(_compress_if_exists SRR2934925_1 || true)"
gz2="$(_compress_if_exists SRR2934925_2 || true)"
gzs="$(_compress_if_exists SRR2934925 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_E03_CCTCTAGA.fq.gz
fi

fasterq-dump --split-files SRR2934926
gz1="$(_compress_if_exists SRR2934926_1 || true)"
gz2="$(_compress_if_exists SRR2934926_2 || true)"
gzs="$(_compress_if_exists SRR2934926 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_E05_TGTCACTG.fq.gz
fi

fasterq-dump --split-files SRR2934927
gz1="$(_compress_if_exists SRR2934927_1 || true)"
gz2="$(_compress_if_exists SRR2934927_2 || true)"
gzs="$(_compress_if_exists SRR2934927 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_E06_CCGTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2934928
gz1="$(_compress_if_exists SRR2934928_1 || true)"
gz2="$(_compress_if_exists SRR2934928_2 || true)"
gzs="$(_compress_if_exists SRR2934928 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2934929
gz1="$(_compress_if_exists SRR2934929_1 || true)"
gz2="$(_compress_if_exists SRR2934929_2 || true)"
gzs="$(_compress_if_exists SRR2934929 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_F02_CATAACCC.fq.gz
fi

fasterq-dump --split-files SRR2934931
gz1="$(_compress_if_exists SRR2934931_1 || true)"
gz2="$(_compress_if_exists SRR2934931_2 || true)"
gzs="$(_compress_if_exists SRR2934931 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2934932
gz1="$(_compress_if_exists SRR2934932_1 || true)"
gz2="$(_compress_if_exists SRR2934932_2 || true)"
gzs="$(_compress_if_exists SRR2934932 || true)"

fasterq-dump --split-files SRR2934933
gz1="$(_compress_if_exists SRR2934933_1 || true)"
gz2="$(_compress_if_exists SRR2934933_2 || true)"
gzs="$(_compress_if_exists SRR2934933 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_G10_GCGAGATA.fq.gz
fi

fasterq-dump --split-files SRR2934934
gz1="$(_compress_if_exists SRR2934934_1 || true)"
gz2="$(_compress_if_exists SRR2934934_2 || true)"
gzs="$(_compress_if_exists SRR2934934 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_H05_AGCAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2934935
gz1="$(_compress_if_exists SRR2934935_1 || true)"
gz2="$(_compress_if_exists SRR2934935_2 || true)"
gzs="$(_compress_if_exists SRR2934935 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-195_R279_L3_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2934936
gz1="$(_compress_if_exists SRR2934936_1 || true)"
gz2="$(_compress_if_exists SRR2934936_2 || true)"
gzs="$(_compress_if_exists SRR2934936 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_A01_CTTTCTGG.fq.gz
fi

fasterq-dump --split-files SRR2934938
gz1="$(_compress_if_exists SRR2934938_1 || true)"
gz2="$(_compress_if_exists SRR2934938_2 || true)"
gzs="$(_compress_if_exists SRR2934938 || true)"

fasterq-dump --split-files SRR2934939
gz1="$(_compress_if_exists SRR2934939_1 || true)"
gz2="$(_compress_if_exists SRR2934939_2 || true)"
gzs="$(_compress_if_exists SRR2934939 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_A09_CTCACTAC.fq.gz
fi

fasterq-dump --split-files SRR2934940
gz1="$(_compress_if_exists SRR2934940_1 || true)"
gz2="$(_compress_if_exists SRR2934940_2 || true)"
gzs="$(_compress_if_exists SRR2934940 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_A11_TATCGCGA.fq.gz
fi

fasterq-dump --split-files SRR2934941
gz1="$(_compress_if_exists SRR2934941_1 || true)"
gz2="$(_compress_if_exists SRR2934941_2 || true)"
gzs="$(_compress_if_exists SRR2934941 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2934942
gz1="$(_compress_if_exists SRR2934942_1 || true)"
gz2="$(_compress_if_exists SRR2934942_2 || true)"
gzs="$(_compress_if_exists SRR2934942 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2934945
gz1="$(_compress_if_exists SRR2934945_1 || true)"
gz2="$(_compress_if_exists SRR2934945_2 || true)"
gzs="$(_compress_if_exists SRR2934945 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_C02_GTGACATG.fq.gz
fi

fasterq-dump --split-files SRR2934946
gz1="$(_compress_if_exists SRR2934946_1 || true)"
gz2="$(_compress_if_exists SRR2934946_2 || true)"
gzs="$(_compress_if_exists SRR2934946 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2934950
gz1="$(_compress_if_exists SRR2934950_1 || true)"
gz2="$(_compress_if_exists SRR2934950_2 || true)"
gzs="$(_compress_if_exists SRR2934950 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_D02_TGCTCCTT.fq.gz
fi

fasterq-dump --split-files SRR2934951
gz1="$(_compress_if_exists SRR2934951_1 || true)"
gz2="$(_compress_if_exists SRR2934951_2 || true)"
gzs="$(_compress_if_exists SRR2934951 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2934953
gz1="$(_compress_if_exists SRR2934953_1 || true)"
gz2="$(_compress_if_exists SRR2934953_2 || true)"
gzs="$(_compress_if_exists SRR2934953 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2934955
gz1="$(_compress_if_exists SRR2934955_1 || true)"
gz2="$(_compress_if_exists SRR2934955_2 || true)"
gzs="$(_compress_if_exists SRR2934955 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_E01_TCCATCCT.fq.gz
fi

fasterq-dump --split-files SRR2934956
gz1="$(_compress_if_exists SRR2934956_1 || true)"
gz2="$(_compress_if_exists SRR2934956_2 || true)"
gzs="$(_compress_if_exists SRR2934956 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2934957
gz1="$(_compress_if_exists SRR2934957_1 || true)"
gz2="$(_compress_if_exists SRR2934957_2 || true)"
gzs="$(_compress_if_exists SRR2934957 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_E09_CATCATCC.fq.gz
fi

fasterq-dump --split-files SRR2934958
gz1="$(_compress_if_exists SRR2934958_1 || true)"
gz2="$(_compress_if_exists SRR2934958_2 || true)"
gzs="$(_compress_if_exists SRR2934958 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_E10_TCCTGACT.fq.gz
fi

fasterq-dump --split-files SRR2934959
gz1="$(_compress_if_exists SRR2934959_1 || true)"
gz2="$(_compress_if_exists SRR2934959_2 || true)"
gzs="$(_compress_if_exists SRR2934959 || true)"

fasterq-dump --split-files SRR2934960
gz1="$(_compress_if_exists SRR2934960_1 || true)"
gz2="$(_compress_if_exists SRR2934960_2 || true)"
gzs="$(_compress_if_exists SRR2934960 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_F01_TCAACCGA.fq.gz
fi

fasterq-dump --split-files SRR2934962
gz1="$(_compress_if_exists SRR2934962_1 || true)"
gz2="$(_compress_if_exists SRR2934962_2 || true)"
gzs="$(_compress_if_exists SRR2934962 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2934963
gz1="$(_compress_if_exists SRR2934963_1 || true)"
gz2="$(_compress_if_exists SRR2934963_2 || true)"
gzs="$(_compress_if_exists SRR2934963 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2934964
gz1="$(_compress_if_exists SRR2934964_1 || true)"
gz2="$(_compress_if_exists SRR2934964_2 || true)"
gzs="$(_compress_if_exists SRR2934964 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_G01_CTCACAGA.fq.gz
fi

fasterq-dump --split-files SRR2934965
gz1="$(_compress_if_exists SRR2934965_1 || true)"
gz2="$(_compress_if_exists SRR2934965_2 || true)"
gzs="$(_compress_if_exists SRR2934965 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2934966
gz1="$(_compress_if_exists SRR2934966_1 || true)"
gz2="$(_compress_if_exists SRR2934966_2 || true)"
gzs="$(_compress_if_exists SRR2934966 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_G03_GGATAGTG.fq.gz
fi

fasterq-dump --split-files SRR2934967
gz1="$(_compress_if_exists SRR2934967_1 || true)"
gz2="$(_compress_if_exists SRR2934967_2 || true)"
gzs="$(_compress_if_exists SRR2934967 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2934968
gz1="$(_compress_if_exists SRR2934968_1 || true)"
gz2="$(_compress_if_exists SRR2934968_2 || true)"
gzs="$(_compress_if_exists SRR2934968 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_G11_TGTAGGGT.fq.gz
fi

fasterq-dump --split-files SRR2934969
gz1="$(_compress_if_exists SRR2934969_1 || true)"
gz2="$(_compress_if_exists SRR2934969_2 || true)"
gzs="$(_compress_if_exists SRR2934969 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772089-196_R279_L3_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2934972
gz1="$(_compress_if_exists SRR2934972_1 || true)"
gz2="$(_compress_if_exists SRR2934972_2 || true)"
gzs="$(_compress_if_exists SRR2934972 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_A05_ACCTCGTT.fq.gz
fi

fasterq-dump --split-files SRR2934973
gz1="$(_compress_if_exists SRR2934973_1 || true)"
gz2="$(_compress_if_exists SRR2934973_2 || true)"
gzs="$(_compress_if_exists SRR2934973 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_A06_CACGGTGT.fq.gz
fi

fasterq-dump --split-files SRR2934976
gz1="$(_compress_if_exists SRR2934976_1 || true)"
gz2="$(_compress_if_exists SRR2934976_2 || true)"
gzs="$(_compress_if_exists SRR2934976 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B03_CAGGACTC.fq.gz
fi

fasterq-dump --split-files SRR2934977
gz1="$(_compress_if_exists SRR2934977_1 || true)"
gz2="$(_compress_if_exists SRR2934977_2 || true)"
gzs="$(_compress_if_exists SRR2934977 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B04_ACTTTGCG.fq.gz
fi

fasterq-dump --split-files SRR2934978
gz1="$(_compress_if_exists SRR2934978_1 || true)"
gz2="$(_compress_if_exists SRR2934978_2 || true)"
gzs="$(_compress_if_exists SRR2934978 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B06_CGTTCTAC.fq.gz
fi

fasterq-dump --split-files SRR2934979
gz1="$(_compress_if_exists SRR2934979_1 || true)"
gz2="$(_compress_if_exists SRR2934979_2 || true)"
gzs="$(_compress_if_exists SRR2934979 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B07_CAGCGTAG.fq.gz
fi

fasterq-dump --split-files SRR2934980
gz1="$(_compress_if_exists SRR2934980_1 || true)"
gz2="$(_compress_if_exists SRR2934980_2 || true)"
gzs="$(_compress_if_exists SRR2934980 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2934981
gz1="$(_compress_if_exists SRR2934981_1 || true)"
gz2="$(_compress_if_exists SRR2934981_2 || true)"
gzs="$(_compress_if_exists SRR2934981 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2934982
gz1="$(_compress_if_exists SRR2934982_1 || true)"
gz2="$(_compress_if_exists SRR2934982_2 || true)"
gzs="$(_compress_if_exists SRR2934982 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2934983
gz1="$(_compress_if_exists SRR2934983_1 || true)"
gz2="$(_compress_if_exists SRR2934983_2 || true)"
gzs="$(_compress_if_exists SRR2934983 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2934984
gz1="$(_compress_if_exists SRR2934984_1 || true)"
gz2="$(_compress_if_exists SRR2934984_2 || true)"
gzs="$(_compress_if_exists SRR2934984 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_C02_TACCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2934985
gz1="$(_compress_if_exists SRR2934985_1 || true)"
gz2="$(_compress_if_exists SRR2934985_2 || true)"
gzs="$(_compress_if_exists SRR2934985 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2934987
gz1="$(_compress_if_exists SRR2934987_1 || true)"
gz2="$(_compress_if_exists SRR2934987_2 || true)"
gzs="$(_compress_if_exists SRR2934987 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_C08_CTACCCTC.fq.gz
fi

fasterq-dump --split-files SRR2934989
gz1="$(_compress_if_exists SRR2934989_1 || true)"
gz2="$(_compress_if_exists SRR2934989_2 || true)"
gzs="$(_compress_if_exists SRR2934989 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_D02_CCTATCGT.fq.gz
fi

fasterq-dump --split-files SRR2934990
gz1="$(_compress_if_exists SRR2934990_1 || true)"
gz2="$(_compress_if_exists SRR2934990_2 || true)"
gzs="$(_compress_if_exists SRR2934990 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_D04_CTAATGAC.fq.gz
fi

fasterq-dump --split-files SRR2934991
gz1="$(_compress_if_exists SRR2934991_1 || true)"
gz2="$(_compress_if_exists SRR2934991_2 || true)"
gzs="$(_compress_if_exists SRR2934991 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_D08_TTCACCCG.fq.gz
fi

fasterq-dump --split-files SRR2934992
gz1="$(_compress_if_exists SRR2934992_1 || true)"
gz2="$(_compress_if_exists SRR2934992_2 || true)"
gzs="$(_compress_if_exists SRR2934992 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_D09_CACTTCCG.fq.gz
fi

fasterq-dump --split-files SRR2934993
gz1="$(_compress_if_exists SRR2934993_1 || true)"
gz2="$(_compress_if_exists SRR2934993_2 || true)"
gzs="$(_compress_if_exists SRR2934993 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_D11_CGACTATG.fq.gz
fi

fasterq-dump --split-files SRR2934994
gz1="$(_compress_if_exists SRR2934994_1 || true)"
gz2="$(_compress_if_exists SRR2934994_2 || true)"
gzs="$(_compress_if_exists SRR2934994 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_E01_CGCTAAAT.fq.gz
fi

fasterq-dump --split-files SRR2934995
gz1="$(_compress_if_exists SRR2934995_1 || true)"
gz2="$(_compress_if_exists SRR2934995_2 || true)"
gzs="$(_compress_if_exists SRR2934995 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_E02_TCGACATC.fq.gz
fi

fasterq-dump --split-files SRR2934996
gz1="$(_compress_if_exists SRR2934996_1 || true)"
gz2="$(_compress_if_exists SRR2934996_2 || true)"
gzs="$(_compress_if_exists SRR2934996 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_E09_GTACTCGG.fq.gz
fi

fasterq-dump --split-files SRR2934997
gz1="$(_compress_if_exists SRR2934997_1 || true)"
gz2="$(_compress_if_exists SRR2934997_2 || true)"
gzs="$(_compress_if_exists SRR2934997 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2934998
gz1="$(_compress_if_exists SRR2934998_1 || true)"
gz2="$(_compress_if_exists SRR2934998_2 || true)"
gzs="$(_compress_if_exists SRR2934998 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2934999
gz1="$(_compress_if_exists SRR2934999_1 || true)"
gz2="$(_compress_if_exists SRR2934999_2 || true)"
gzs="$(_compress_if_exists SRR2934999 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_F02_ACCCGTAA.fq.gz
fi

fasterq-dump --split-files SRR2935000
gz1="$(_compress_if_exists SRR2935000_1 || true)"
gz2="$(_compress_if_exists SRR2935000_2 || true)"
gzs="$(_compress_if_exists SRR2935000 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2935001
gz1="$(_compress_if_exists SRR2935001_1 || true)"
gz2="$(_compress_if_exists SRR2935001_2 || true)"
gzs="$(_compress_if_exists SRR2935001 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_F09_ATTGCGTC.fq.gz
fi

fasterq-dump --split-files SRR2935002
gz1="$(_compress_if_exists SRR2935002_1 || true)"
gz2="$(_compress_if_exists SRR2935002_2 || true)"
gzs="$(_compress_if_exists SRR2935002 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_G04_GTGGCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935004
gz1="$(_compress_if_exists SRR2935004_1 || true)"
gz2="$(_compress_if_exists SRR2935004_2 || true)"
gzs="$(_compress_if_exists SRR2935004 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2935005
gz1="$(_compress_if_exists SRR2935005_1 || true)"
gz2="$(_compress_if_exists SRR2935005_2 || true)"
gzs="$(_compress_if_exists SRR2935005 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2935006
gz1="$(_compress_if_exists SRR2935006_1 || true)"
gz2="$(_compress_if_exists SRR2935006_2 || true)"
gzs="$(_compress_if_exists SRR2935006 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_H05_CGGAGTTA.fq.gz
fi

fasterq-dump --split-files SRR2935008
gz1="$(_compress_if_exists SRR2935008_1 || true)"
gz2="$(_compress_if_exists SRR2935008_2 || true)"
gzs="$(_compress_if_exists SRR2935008 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-004_R279_L5_1_H10_TATGCTCA.fq.gz
fi

fasterq-dump --split-files SRR2935010
gz1="$(_compress_if_exists SRR2935010_1 || true)"
gz2="$(_compress_if_exists SRR2935010_2 || true)"
gzs="$(_compress_if_exists SRR2935010 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_A02_TAGCGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935012
gz1="$(_compress_if_exists SRR2935012_1 || true)"
gz2="$(_compress_if_exists SRR2935012_2 || true)"
gzs="$(_compress_if_exists SRR2935012 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2935013
gz1="$(_compress_if_exists SRR2935013_1 || true)"
gz2="$(_compress_if_exists SRR2935013_2 || true)"
gzs="$(_compress_if_exists SRR2935013 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2935014
gz1="$(_compress_if_exists SRR2935014_1 || true)"
gz2="$(_compress_if_exists SRR2935014_2 || true)"
gzs="$(_compress_if_exists SRR2935014 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2935015
gz1="$(_compress_if_exists SRR2935015_1 || true)"
gz2="$(_compress_if_exists SRR2935015_2 || true)"
gzs="$(_compress_if_exists SRR2935015 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2935016
gz1="$(_compress_if_exists SRR2935016_1 || true)"
gz2="$(_compress_if_exists SRR2935016_2 || true)"
gzs="$(_compress_if_exists SRR2935016 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_A10_ACAGACTC.fq.gz
fi

fasterq-dump --split-files SRR2935018
gz1="$(_compress_if_exists SRR2935018_1 || true)"
gz2="$(_compress_if_exists SRR2935018_2 || true)"
gzs="$(_compress_if_exists SRR2935018 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_B01_CCCTTGTA.fq.gz
fi

fasterq-dump --split-files SRR2935019
gz1="$(_compress_if_exists SRR2935019_1 || true)"
gz2="$(_compress_if_exists SRR2935019_2 || true)"
gzs="$(_compress_if_exists SRR2935019 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_B02_GTGAGATG.fq.gz
fi

fasterq-dump --split-files SRR2935020
gz1="$(_compress_if_exists SRR2935020_1 || true)"
gz2="$(_compress_if_exists SRR2935020_2 || true)"
gzs="$(_compress_if_exists SRR2935020 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_B06_CTGATACG.fq.gz
fi

fasterq-dump --split-files SRR2935021
gz1="$(_compress_if_exists SRR2935021_1 || true)"
gz2="$(_compress_if_exists SRR2935021_2 || true)"
gzs="$(_compress_if_exists SRR2935021 || true)"

fasterq-dump --split-files SRR2935022
gz1="$(_compress_if_exists SRR2935022_1 || true)"
gz2="$(_compress_if_exists SRR2935022_2 || true)"
gzs="$(_compress_if_exists SRR2935022 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2935023
gz1="$(_compress_if_exists SRR2935023_1 || true)"
gz2="$(_compress_if_exists SRR2935023_2 || true)"
gzs="$(_compress_if_exists SRR2935023 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2935024
gz1="$(_compress_if_exists SRR2935024_1 || true)"
gz2="$(_compress_if_exists SRR2935024_2 || true)"
gzs="$(_compress_if_exists SRR2935024 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2935025
gz1="$(_compress_if_exists SRR2935025_1 || true)"
gz2="$(_compress_if_exists SRR2935025_2 || true)"
gzs="$(_compress_if_exists SRR2935025 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_C01_AGTAGTCC.fq.gz
fi

fasterq-dump --split-files SRR2935026
gz1="$(_compress_if_exists SRR2935026_1 || true)"
gz2="$(_compress_if_exists SRR2935026_2 || true)"
gzs="$(_compress_if_exists SRR2935026 || true)"

fasterq-dump --split-files SRR2935027
gz1="$(_compress_if_exists SRR2935027_1 || true)"
gz2="$(_compress_if_exists SRR2935027_2 || true)"
gzs="$(_compress_if_exists SRR2935027 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_C04_AGCTAGGA.fq.gz
fi

fasterq-dump --split-files SRR2935029
gz1="$(_compress_if_exists SRR2935029_1 || true)"
gz2="$(_compress_if_exists SRR2935029_2 || true)"
gzs="$(_compress_if_exists SRR2935029 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D01_TCTAGGGA.fq.gz
fi

fasterq-dump --split-files SRR2935030
gz1="$(_compress_if_exists SRR2935030_1 || true)"
gz2="$(_compress_if_exists SRR2935030_2 || true)"
gzs="$(_compress_if_exists SRR2935030 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D02_TTAGCCAG.fq.gz
fi

fasterq-dump --split-files SRR2935031
gz1="$(_compress_if_exists SRR2935031_1 || true)"
gz2="$(_compress_if_exists SRR2935031_2 || true)"
gzs="$(_compress_if_exists SRR2935031 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D03_CGTGGATA.fq.gz
fi

fasterq-dump --split-files SRR2935032
gz1="$(_compress_if_exists SRR2935032_1 || true)"
gz2="$(_compress_if_exists SRR2935032_2 || true)"
gzs="$(_compress_if_exists SRR2935032 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D05_TGCACAAG.fq.gz
fi

fasterq-dump --split-files SRR2935035
gz1="$(_compress_if_exists SRR2935035_1 || true)"
gz2="$(_compress_if_exists SRR2935035_2 || true)"
gzs="$(_compress_if_exists SRR2935035 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D09_TGAGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935036
gz1="$(_compress_if_exists SRR2935036_1 || true)"
gz2="$(_compress_if_exists SRR2935036_2 || true)"
gzs="$(_compress_if_exists SRR2935036 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2935037
gz1="$(_compress_if_exists SRR2935037_1 || true)"
gz2="$(_compress_if_exists SRR2935037_2 || true)"
gzs="$(_compress_if_exists SRR2935037 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_D11_CCACTTTG.fq.gz
fi

fasterq-dump --split-files SRR2935038
gz1="$(_compress_if_exists SRR2935038_1 || true)"
gz2="$(_compress_if_exists SRR2935038_2 || true)"
gzs="$(_compress_if_exists SRR2935038 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_E01_CTGCTCAT.fq.gz
fi

fasterq-dump --split-files SRR2935039
gz1="$(_compress_if_exists SRR2935039_1 || true)"
gz2="$(_compress_if_exists SRR2935039_2 || true)"
gzs="$(_compress_if_exists SRR2935039 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_E02_GAGCAATC.fq.gz
fi

fasterq-dump --split-files SRR2935041
gz1="$(_compress_if_exists SRR2935041_1 || true)"
gz2="$(_compress_if_exists SRR2935041_2 || true)"
gzs="$(_compress_if_exists SRR2935041 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_E04_CAGTACGT.fq.gz
fi

fasterq-dump --split-files SRR2935042
gz1="$(_compress_if_exists SRR2935042_1 || true)"
gz2="$(_compress_if_exists SRR2935042_2 || true)"
gzs="$(_compress_if_exists SRR2935042 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2935043
gz1="$(_compress_if_exists SRR2935043_1 || true)"
gz2="$(_compress_if_exists SRR2935043_2 || true)"
gzs="$(_compress_if_exists SRR2935043 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F01_CAGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935044
gz1="$(_compress_if_exists SRR2935044_1 || true)"
gz2="$(_compress_if_exists SRR2935044_2 || true)"
gzs="$(_compress_if_exists SRR2935044 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F03_ACGATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935045
gz1="$(_compress_if_exists SRR2935045_1 || true)"
gz2="$(_compress_if_exists SRR2935045_2 || true)"
gzs="$(_compress_if_exists SRR2935045 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2935046
gz1="$(_compress_if_exists SRR2935046_1 || true)"
gz2="$(_compress_if_exists SRR2935046_2 || true)"
gzs="$(_compress_if_exists SRR2935046 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F05_AAGAGCGT.fq.gz
fi

fasterq-dump --split-files SRR2935047
gz1="$(_compress_if_exists SRR2935047_1 || true)"
gz2="$(_compress_if_exists SRR2935047_2 || true)"
gzs="$(_compress_if_exists SRR2935047 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F06_CATTCTCG.fq.gz
fi

fasterq-dump --split-files SRR2935048
gz1="$(_compress_if_exists SRR2935048_1 || true)"
gz2="$(_compress_if_exists SRR2935048_2 || true)"
gzs="$(_compress_if_exists SRR2935048 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F08_CACTGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935049
gz1="$(_compress_if_exists SRR2935049_1 || true)"
gz2="$(_compress_if_exists SRR2935049_2 || true)"
gzs="$(_compress_if_exists SRR2935049 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F09_CAACCGAT.fq.gz
fi

fasterq-dump --split-files SRR2935050
gz1="$(_compress_if_exists SRR2935050_1 || true)"
gz2="$(_compress_if_exists SRR2935050_2 || true)"
gzs="$(_compress_if_exists SRR2935050 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2935051
gz1="$(_compress_if_exists SRR2935051_1 || true)"
gz2="$(_compress_if_exists SRR2935051_2 || true)"
gzs="$(_compress_if_exists SRR2935051 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_G01_ACAGTCAG.fq.gz
fi

fasterq-dump --split-files SRR2935052
gz1="$(_compress_if_exists SRR2935052_1 || true)"
gz2="$(_compress_if_exists SRR2935052_2 || true)"
gzs="$(_compress_if_exists SRR2935052 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935053
gz1="$(_compress_if_exists SRR2935053_1 || true)"
gz2="$(_compress_if_exists SRR2935053_2 || true)"
gzs="$(_compress_if_exists SRR2935053 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_G07_TTGTCCCT.fq.gz
fi

fasterq-dump --split-files SRR2935054
gz1="$(_compress_if_exists SRR2935054_1 || true)"
gz2="$(_compress_if_exists SRR2935054_2 || true)"
gzs="$(_compress_if_exists SRR2935054 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2935055
gz1="$(_compress_if_exists SRR2935055_1 || true)"
gz2="$(_compress_if_exists SRR2935055_2 || true)"
gzs="$(_compress_if_exists SRR2935055 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_H03_CGAGACTT.fq.gz
fi

fasterq-dump --split-files SRR2935056
gz1="$(_compress_if_exists SRR2935056_1 || true)"
gz2="$(_compress_if_exists SRR2935056_2 || true)"
gzs="$(_compress_if_exists SRR2935056 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_H04_TGCCGATT.fq.gz
fi

fasterq-dump --split-files SRR2935057
gz1="$(_compress_if_exists SRR2935057_1 || true)"
gz2="$(_compress_if_exists SRR2935057_2 || true)"
gzs="$(_compress_if_exists SRR2935057 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2935058
gz1="$(_compress_if_exists SRR2935058_1 || true)"
gz2="$(_compress_if_exists SRR2935058_2 || true)"
gzs="$(_compress_if_exists SRR2935058 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-005_R279_L5_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2935059
gz1="$(_compress_if_exists SRR2935059_1 || true)"
gz2="$(_compress_if_exists SRR2935059_2 || true)"
gzs="$(_compress_if_exists SRR2935059 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A01_CTTTCTGG.fq.gz
fi

fasterq-dump --split-files SRR2935061
gz1="$(_compress_if_exists SRR2935061_1 || true)"
gz2="$(_compress_if_exists SRR2935061_2 || true)"
gzs="$(_compress_if_exists SRR2935061 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A05_GCTTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935062
gz1="$(_compress_if_exists SRR2935062_1 || true)"
gz2="$(_compress_if_exists SRR2935062_2 || true)"
gzs="$(_compress_if_exists SRR2935062 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A07_TGAGGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935063
gz1="$(_compress_if_exists SRR2935063_1 || true)"
gz2="$(_compress_if_exists SRR2935063_2 || true)"
gzs="$(_compress_if_exists SRR2935063 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A08_AGCTACCA.fq.gz
fi

fasterq-dump --split-files SRR2935064
gz1="$(_compress_if_exists SRR2935064_1 || true)"
gz2="$(_compress_if_exists SRR2935064_2 || true)"
gzs="$(_compress_if_exists SRR2935064 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935065
gz1="$(_compress_if_exists SRR2935065_1 || true)"
gz2="$(_compress_if_exists SRR2935065_2 || true)"
gzs="$(_compress_if_exists SRR2935065 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A11_TATCGCGA.fq.gz
fi

fasterq-dump --split-files SRR2935066
gz1="$(_compress_if_exists SRR2935066_1 || true)"
gz2="$(_compress_if_exists SRR2935066_2 || true)"
gzs="$(_compress_if_exists SRR2935066 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_A12_CCATTAGC.fq.gz
fi

fasterq-dump --split-files SRR2935067
gz1="$(_compress_if_exists SRR2935067_1 || true)"
gz2="$(_compress_if_exists SRR2935067_2 || true)"
gzs="$(_compress_if_exists SRR2935067 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2935068
gz1="$(_compress_if_exists SRR2935068_1 || true)"
gz2="$(_compress_if_exists SRR2935068_2 || true)"
gzs="$(_compress_if_exists SRR2935068 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935069
gz1="$(_compress_if_exists SRR2935069_1 || true)"
gz2="$(_compress_if_exists SRR2935069_2 || true)"
gzs="$(_compress_if_exists SRR2935069 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2935070
gz1="$(_compress_if_exists SRR2935070_1 || true)"
gz2="$(_compress_if_exists SRR2935070_2 || true)"
gzs="$(_compress_if_exists SRR2935070 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935071
gz1="$(_compress_if_exists SRR2935071_1 || true)"
gz2="$(_compress_if_exists SRR2935071_2 || true)"
gzs="$(_compress_if_exists SRR2935071 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_B07_TGTTCGGA.fq.gz
fi

fasterq-dump --split-files SRR2935073
gz1="$(_compress_if_exists SRR2935073_1 || true)"
gz2="$(_compress_if_exists SRR2935073_2 || true)"
gzs="$(_compress_if_exists SRR2935073 || true)"

fasterq-dump --split-files SRR2935075
gz1="$(_compress_if_exists SRR2935075_1 || true)"
gz2="$(_compress_if_exists SRR2935075_2 || true)"
gzs="$(_compress_if_exists SRR2935075 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_C02_GTGACATG.fq.gz
fi

fasterq-dump --split-files SRR2935077
gz1="$(_compress_if_exists SRR2935077_1 || true)"
gz2="$(_compress_if_exists SRR2935077_2 || true)"
gzs="$(_compress_if_exists SRR2935077 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935078
gz1="$(_compress_if_exists SRR2935078_1 || true)"
gz2="$(_compress_if_exists SRR2935078_2 || true)"
gzs="$(_compress_if_exists SRR2935078 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_C06_CAGAGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935079
gz1="$(_compress_if_exists SRR2935079_1 || true)"
gz2="$(_compress_if_exists SRR2935079_2 || true)"
gzs="$(_compress_if_exists SRR2935079 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935080
gz1="$(_compress_if_exists SRR2935080_1 || true)"
gz2="$(_compress_if_exists SRR2935080_2 || true)"
gzs="$(_compress_if_exists SRR2935080 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935081
gz1="$(_compress_if_exists SRR2935081_1 || true)"
gz2="$(_compress_if_exists SRR2935081_2 || true)"
gzs="$(_compress_if_exists SRR2935081 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2935082
gz1="$(_compress_if_exists SRR2935082_1 || true)"
gz2="$(_compress_if_exists SRR2935082_2 || true)"
gzs="$(_compress_if_exists SRR2935082 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935083
gz1="$(_compress_if_exists SRR2935083_1 || true)"
gz2="$(_compress_if_exists SRR2935083_2 || true)"
gzs="$(_compress_if_exists SRR2935083 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2935084
gz1="$(_compress_if_exists SRR2935084_1 || true)"
gz2="$(_compress_if_exists SRR2935084_2 || true)"
gzs="$(_compress_if_exists SRR2935084 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2935085
gz1="$(_compress_if_exists SRR2935085_1 || true)"
gz2="$(_compress_if_exists SRR2935085_2 || true)"
gzs="$(_compress_if_exists SRR2935085 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2935086
gz1="$(_compress_if_exists SRR2935086_1 || true)"
gz2="$(_compress_if_exists SRR2935086_2 || true)"
gzs="$(_compress_if_exists SRR2935086 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E03_GAAGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935087
gz1="$(_compress_if_exists SRR2935087_1 || true)"
gz2="$(_compress_if_exists SRR2935087_2 || true)"
gzs="$(_compress_if_exists SRR2935087 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935088
gz1="$(_compress_if_exists SRR2935088_1 || true)"
gz2="$(_compress_if_exists SRR2935088_2 || true)"
gzs="$(_compress_if_exists SRR2935088 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2935089
gz1="$(_compress_if_exists SRR2935089_1 || true)"
gz2="$(_compress_if_exists SRR2935089_2 || true)"
gzs="$(_compress_if_exists SRR2935089 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E07_ATGGACTG.fq.gz
fi

fasterq-dump --split-files SRR2935090
gz1="$(_compress_if_exists SRR2935090_1 || true)"
gz2="$(_compress_if_exists SRR2935090_2 || true)"
gzs="$(_compress_if_exists SRR2935090 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2935091
gz1="$(_compress_if_exists SRR2935091_1 || true)"
gz2="$(_compress_if_exists SRR2935091_2 || true)"
gzs="$(_compress_if_exists SRR2935091 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E10_TCCTGACT.fq.gz
fi

fasterq-dump --split-files SRR2935092
gz1="$(_compress_if_exists SRR2935092_1 || true)"
gz2="$(_compress_if_exists SRR2935092_2 || true)"
gzs="$(_compress_if_exists SRR2935092 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E11_CTTTGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935093
gz1="$(_compress_if_exists SRR2935093_1 || true)"
gz2="$(_compress_if_exists SRR2935093_2 || true)"
gzs="$(_compress_if_exists SRR2935093 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_E12_CTTCTTGC.fq.gz
fi

fasterq-dump --split-files SRR2935094
gz1="$(_compress_if_exists SRR2935094_1 || true)"
gz2="$(_compress_if_exists SRR2935094_2 || true)"
gzs="$(_compress_if_exists SRR2935094 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F01_TCAACCGA.fq.gz
fi

fasterq-dump --split-files SRR2935095
gz1="$(_compress_if_exists SRR2935095_1 || true)"
gz2="$(_compress_if_exists SRR2935095_2 || true)"
gzs="$(_compress_if_exists SRR2935095 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F02_CATGGTTG.fq.gz
fi

fasterq-dump --split-files SRR2935097
gz1="$(_compress_if_exists SRR2935097_1 || true)"
gz2="$(_compress_if_exists SRR2935097_2 || true)"
gzs="$(_compress_if_exists SRR2935097 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F05_CGATTGGA.fq.gz
fi

fasterq-dump --split-files SRR2935098
gz1="$(_compress_if_exists SRR2935098_1 || true)"
gz2="$(_compress_if_exists SRR2935098_2 || true)"
gzs="$(_compress_if_exists SRR2935098 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935099
gz1="$(_compress_if_exists SRR2935099_1 || true)"
gz2="$(_compress_if_exists SRR2935099_2 || true)"
gzs="$(_compress_if_exists SRR2935099 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F07_GTAAGTCG.fq.gz
fi

fasterq-dump --split-files SRR2935100
gz1="$(_compress_if_exists SRR2935100_1 || true)"
gz2="$(_compress_if_exists SRR2935100_2 || true)"
gzs="$(_compress_if_exists SRR2935100 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2935101
gz1="$(_compress_if_exists SRR2935101_1 || true)"
gz2="$(_compress_if_exists SRR2935101_2 || true)"
gzs="$(_compress_if_exists SRR2935101 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_F11_AGAAGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935102
gz1="$(_compress_if_exists SRR2935102_1 || true)"
gz2="$(_compress_if_exists SRR2935102_2 || true)"
gzs="$(_compress_if_exists SRR2935102 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G01_CTCACAGA.fq.gz
fi

fasterq-dump --split-files SRR2935103
gz1="$(_compress_if_exists SRR2935103_1 || true)"
gz2="$(_compress_if_exists SRR2935103_2 || true)"
gzs="$(_compress_if_exists SRR2935103 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2935104
gz1="$(_compress_if_exists SRR2935104_1 || true)"
gz2="$(_compress_if_exists SRR2935104_2 || true)"
gzs="$(_compress_if_exists SRR2935104 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G03_GGATAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935105
gz1="$(_compress_if_exists SRR2935105_1 || true)"
gz2="$(_compress_if_exists SRR2935105_2 || true)"
gzs="$(_compress_if_exists SRR2935105 || true)"

fasterq-dump --split-files SRR2935106
gz1="$(_compress_if_exists SRR2935106_1 || true)"
gz2="$(_compress_if_exists SRR2935106_2 || true)"
gzs="$(_compress_if_exists SRR2935106 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2935107
gz1="$(_compress_if_exists SRR2935107_1 || true)"
gz2="$(_compress_if_exists SRR2935107_2 || true)"
gzs="$(_compress_if_exists SRR2935107 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935108
gz1="$(_compress_if_exists SRR2935108_1 || true)"
gz2="$(_compress_if_exists SRR2935108_2 || true)"
gzs="$(_compress_if_exists SRR2935108 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G10_AGTCTCCT.fq.gz
fi

fasterq-dump --split-files SRR2935109
gz1="$(_compress_if_exists SRR2935109_1 || true)"
gz2="$(_compress_if_exists SRR2935109_2 || true)"
gzs="$(_compress_if_exists SRR2935109 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_G11_TGTAGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935110
gz1="$(_compress_if_exists SRR2935110_1 || true)"
gz2="$(_compress_if_exists SRR2935110_2 || true)"
gzs="$(_compress_if_exists SRR2935110 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935111
gz1="$(_compress_if_exists SRR2935111_1 || true)"
gz2="$(_compress_if_exists SRR2935111_2 || true)"
gzs="$(_compress_if_exists SRR2935111 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_H03_CGGATTAC.fq.gz
fi

fasterq-dump --split-files SRR2935112
gz1="$(_compress_if_exists SRR2935112_1 || true)"
gz2="$(_compress_if_exists SRR2935112_2 || true)"
gzs="$(_compress_if_exists SRR2935112 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_H06_CTGACCTT.fq.gz
fi

fasterq-dump --split-files SRR2935113
gz1="$(_compress_if_exists SRR2935113_1 || true)"
gz2="$(_compress_if_exists SRR2935113_2 || true)"
gzs="$(_compress_if_exists SRR2935113 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_H10_ATCGGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935114
gz1="$(_compress_if_exists SRR2935114_1 || true)"
gz2="$(_compress_if_exists SRR2935114_2 || true)"
gzs="$(_compress_if_exists SRR2935114 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-008_R278_L4_1_H11_AAGGACGA.fq.gz
fi

fasterq-dump --split-files SRR2935115
gz1="$(_compress_if_exists SRR2935115_1 || true)"
gz2="$(_compress_if_exists SRR2935115_2 || true)"
gzs="$(_compress_if_exists SRR2935115 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2935116
gz1="$(_compress_if_exists SRR2935116_1 || true)"
gz2="$(_compress_if_exists SRR2935116_2 || true)"
gzs="$(_compress_if_exists SRR2935116 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_A02_TTAGCTCC.fq.gz
fi

fasterq-dump --split-files SRR2935119
gz1="$(_compress_if_exists SRR2935119_1 || true)"
gz2="$(_compress_if_exists SRR2935119_2 || true)"
gzs="$(_compress_if_exists SRR2935119 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2935120
gz1="$(_compress_if_exists SRR2935120_1 || true)"
gz2="$(_compress_if_exists SRR2935120_2 || true)"
gzs="$(_compress_if_exists SRR2935120 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_A10_CGGTTTGT.fq.gz
fi

fasterq-dump --split-files SRR2935121
gz1="$(_compress_if_exists SRR2935121_1 || true)"
gz2="$(_compress_if_exists SRR2935121_2 || true)"
gzs="$(_compress_if_exists SRR2935121 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_A12_AAACGACG.fq.gz
fi

fasterq-dump --split-files SRR2935122
gz1="$(_compress_if_exists SRR2935122_1 || true)"
gz2="$(_compress_if_exists SRR2935122_2 || true)"
gzs="$(_compress_if_exists SRR2935122 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_B01_AGACGAGA.fq.gz
fi

fasterq-dump --split-files SRR2935124
gz1="$(_compress_if_exists SRR2935124_1 || true)"
gz2="$(_compress_if_exists SRR2935124_2 || true)"
gzs="$(_compress_if_exists SRR2935124 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_B06_TCTACAGG.fq.gz
fi

fasterq-dump --split-files SRR2935125
gz1="$(_compress_if_exists SRR2935125_1 || true)"
gz2="$(_compress_if_exists SRR2935125_2 || true)"
gzs="$(_compress_if_exists SRR2935125 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_B09_TAGTCACC.fq.gz
fi

fasterq-dump --split-files SRR2935126
gz1="$(_compress_if_exists SRR2935126_1 || true)"
gz2="$(_compress_if_exists SRR2935126_2 || true)"
gzs="$(_compress_if_exists SRR2935126 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_B12_ATAGCAGG.fq.gz
fi

fasterq-dump --split-files SRR2935128
gz1="$(_compress_if_exists SRR2935128_1 || true)"
gz2="$(_compress_if_exists SRR2935128_2 || true)"
gzs="$(_compress_if_exists SRR2935128 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_C02_CGAGAACT.fq.gz
fi

fasterq-dump --split-files SRR2935129
gz1="$(_compress_if_exists SRR2935129_1 || true)"
gz2="$(_compress_if_exists SRR2935129_2 || true)"
gzs="$(_compress_if_exists SRR2935129 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_C05_ACCCTCTA.fq.gz
fi

fasterq-dump --split-files SRR2935130
gz1="$(_compress_if_exists SRR2935130_1 || true)"
gz2="$(_compress_if_exists SRR2935130_2 || true)"
gzs="$(_compress_if_exists SRR2935130 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_C09_CACTAACC.fq.gz
fi

fasterq-dump --split-files SRR2935131
gz1="$(_compress_if_exists SRR2935131_1 || true)"
gz2="$(_compress_if_exists SRR2935131_2 || true)"
gzs="$(_compress_if_exists SRR2935131 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_D02_TCCTTGGT.fq.gz
fi

fasterq-dump --split-files SRR2935133
gz1="$(_compress_if_exists SRR2935133_1 || true)"
gz2="$(_compress_if_exists SRR2935133_2 || true)"
gzs="$(_compress_if_exists SRR2935133 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_D06_GGTAAGAC.fq.gz
fi

fasterq-dump --split-files SRR2935135
gz1="$(_compress_if_exists SRR2935135_1 || true)"
gz2="$(_compress_if_exists SRR2935135_2 || true)"
gzs="$(_compress_if_exists SRR2935135 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_D09_TTGCTTCG.fq.gz
fi

fasterq-dump --split-files SRR2935136
gz1="$(_compress_if_exists SRR2935136_1 || true)"
gz2="$(_compress_if_exists SRR2935136_2 || true)"
gzs="$(_compress_if_exists SRR2935136 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_D10_TACTAGGG.fq.gz
fi

fasterq-dump --split-files SRR2935138
gz1="$(_compress_if_exists SRR2935138_1 || true)"
gz2="$(_compress_if_exists SRR2935138_2 || true)"
gzs="$(_compress_if_exists SRR2935138 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_E01_TCGTGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935139
gz1="$(_compress_if_exists SRR2935139_1 || true)"
gz2="$(_compress_if_exists SRR2935139_2 || true)"
gzs="$(_compress_if_exists SRR2935139 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_E02_ATACGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935141
gz1="$(_compress_if_exists SRR2935141_1 || true)"
gz2="$(_compress_if_exists SRR2935141_2 || true)"
gzs="$(_compress_if_exists SRR2935141 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2935142
gz1="$(_compress_if_exists SRR2935142_1 || true)"
gz2="$(_compress_if_exists SRR2935142_2 || true)"
gzs="$(_compress_if_exists SRR2935142 || true)"

fasterq-dump --split-files SRR2935145
gz1="$(_compress_if_exists SRR2935145_1 || true)"
gz2="$(_compress_if_exists SRR2935145_2 || true)"
gzs="$(_compress_if_exists SRR2935145 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_E12_TAGAGGTG.fq.gz
fi

fasterq-dump --split-files SRR2935146
gz1="$(_compress_if_exists SRR2935146_1 || true)"
gz2="$(_compress_if_exists SRR2935146_2 || true)"
gzs="$(_compress_if_exists SRR2935146 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_F02_CACGTACT.fq.gz
fi

fasterq-dump --split-files SRR2935147
gz1="$(_compress_if_exists SRR2935147_1 || true)"
gz2="$(_compress_if_exists SRR2935147_2 || true)"
gzs="$(_compress_if_exists SRR2935147 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_F03_CCACCATT.fq.gz
fi

fasterq-dump --split-files SRR2935148
gz1="$(_compress_if_exists SRR2935148_1 || true)"
gz2="$(_compress_if_exists SRR2935148_2 || true)"
gzs="$(_compress_if_exists SRR2935148 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_F07_GCTCCATA.fq.gz
fi

fasterq-dump --split-files SRR2935150
gz1="$(_compress_if_exists SRR2935150_1 || true)"
gz2="$(_compress_if_exists SRR2935150_2 || true)"
gzs="$(_compress_if_exists SRR2935150 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_G01_TTGAGAGG.fq.gz
fi

fasterq-dump --split-files SRR2935152
gz1="$(_compress_if_exists SRR2935152_1 || true)"
gz2="$(_compress_if_exists SRR2935152_2 || true)"
gzs="$(_compress_if_exists SRR2935152 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2935153
gz1="$(_compress_if_exists SRR2935153_1 || true)"
gz2="$(_compress_if_exists SRR2935153_2 || true)"
gzs="$(_compress_if_exists SRR2935153 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_G07_AGTGAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935154
gz1="$(_compress_if_exists SRR2935154_1 || true)"
gz2="$(_compress_if_exists SRR2935154_2 || true)"
gzs="$(_compress_if_exists SRR2935154 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-009_R278_L4_1_H01_GTGCATAC.fq.gz
fi

fasterq-dump --split-files SRR2935156
gz1="$(_compress_if_exists SRR2935156_1 || true)"
gz2="$(_compress_if_exists SRR2935156_2 || true)"
gzs="$(_compress_if_exists SRR2935156 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_A01_CTTTCTGG.fq.gz
fi

fasterq-dump --split-files SRR2935157
gz1="$(_compress_if_exists SRR2935157_1 || true)"
gz2="$(_compress_if_exists SRR2935157_2 || true)"
gzs="$(_compress_if_exists SRR2935157 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2935158
gz1="$(_compress_if_exists SRR2935158_1 || true)"
gz2="$(_compress_if_exists SRR2935158_2 || true)"
gzs="$(_compress_if_exists SRR2935158 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_A05_GCTTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935159
gz1="$(_compress_if_exists SRR2935159_1 || true)"
gz2="$(_compress_if_exists SRR2935159_2 || true)"
gzs="$(_compress_if_exists SRR2935159 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_A08_AGCTACCA.fq.gz
fi

fasterq-dump --split-files SRR2935161
gz1="$(_compress_if_exists SRR2935161_1 || true)"
gz2="$(_compress_if_exists SRR2935161_2 || true)"
gzs="$(_compress_if_exists SRR2935161 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_A11_TATCGCGA.fq.gz
fi

fasterq-dump --split-files SRR2935162
gz1="$(_compress_if_exists SRR2935162_1 || true)"
gz2="$(_compress_if_exists SRR2935162_2 || true)"
gzs="$(_compress_if_exists SRR2935162 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_A12_CCATTAGC.fq.gz
fi

fasterq-dump --split-files SRR2935163
gz1="$(_compress_if_exists SRR2935163_1 || true)"
gz2="$(_compress_if_exists SRR2935163_2 || true)"
gzs="$(_compress_if_exists SRR2935163 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2935165
gz1="$(_compress_if_exists SRR2935165_1 || true)"
gz2="$(_compress_if_exists SRR2935165_2 || true)"
gzs="$(_compress_if_exists SRR2935165 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935166
gz1="$(_compress_if_exists SRR2935166_1 || true)"
gz2="$(_compress_if_exists SRR2935166_2 || true)"
gzs="$(_compress_if_exists SRR2935166 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_B07_TGTTCGGA.fq.gz
fi

fasterq-dump --split-files SRR2935167
gz1="$(_compress_if_exists SRR2935167_1 || true)"
gz2="$(_compress_if_exists SRR2935167_2 || true)"
gzs="$(_compress_if_exists SRR2935167 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2935168
gz1="$(_compress_if_exists SRR2935168_1 || true)"
gz2="$(_compress_if_exists SRR2935168_2 || true)"
gzs="$(_compress_if_exists SRR2935168 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2935169
gz1="$(_compress_if_exists SRR2935169_1 || true)"
gz2="$(_compress_if_exists SRR2935169_2 || true)"
gzs="$(_compress_if_exists SRR2935169 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935170
gz1="$(_compress_if_exists SRR2935170_1 || true)"
gz2="$(_compress_if_exists SRR2935170_2 || true)"
gzs="$(_compress_if_exists SRR2935170 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2935171
gz1="$(_compress_if_exists SRR2935171_1 || true)"
gz2="$(_compress_if_exists SRR2935171_2 || true)"
gzs="$(_compress_if_exists SRR2935171 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C06_CAGAGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935172
gz1="$(_compress_if_exists SRR2935172_1 || true)"
gz2="$(_compress_if_exists SRR2935172_2 || true)"
gzs="$(_compress_if_exists SRR2935172 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935174
gz1="$(_compress_if_exists SRR2935174_1 || true)"
gz2="$(_compress_if_exists SRR2935174_2 || true)"
gzs="$(_compress_if_exists SRR2935174 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935175
gz1="$(_compress_if_exists SRR2935175_1 || true)"
gz2="$(_compress_if_exists SRR2935175_2 || true)"
gzs="$(_compress_if_exists SRR2935175 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935176
gz1="$(_compress_if_exists SRR2935176_1 || true)"
gz2="$(_compress_if_exists SRR2935176_2 || true)"
gzs="$(_compress_if_exists SRR2935176 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2935177
gz1="$(_compress_if_exists SRR2935177_1 || true)"
gz2="$(_compress_if_exists SRR2935177_2 || true)"
gzs="$(_compress_if_exists SRR2935177 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_D04_CCCGAATA.fq.gz
fi

fasterq-dump --split-files SRR2935178
gz1="$(_compress_if_exists SRR2935178_1 || true)"
gz2="$(_compress_if_exists SRR2935178_2 || true)"
gzs="$(_compress_if_exists SRR2935178 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935179
gz1="$(_compress_if_exists SRR2935179_1 || true)"
gz2="$(_compress_if_exists SRR2935179_2 || true)"
gzs="$(_compress_if_exists SRR2935179 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935181
gz1="$(_compress_if_exists SRR2935181_1 || true)"
gz2="$(_compress_if_exists SRR2935181_2 || true)"
gzs="$(_compress_if_exists SRR2935181 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2935182
gz1="$(_compress_if_exists SRR2935182_1 || true)"
gz2="$(_compress_if_exists SRR2935182_2 || true)"
gzs="$(_compress_if_exists SRR2935182 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2935183
gz1="$(_compress_if_exists SRR2935183_1 || true)"
gz2="$(_compress_if_exists SRR2935183_2 || true)"
gzs="$(_compress_if_exists SRR2935183 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_E01_TCCATCCT.fq.gz
fi

fasterq-dump --split-files SRR2935184
gz1="$(_compress_if_exists SRR2935184_1 || true)"
gz2="$(_compress_if_exists SRR2935184_2 || true)"
gzs="$(_compress_if_exists SRR2935184 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_E03_GAAGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935185
gz1="$(_compress_if_exists SRR2935185_1 || true)"
gz2="$(_compress_if_exists SRR2935185_2 || true)"
gzs="$(_compress_if_exists SRR2935185 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_E07_ATGGACTG.fq.gz
fi

fasterq-dump --split-files SRR2935186
gz1="$(_compress_if_exists SRR2935186_1 || true)"
gz2="$(_compress_if_exists SRR2935186_2 || true)"
gzs="$(_compress_if_exists SRR2935186 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2935187
gz1="$(_compress_if_exists SRR2935187_1 || true)"
gz2="$(_compress_if_exists SRR2935187_2 || true)"
gzs="$(_compress_if_exists SRR2935187 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_E10_TCCTGACT.fq.gz
fi

fasterq-dump --split-files SRR2935190
gz1="$(_compress_if_exists SRR2935190_1 || true)"
gz2="$(_compress_if_exists SRR2935190_2 || true)"
gzs="$(_compress_if_exists SRR2935190 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935191
gz1="$(_compress_if_exists SRR2935191_1 || true)"
gz2="$(_compress_if_exists SRR2935191_2 || true)"
gzs="$(_compress_if_exists SRR2935191 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_F11_AGAAGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935193
gz1="$(_compress_if_exists SRR2935193_1 || true)"
gz2="$(_compress_if_exists SRR2935193_2 || true)"
gzs="$(_compress_if_exists SRR2935193 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_G01_CTCACAGA.fq.gz
fi

fasterq-dump --split-files SRR2935194
gz1="$(_compress_if_exists SRR2935194_1 || true)"
gz2="$(_compress_if_exists SRR2935194_2 || true)"
gzs="$(_compress_if_exists SRR2935194 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2935195
gz1="$(_compress_if_exists SRR2935195_1 || true)"
gz2="$(_compress_if_exists SRR2935195_2 || true)"
gzs="$(_compress_if_exists SRR2935195 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2935196
gz1="$(_compress_if_exists SRR2935196_1 || true)"
gz2="$(_compress_if_exists SRR2935196_2 || true)"
gzs="$(_compress_if_exists SRR2935196 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_G11_TGTAGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935197
gz1="$(_compress_if_exists SRR2935197_1 || true)"
gz2="$(_compress_if_exists SRR2935197_2 || true)"
gzs="$(_compress_if_exists SRR2935197 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_H03_CGGATTAC.fq.gz
fi

fasterq-dump --split-files SRR2935199
gz1="$(_compress_if_exists SRR2935199_1 || true)"
gz2="$(_compress_if_exists SRR2935199_2 || true)"
gzs="$(_compress_if_exists SRR2935199 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_H05_GGGTCATA.fq.gz
fi

fasterq-dump --split-files SRR2935200
gz1="$(_compress_if_exists SRR2935200_1 || true)"
gz2="$(_compress_if_exists SRR2935200_2 || true)"
gzs="$(_compress_if_exists SRR2935200 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_H06_CTGACCTT.fq.gz
fi

fasterq-dump --split-files SRR2935201
gz1="$(_compress_if_exists SRR2935201_1 || true)"
gz2="$(_compress_if_exists SRR2935201_2 || true)"
gzs="$(_compress_if_exists SRR2935201 || true)"

fasterq-dump --split-files SRR2935202
gz1="$(_compress_if_exists SRR2935202_1 || true)"
gz2="$(_compress_if_exists SRR2935202_2 || true)"
gzs="$(_compress_if_exists SRR2935202 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-010_R279_L6_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2935203
gz1="$(_compress_if_exists SRR2935203_1 || true)"
gz2="$(_compress_if_exists SRR2935203_2 || true)"
gzs="$(_compress_if_exists SRR2935203 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_A01_GCACACTA.fq.gz
fi

fasterq-dump --split-files SRR2935204
gz1="$(_compress_if_exists SRR2935204_1 || true)"
gz2="$(_compress_if_exists SRR2935204_2 || true)"
gzs="$(_compress_if_exists SRR2935204 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_A02_TAGCGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935207
gz1="$(_compress_if_exists SRR2935207_1 || true)"
gz2="$(_compress_if_exists SRR2935207_2 || true)"
gzs="$(_compress_if_exists SRR2935207 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2935208
gz1="$(_compress_if_exists SRR2935208_1 || true)"
gz2="$(_compress_if_exists SRR2935208_2 || true)"
gzs="$(_compress_if_exists SRR2935208 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2935209
gz1="$(_compress_if_exists SRR2935209_1 || true)"
gz2="$(_compress_if_exists SRR2935209_2 || true)"
gzs="$(_compress_if_exists SRR2935209 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_A11_AATAGGGG.fq.gz
fi

fasterq-dump --split-files SRR2935211
gz1="$(_compress_if_exists SRR2935211_1 || true)"
gz2="$(_compress_if_exists SRR2935211_2 || true)"
gzs="$(_compress_if_exists SRR2935211 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2935212
gz1="$(_compress_if_exists SRR2935212_1 || true)"
gz2="$(_compress_if_exists SRR2935212_2 || true)"
gzs="$(_compress_if_exists SRR2935212 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2935213
gz1="$(_compress_if_exists SRR2935213_1 || true)"
gz2="$(_compress_if_exists SRR2935213_2 || true)"
gzs="$(_compress_if_exists SRR2935213 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_B07_ACACCTTG.fq.gz
fi

fasterq-dump --split-files SRR2935214
gz1="$(_compress_if_exists SRR2935214_1 || true)"
gz2="$(_compress_if_exists SRR2935214_2 || true)"
gzs="$(_compress_if_exists SRR2935214 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_B09_CAAGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935215
gz1="$(_compress_if_exists SRR2935215_1 || true)"
gz2="$(_compress_if_exists SRR2935215_2 || true)"
gzs="$(_compress_if_exists SRR2935215 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2935216
gz1="$(_compress_if_exists SRR2935216_1 || true)"
gz2="$(_compress_if_exists SRR2935216_2 || true)"
gzs="$(_compress_if_exists SRR2935216 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C03_CGTCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2935218
gz1="$(_compress_if_exists SRR2935218_1 || true)"
gz2="$(_compress_if_exists SRR2935218_2 || true)"
gzs="$(_compress_if_exists SRR2935218 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C05_GCCTATAG.fq.gz
fi

fasterq-dump --split-files SRR2935219
gz1="$(_compress_if_exists SRR2935219_1 || true)"
gz2="$(_compress_if_exists SRR2935219_2 || true)"
gzs="$(_compress_if_exists SRR2935219 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2935220
gz1="$(_compress_if_exists SRR2935220_1 || true)"
gz2="$(_compress_if_exists SRR2935220_2 || true)"
gzs="$(_compress_if_exists SRR2935220 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C07_GTGGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2935222
gz1="$(_compress_if_exists SRR2935222_1 || true)"
gz2="$(_compress_if_exists SRR2935222_2 || true)"
gzs="$(_compress_if_exists SRR2935222 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C10_GATTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935223
gz1="$(_compress_if_exists SRR2935223_1 || true)"
gz2="$(_compress_if_exists SRR2935223_2 || true)"
gzs="$(_compress_if_exists SRR2935223 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C11_TACGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935224
gz1="$(_compress_if_exists SRR2935224_1 || true)"
gz2="$(_compress_if_exists SRR2935224_2 || true)"
gzs="$(_compress_if_exists SRR2935224 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2935225
gz1="$(_compress_if_exists SRR2935225_1 || true)"
gz2="$(_compress_if_exists SRR2935225_2 || true)"
gzs="$(_compress_if_exists SRR2935225 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_D01_TCTAGGGA.fq.gz
fi

fasterq-dump --split-files SRR2935228
gz1="$(_compress_if_exists SRR2935228_1 || true)"
gz2="$(_compress_if_exists SRR2935228_2 || true)"
gzs="$(_compress_if_exists SRR2935228 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_D05_TGCACAAG.fq.gz
fi

fasterq-dump --split-files SRR2935230
gz1="$(_compress_if_exists SRR2935230_1 || true)"
gz2="$(_compress_if_exists SRR2935230_2 || true)"
gzs="$(_compress_if_exists SRR2935230 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_D09_TGAGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935232
gz1="$(_compress_if_exists SRR2935232_1 || true)"
gz2="$(_compress_if_exists SRR2935232_2 || true)"
gzs="$(_compress_if_exists SRR2935232 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935234
gz1="$(_compress_if_exists SRR2935234_1 || true)"
gz2="$(_compress_if_exists SRR2935234_2 || true)"
gzs="$(_compress_if_exists SRR2935234 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_E03_CCTCTAGA.fq.gz
fi

fasterq-dump --split-files SRR2935237
gz1="$(_compress_if_exists SRR2935237_1 || true)"
gz2="$(_compress_if_exists SRR2935237_2 || true)"
gzs="$(_compress_if_exists SRR2935237 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_E09_GACATCAC.fq.gz
fi

fasterq-dump --split-files SRR2935238
gz1="$(_compress_if_exists SRR2935238_1 || true)"
gz2="$(_compress_if_exists SRR2935238_2 || true)"
gzs="$(_compress_if_exists SRR2935238 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2935240
gz1="$(_compress_if_exists SRR2935240_1 || true)"
gz2="$(_compress_if_exists SRR2935240_2 || true)"
gzs="$(_compress_if_exists SRR2935240 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_F01_CAGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935241
gz1="$(_compress_if_exists SRR2935241_1 || true)"
gz2="$(_compress_if_exists SRR2935241_2 || true)"
gzs="$(_compress_if_exists SRR2935241 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_F02_CATAACCC.fq.gz
fi

fasterq-dump --split-files SRR2935242
gz1="$(_compress_if_exists SRR2935242_1 || true)"
gz2="$(_compress_if_exists SRR2935242_2 || true)"
gzs="$(_compress_if_exists SRR2935242 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_F03_ACGATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935243
gz1="$(_compress_if_exists SRR2935243_1 || true)"
gz2="$(_compress_if_exists SRR2935243_2 || true)"
gzs="$(_compress_if_exists SRR2935243 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2935244
gz1="$(_compress_if_exists SRR2935244_1 || true)"
gz2="$(_compress_if_exists SRR2935244_2 || true)"
gzs="$(_compress_if_exists SRR2935244 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2935245
gz1="$(_compress_if_exists SRR2935245_1 || true)"
gz2="$(_compress_if_exists SRR2935245_2 || true)"
gzs="$(_compress_if_exists SRR2935245 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G01_ACAGTCAG.fq.gz
fi

fasterq-dump --split-files SRR2935246
gz1="$(_compress_if_exists SRR2935246_1 || true)"
gz2="$(_compress_if_exists SRR2935246_2 || true)"
gzs="$(_compress_if_exists SRR2935246 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G02_GTACGAAG.fq.gz
fi

fasterq-dump --split-files SRR2935248
gz1="$(_compress_if_exists SRR2935248_1 || true)"
gz2="$(_compress_if_exists SRR2935248_2 || true)"
gzs="$(_compress_if_exists SRR2935248 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G04_AAATCGCC.fq.gz
fi

fasterq-dump --split-files SRR2935249
gz1="$(_compress_if_exists SRR2935249_1 || true)"
gz2="$(_compress_if_exists SRR2935249_2 || true)"
gzs="$(_compress_if_exists SRR2935249 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935250
gz1="$(_compress_if_exists SRR2935250_1 || true)"
gz2="$(_compress_if_exists SRR2935250_2 || true)"
gzs="$(_compress_if_exists SRR2935250 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G06_CTATAGCG.fq.gz
fi

fasterq-dump --split-files SRR2935252
gz1="$(_compress_if_exists SRR2935252_1 || true)"
gz2="$(_compress_if_exists SRR2935252_2 || true)"
gzs="$(_compress_if_exists SRR2935252 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G09_GGAAATGG.fq.gz
fi

fasterq-dump --split-files SRR2935253
gz1="$(_compress_if_exists SRR2935253_1 || true)"
gz2="$(_compress_if_exists SRR2935253_2 || true)"
gzs="$(_compress_if_exists SRR2935253 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G10_GCGAGATA.fq.gz
fi

fasterq-dump --split-files SRR2935255
gz1="$(_compress_if_exists SRR2935255_1 || true)"
gz2="$(_compress_if_exists SRR2935255_2 || true)"
gzs="$(_compress_if_exists SRR2935255 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2935257
gz1="$(_compress_if_exists SRR2935257_1 || true)"
gz2="$(_compress_if_exists SRR2935257_2 || true)"
gzs="$(_compress_if_exists SRR2935257 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2935258
gz1="$(_compress_if_exists SRR2935258_1 || true)"
gz2="$(_compress_if_exists SRR2935258_2 || true)"
gzs="$(_compress_if_exists SRR2935258 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-011_R279_L6_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2935259
gz1="$(_compress_if_exists SRR2935259_1 || true)"
gz2="$(_compress_if_exists SRR2935259_2 || true)"
gzs="$(_compress_if_exists SRR2935259 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_A02_ATAGAGCC.fq.gz
fi

fasterq-dump --split-files SRR2935260
gz1="$(_compress_if_exists SRR2935260_1 || true)"
gz2="$(_compress_if_exists SRR2935260_2 || true)"
gzs="$(_compress_if_exists SRR2935260 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2935261
gz1="$(_compress_if_exists SRR2935261_1 || true)"
gz2="$(_compress_if_exists SRR2935261_2 || true)"
gzs="$(_compress_if_exists SRR2935261 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_A04_GCTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935262
gz1="$(_compress_if_exists SRR2935262_1 || true)"
gz2="$(_compress_if_exists SRR2935262_2 || true)"
gzs="$(_compress_if_exists SRR2935262 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_A07_TGAGGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935263
gz1="$(_compress_if_exists SRR2935263_1 || true)"
gz2="$(_compress_if_exists SRR2935263_2 || true)"
gzs="$(_compress_if_exists SRR2935263 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935264
gz1="$(_compress_if_exists SRR2935264_1 || true)"
gz2="$(_compress_if_exists SRR2935264_2 || true)"
gzs="$(_compress_if_exists SRR2935264 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_A12_CCATTAGC.fq.gz
fi

fasterq-dump --split-files SRR2935265
gz1="$(_compress_if_exists SRR2935265_1 || true)"
gz2="$(_compress_if_exists SRR2935265_2 || true)"
gzs="$(_compress_if_exists SRR2935265 || true)"

fasterq-dump --split-files SRR2935266
gz1="$(_compress_if_exists SRR2935266_1 || true)"
gz2="$(_compress_if_exists SRR2935266_2 || true)"
gzs="$(_compress_if_exists SRR2935266 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935267
gz1="$(_compress_if_exists SRR2935267_1 || true)"
gz2="$(_compress_if_exists SRR2935267_2 || true)"
gzs="$(_compress_if_exists SRR2935267 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2935268
gz1="$(_compress_if_exists SRR2935268_1 || true)"
gz2="$(_compress_if_exists SRR2935268_2 || true)"
gzs="$(_compress_if_exists SRR2935268 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2935269
gz1="$(_compress_if_exists SRR2935269_1 || true)"
gz2="$(_compress_if_exists SRR2935269_2 || true)"
gzs="$(_compress_if_exists SRR2935269 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935270
gz1="$(_compress_if_exists SRR2935270_1 || true)"
gz2="$(_compress_if_exists SRR2935270_2 || true)"
gzs="$(_compress_if_exists SRR2935270 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_B07_TGTTCGGA.fq.gz
fi

fasterq-dump --split-files SRR2935271
gz1="$(_compress_if_exists SRR2935271_1 || true)"
gz2="$(_compress_if_exists SRR2935271_2 || true)"
gzs="$(_compress_if_exists SRR2935271 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935272
gz1="$(_compress_if_exists SRR2935272_1 || true)"
gz2="$(_compress_if_exists SRR2935272_2 || true)"
gzs="$(_compress_if_exists SRR2935272 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_C01_AAATGCGG.fq.gz
fi

fasterq-dump --split-files SRR2935273
gz1="$(_compress_if_exists SRR2935273_1 || true)"
gz2="$(_compress_if_exists SRR2935273_2 || true)"
gzs="$(_compress_if_exists SRR2935273 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935275
gz1="$(_compress_if_exists SRR2935275_1 || true)"
gz2="$(_compress_if_exists SRR2935275_2 || true)"
gzs="$(_compress_if_exists SRR2935275 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2935276
gz1="$(_compress_if_exists SRR2935276_1 || true)"
gz2="$(_compress_if_exists SRR2935276_2 || true)"
gzs="$(_compress_if_exists SRR2935276 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935278
gz1="$(_compress_if_exists SRR2935278_1 || true)"
gz2="$(_compress_if_exists SRR2935278_2 || true)"
gzs="$(_compress_if_exists SRR2935278 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2935279
gz1="$(_compress_if_exists SRR2935279_1 || true)"
gz2="$(_compress_if_exists SRR2935279_2 || true)"
gzs="$(_compress_if_exists SRR2935279 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935280
gz1="$(_compress_if_exists SRR2935280_1 || true)"
gz2="$(_compress_if_exists SRR2935280_2 || true)"
gzs="$(_compress_if_exists SRR2935280 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_D07_GAAACCCA.fq.gz
fi

fasterq-dump --split-files SRR2935281
gz1="$(_compress_if_exists SRR2935281_1 || true)"
gz2="$(_compress_if_exists SRR2935281_2 || true)"
gzs="$(_compress_if_exists SRR2935281 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2935282
gz1="$(_compress_if_exists SRR2935282_1 || true)"
gz2="$(_compress_if_exists SRR2935282_2 || true)"
gzs="$(_compress_if_exists SRR2935282 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2935283
gz1="$(_compress_if_exists SRR2935283_1 || true)"
gz2="$(_compress_if_exists SRR2935283_2 || true)"
gzs="$(_compress_if_exists SRR2935283 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935284
gz1="$(_compress_if_exists SRR2935284_1 || true)"
gz2="$(_compress_if_exists SRR2935284_2 || true)"
gzs="$(_compress_if_exists SRR2935284 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E05_TCGATTGC.fq.gz
fi

fasterq-dump --split-files SRR2935285
gz1="$(_compress_if_exists SRR2935285_1 || true)"
gz2="$(_compress_if_exists SRR2935285_2 || true)"
gzs="$(_compress_if_exists SRR2935285 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2935286
gz1="$(_compress_if_exists SRR2935286_1 || true)"
gz2="$(_compress_if_exists SRR2935286_2 || true)"
gzs="$(_compress_if_exists SRR2935286 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E07_ATGGACTG.fq.gz
fi

fasterq-dump --split-files SRR2935287
gz1="$(_compress_if_exists SRR2935287_1 || true)"
gz2="$(_compress_if_exists SRR2935287_2 || true)"
gzs="$(_compress_if_exists SRR2935287 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2935288
gz1="$(_compress_if_exists SRR2935288_1 || true)"
gz2="$(_compress_if_exists SRR2935288_2 || true)"
gzs="$(_compress_if_exists SRR2935288 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E09_CATCATCC.fq.gz
fi

fasterq-dump --split-files SRR2935289
gz1="$(_compress_if_exists SRR2935289_1 || true)"
gz2="$(_compress_if_exists SRR2935289_2 || true)"
gzs="$(_compress_if_exists SRR2935289 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_E11_CTTTGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935290
gz1="$(_compress_if_exists SRR2935290_1 || true)"
gz2="$(_compress_if_exists SRR2935290_2 || true)"
gzs="$(_compress_if_exists SRR2935290 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_F01_TCAACCGA.fq.gz
fi

fasterq-dump --split-files SRR2935291
gz1="$(_compress_if_exists SRR2935291_1 || true)"
gz2="$(_compress_if_exists SRR2935291_2 || true)"
gzs="$(_compress_if_exists SRR2935291 || true)"

fasterq-dump --split-files SRR2935292
gz1="$(_compress_if_exists SRR2935292_1 || true)"
gz2="$(_compress_if_exists SRR2935292_2 || true)"
gzs="$(_compress_if_exists SRR2935292 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935293
gz1="$(_compress_if_exists SRR2935293_1 || true)"
gz2="$(_compress_if_exists SRR2935293_2 || true)"
gzs="$(_compress_if_exists SRR2935293 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_F08_TCCAAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935294
gz1="$(_compress_if_exists SRR2935294_1 || true)"
gz2="$(_compress_if_exists SRR2935294_2 || true)"
gzs="$(_compress_if_exists SRR2935294 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2935295
gz1="$(_compress_if_exists SRR2935295_1 || true)"
gz2="$(_compress_if_exists SRR2935295_2 || true)"
gzs="$(_compress_if_exists SRR2935295 || true)"

fasterq-dump --split-files SRR2935296
gz1="$(_compress_if_exists SRR2935296_1 || true)"
gz2="$(_compress_if_exists SRR2935296_2 || true)"
gzs="$(_compress_if_exists SRR2935296 || true)"

fasterq-dump --split-files SRR2935297
gz1="$(_compress_if_exists SRR2935297_1 || true)"
gz2="$(_compress_if_exists SRR2935297_2 || true)"
gzs="$(_compress_if_exists SRR2935297 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2935298
gz1="$(_compress_if_exists SRR2935298_1 || true)"
gz2="$(_compress_if_exists SRR2935298_2 || true)"
gzs="$(_compress_if_exists SRR2935298 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2935299
gz1="$(_compress_if_exists SRR2935299_1 || true)"
gz2="$(_compress_if_exists SRR2935299_2 || true)"
gzs="$(_compress_if_exists SRR2935299 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G06_GCAAAGAG.fq.gz
fi

fasterq-dump --split-files SRR2935300
gz1="$(_compress_if_exists SRR2935300_1 || true)"
gz2="$(_compress_if_exists SRR2935300_2 || true)"
gzs="$(_compress_if_exists SRR2935300 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935301
gz1="$(_compress_if_exists SRR2935301_1 || true)"
gz2="$(_compress_if_exists SRR2935301_2 || true)"
gzs="$(_compress_if_exists SRR2935301 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G09_ACTCGCTT.fq.gz
fi

fasterq-dump --split-files SRR2935302
gz1="$(_compress_if_exists SRR2935302_1 || true)"
gz2="$(_compress_if_exists SRR2935302_2 || true)"
gzs="$(_compress_if_exists SRR2935302 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G10_AGTCTCCT.fq.gz
fi

fasterq-dump --split-files SRR2935303
gz1="$(_compress_if_exists SRR2935303_1 || true)"
gz2="$(_compress_if_exists SRR2935303_2 || true)"
gzs="$(_compress_if_exists SRR2935303 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_G12_GCAAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935304
gz1="$(_compress_if_exists SRR2935304_1 || true)"
gz2="$(_compress_if_exists SRR2935304_2 || true)"
gzs="$(_compress_if_exists SRR2935304 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_H01_ATCGTGGT.fq.gz
fi

fasterq-dump --split-files SRR2935305
gz1="$(_compress_if_exists SRR2935305_1 || true)"
gz2="$(_compress_if_exists SRR2935305_2 || true)"
gzs="$(_compress_if_exists SRR2935305 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_H04_ACGCTGAA.fq.gz
fi

fasterq-dump --split-files SRR2935306
gz1="$(_compress_if_exists SRR2935306_1 || true)"
gz2="$(_compress_if_exists SRR2935306_2 || true)"
gzs="$(_compress_if_exists SRR2935306 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_H05_GGGTCATA.fq.gz
fi

fasterq-dump --split-files SRR2935307
gz1="$(_compress_if_exists SRR2935307_1 || true)"
gz2="$(_compress_if_exists SRR2935307_2 || true)"
gzs="$(_compress_if_exists SRR2935307 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_H10_ATCGGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935308
gz1="$(_compress_if_exists SRR2935308_1 || true)"
gz2="$(_compress_if_exists SRR2935308_2 || true)"
gzs="$(_compress_if_exists SRR2935308 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-012_R278_L6_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2935309
gz1="$(_compress_if_exists SRR2935309_1 || true)"
gz2="$(_compress_if_exists SRR2935309_2 || true)"
gzs="$(_compress_if_exists SRR2935309 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2935310
gz1="$(_compress_if_exists SRR2935310_1 || true)"
gz2="$(_compress_if_exists SRR2935310_2 || true)"
gzs="$(_compress_if_exists SRR2935310 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_A03_AACGTTGG.fq.gz
fi

fasterq-dump --split-files SRR2935311
gz1="$(_compress_if_exists SRR2935311_1 || true)"
gz2="$(_compress_if_exists SRR2935311_2 || true)"
gzs="$(_compress_if_exists SRR2935311 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2935312
gz1="$(_compress_if_exists SRR2935312_1 || true)"
gz2="$(_compress_if_exists SRR2935312_2 || true)"
gzs="$(_compress_if_exists SRR2935312 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2935313
gz1="$(_compress_if_exists SRR2935313_1 || true)"
gz2="$(_compress_if_exists SRR2935313_2 || true)"
gzs="$(_compress_if_exists SRR2935313 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_A09_ACTAGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935314
gz1="$(_compress_if_exists SRR2935314_1 || true)"
gz2="$(_compress_if_exists SRR2935314_2 || true)"
gzs="$(_compress_if_exists SRR2935314 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_A10_CGGTTTGT.fq.gz
fi

fasterq-dump --split-files SRR2935315
gz1="$(_compress_if_exists SRR2935315_1 || true)"
gz2="$(_compress_if_exists SRR2935315_2 || true)"
gzs="$(_compress_if_exists SRR2935315 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935316
gz1="$(_compress_if_exists SRR2935316_1 || true)"
gz2="$(_compress_if_exists SRR2935316_2 || true)"
gzs="$(_compress_if_exists SRR2935316 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2935317
gz1="$(_compress_if_exists SRR2935317_1 || true)"
gz2="$(_compress_if_exists SRR2935317_2 || true)"
gzs="$(_compress_if_exists SRR2935317 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_B08_CAGCCTTT.fq.gz
fi

fasterq-dump --split-files SRR2935318
gz1="$(_compress_if_exists SRR2935318_1 || true)"
gz2="$(_compress_if_exists SRR2935318_2 || true)"
gzs="$(_compress_if_exists SRR2935318 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_B11_CCCATGTT.fq.gz
fi

fasterq-dump --split-files SRR2935319
gz1="$(_compress_if_exists SRR2935319_1 || true)"
gz2="$(_compress_if_exists SRR2935319_2 || true)"
gzs="$(_compress_if_exists SRR2935319 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_B12_ATAGCAGG.fq.gz
fi

fasterq-dump --split-files SRR2935320
gz1="$(_compress_if_exists SRR2935320_1 || true)"
gz2="$(_compress_if_exists SRR2935320_2 || true)"
gzs="$(_compress_if_exists SRR2935320 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_C02_CGAGAACT.fq.gz
fi

fasterq-dump --split-files SRR2935321
gz1="$(_compress_if_exists SRR2935321_1 || true)"
gz2="$(_compress_if_exists SRR2935321_2 || true)"
gzs="$(_compress_if_exists SRR2935321 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_C04_AGTACGAG.fq.gz
fi

fasterq-dump --split-files SRR2935322
gz1="$(_compress_if_exists SRR2935322_1 || true)"
gz2="$(_compress_if_exists SRR2935322_2 || true)"
gzs="$(_compress_if_exists SRR2935322 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_C05_ACCCTCTA.fq.gz
fi

fasterq-dump --split-files SRR2935323
gz1="$(_compress_if_exists SRR2935323_1 || true)"
gz2="$(_compress_if_exists SRR2935323_2 || true)"
gzs="$(_compress_if_exists SRR2935323 || true)"

fasterq-dump --split-files SRR2935324
gz1="$(_compress_if_exists SRR2935324_1 || true)"
gz2="$(_compress_if_exists SRR2935324_2 || true)"
gzs="$(_compress_if_exists SRR2935324 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2935325
gz1="$(_compress_if_exists SRR2935325_1 || true)"
gz2="$(_compress_if_exists SRR2935325_2 || true)"
gzs="$(_compress_if_exists SRR2935325 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2935326
gz1="$(_compress_if_exists SRR2935326_1 || true)"
gz2="$(_compress_if_exists SRR2935326_2 || true)"
gzs="$(_compress_if_exists SRR2935326 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_C12_CTTCTCTG.fq.gz
fi

fasterq-dump --split-files SRR2935327
gz1="$(_compress_if_exists SRR2935327_1 || true)"
gz2="$(_compress_if_exists SRR2935327_2 || true)"
gzs="$(_compress_if_exists SRR2935327 || true)"

fasterq-dump --split-files SRR2935328
gz1="$(_compress_if_exists SRR2935328_1 || true)"
gz2="$(_compress_if_exists SRR2935328_2 || true)"
gzs="$(_compress_if_exists SRR2935328 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_D10_TACTAGGG.fq.gz
fi

fasterq-dump --split-files SRR2935329
gz1="$(_compress_if_exists SRR2935329_1 || true)"
gz2="$(_compress_if_exists SRR2935329_2 || true)"
gzs="$(_compress_if_exists SRR2935329 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_D11_TCCGCTTT.fq.gz
fi

fasterq-dump --split-files SRR2935330
gz1="$(_compress_if_exists SRR2935330_1 || true)"
gz2="$(_compress_if_exists SRR2935330_2 || true)"
gzs="$(_compress_if_exists SRR2935330 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_E02_ATACGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935331
gz1="$(_compress_if_exists SRR2935331_1 || true)"
gz2="$(_compress_if_exists SRR2935331_2 || true)"
gzs="$(_compress_if_exists SRR2935331 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_E03_AGCTTTCG.fq.gz
fi

fasterq-dump --split-files SRR2935332
gz1="$(_compress_if_exists SRR2935332_1 || true)"
gz2="$(_compress_if_exists SRR2935332_2 || true)"
gzs="$(_compress_if_exists SRR2935332 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2935333
gz1="$(_compress_if_exists SRR2935333_1 || true)"
gz2="$(_compress_if_exists SRR2935333_2 || true)"
gzs="$(_compress_if_exists SRR2935333 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_E10_GTCAAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935334
gz1="$(_compress_if_exists SRR2935334_1 || true)"
gz2="$(_compress_if_exists SRR2935334_2 || true)"
gzs="$(_compress_if_exists SRR2935334 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2935335
gz1="$(_compress_if_exists SRR2935335_1 || true)"
gz2="$(_compress_if_exists SRR2935335_2 || true)"
gzs="$(_compress_if_exists SRR2935335 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_E12_TAGAGGTG.fq.gz
fi

fasterq-dump --split-files SRR2935336
gz1="$(_compress_if_exists SRR2935336_1 || true)"
gz2="$(_compress_if_exists SRR2935336_2 || true)"
gzs="$(_compress_if_exists SRR2935336 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_F01_GAACCAGA.fq.gz
fi

fasterq-dump --split-files SRR2935337
gz1="$(_compress_if_exists SRR2935337_1 || true)"
gz2="$(_compress_if_exists SRR2935337_2 || true)"
gzs="$(_compress_if_exists SRR2935337 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_F02_CACGTACT.fq.gz
fi

fasterq-dump --split-files SRR2935338
gz1="$(_compress_if_exists SRR2935338_1 || true)"
gz2="$(_compress_if_exists SRR2935338_2 || true)"
gzs="$(_compress_if_exists SRR2935338 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2935339
gz1="$(_compress_if_exists SRR2935339_1 || true)"
gz2="$(_compress_if_exists SRR2935339_2 || true)"
gzs="$(_compress_if_exists SRR2935339 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_F08_GCCCTATT.fq.gz
fi

fasterq-dump --split-files SRR2935340
gz1="$(_compress_if_exists SRR2935340_1 || true)"
gz2="$(_compress_if_exists SRR2935340_2 || true)"
gzs="$(_compress_if_exists SRR2935340 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_F09_TAGCAGAG.fq.gz
fi

fasterq-dump --split-files SRR2935341
gz1="$(_compress_if_exists SRR2935341_1 || true)"
gz2="$(_compress_if_exists SRR2935341_2 || true)"
gzs="$(_compress_if_exists SRR2935341 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_F10_AAGCCACA.fq.gz
fi

fasterq-dump --split-files SRR2935342
gz1="$(_compress_if_exists SRR2935342_1 || true)"
gz2="$(_compress_if_exists SRR2935342_2 || true)"
gzs="$(_compress_if_exists SRR2935342 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_G02_TCACCTCT.fq.gz
fi

fasterq-dump --split-files SRR2935343
gz1="$(_compress_if_exists SRR2935343_1 || true)"
gz2="$(_compress_if_exists SRR2935343_2 || true)"
gzs="$(_compress_if_exists SRR2935343 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_G03_TTGTGCCA.fq.gz
fi

fasterq-dump --split-files SRR2935344
gz1="$(_compress_if_exists SRR2935344_1 || true)"
gz2="$(_compress_if_exists SRR2935344_2 || true)"
gzs="$(_compress_if_exists SRR2935344 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_G06_GTGAAGCT.fq.gz
fi

fasterq-dump --split-files SRR2935345
gz1="$(_compress_if_exists SRR2935345_1 || true)"
gz2="$(_compress_if_exists SRR2935345_2 || true)"
gzs="$(_compress_if_exists SRR2935345 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_G09_CGCAACTA.fq.gz
fi

fasterq-dump --split-files SRR2935346
gz1="$(_compress_if_exists SRR2935346_1 || true)"
gz2="$(_compress_if_exists SRR2935346_2 || true)"
gzs="$(_compress_if_exists SRR2935346 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_G11_CCAGAGTT.fq.gz
fi

fasterq-dump --split-files SRR2935347
gz1="$(_compress_if_exists SRR2935347_1 || true)"
gz2="$(_compress_if_exists SRR2935347_2 || true)"
gzs="$(_compress_if_exists SRR2935347 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_G12_TCTGCACT.fq.gz
fi

fasterq-dump --split-files SRR2935348
gz1="$(_compress_if_exists SRR2935348_1 || true)"
gz2="$(_compress_if_exists SRR2935348_2 || true)"
gzs="$(_compress_if_exists SRR2935348 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_H02_ATCTTCCC.fq.gz
fi

fasterq-dump --split-files SRR2935349
gz1="$(_compress_if_exists SRR2935349_1 || true)"
gz2="$(_compress_if_exists SRR2935349_2 || true)"
gzs="$(_compress_if_exists SRR2935349 || true)"

fasterq-dump --split-files SRR2935351
gz1="$(_compress_if_exists SRR2935351_1 || true)"
gz2="$(_compress_if_exists SRR2935351_2 || true)"
gzs="$(_compress_if_exists SRR2935351 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772092-013_R278_L6_1_H07_TCTTACCC.fq.gz
fi

fasterq-dump --split-files SRR2935354
gz1="$(_compress_if_exists SRR2935354_1 || true)"
gz2="$(_compress_if_exists SRR2935354_2 || true)"
gzs="$(_compress_if_exists SRR2935354 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2935356
gz1="$(_compress_if_exists SRR2935356_1 || true)"
gz2="$(_compress_if_exists SRR2935356_2 || true)"
gzs="$(_compress_if_exists SRR2935356 || true)"

fasterq-dump --split-files SRR2935357
gz1="$(_compress_if_exists SRR2935357_1 || true)"
gz2="$(_compress_if_exists SRR2935357_2 || true)"
gzs="$(_compress_if_exists SRR2935357 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B01_AGACGAGA.fq.gz
fi

fasterq-dump --split-files SRR2935358
gz1="$(_compress_if_exists SRR2935358_1 || true)"
gz2="$(_compress_if_exists SRR2935358_2 || true)"
gzs="$(_compress_if_exists SRR2935358 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935359
gz1="$(_compress_if_exists SRR2935359_1 || true)"
gz2="$(_compress_if_exists SRR2935359_2 || true)"
gzs="$(_compress_if_exists SRR2935359 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2935360
gz1="$(_compress_if_exists SRR2935360_1 || true)"
gz2="$(_compress_if_exists SRR2935360_2 || true)"
gzs="$(_compress_if_exists SRR2935360 || true)"

fasterq-dump --split-files SRR2935361
gz1="$(_compress_if_exists SRR2935361_1 || true)"
gz2="$(_compress_if_exists SRR2935361_2 || true)"
gzs="$(_compress_if_exists SRR2935361 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B05_AGTGCCAT.fq.gz
fi

fasterq-dump --split-files SRR2935362
gz1="$(_compress_if_exists SRR2935362_1 || true)"
gz2="$(_compress_if_exists SRR2935362_2 || true)"
gzs="$(_compress_if_exists SRR2935362 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B07_ACAGTTCG.fq.gz
fi

fasterq-dump --split-files SRR2935363
gz1="$(_compress_if_exists SRR2935363_1 || true)"
gz2="$(_compress_if_exists SRR2935363_2 || true)"
gzs="$(_compress_if_exists SRR2935363 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B09_TAGTCACC.fq.gz
fi

fasterq-dump --split-files SRR2935364
gz1="$(_compress_if_exists SRR2935364_1 || true)"
gz2="$(_compress_if_exists SRR2935364_2 || true)"
gzs="$(_compress_if_exists SRR2935364 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B10_TCGTCGAT.fq.gz
fi

fasterq-dump --split-files SRR2935365
gz1="$(_compress_if_exists SRR2935365_1 || true)"
gz2="$(_compress_if_exists SRR2935365_2 || true)"
gzs="$(_compress_if_exists SRR2935365 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_B12_ATAGCAGG.fq.gz
fi

fasterq-dump --split-files SRR2935369
gz1="$(_compress_if_exists SRR2935369_1 || true)"
gz2="$(_compress_if_exists SRR2935369_2 || true)"
gzs="$(_compress_if_exists SRR2935369 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_C09_CACTAACC.fq.gz
fi

fasterq-dump --split-files SRR2935370
gz1="$(_compress_if_exists SRR2935370_1 || true)"
gz2="$(_compress_if_exists SRR2935370_2 || true)"
gzs="$(_compress_if_exists SRR2935370 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2935371
gz1="$(_compress_if_exists SRR2935371_1 || true)"
gz2="$(_compress_if_exists SRR2935371_2 || true)"
gzs="$(_compress_if_exists SRR2935371 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2935373
gz1="$(_compress_if_exists SRR2935373_1 || true)"
gz2="$(_compress_if_exists SRR2935373_2 || true)"
gzs="$(_compress_if_exists SRR2935373 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D03_TCTGACTG.fq.gz
fi

fasterq-dump --split-files SRR2935374
gz1="$(_compress_if_exists SRR2935374_1 || true)"
gz2="$(_compress_if_exists SRR2935374_2 || true)"
gzs="$(_compress_if_exists SRR2935374 || true)"

fasterq-dump --split-files SRR2935375
gz1="$(_compress_if_exists SRR2935375_1 || true)"
gz2="$(_compress_if_exists SRR2935375_2 || true)"
gzs="$(_compress_if_exists SRR2935375 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D05_GACGATAC.fq.gz
fi

fasterq-dump --split-files SRR2935376
gz1="$(_compress_if_exists SRR2935376_1 || true)"
gz2="$(_compress_if_exists SRR2935376_2 || true)"
gzs="$(_compress_if_exists SRR2935376 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D06_GGTAAGAC.fq.gz
fi

fasterq-dump --split-files SRR2935377
gz1="$(_compress_if_exists SRR2935377_1 || true)"
gz2="$(_compress_if_exists SRR2935377_2 || true)"
gzs="$(_compress_if_exists SRR2935377 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D07_TCATCTGG.fq.gz
fi

fasterq-dump --split-files SRR2935378
gz1="$(_compress_if_exists SRR2935378_1 || true)"
gz2="$(_compress_if_exists SRR2935378_2 || true)"
gzs="$(_compress_if_exists SRR2935378 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D08_CCGAAACT.fq.gz
fi

fasterq-dump --split-files SRR2935379
gz1="$(_compress_if_exists SRR2935379_1 || true)"
gz2="$(_compress_if_exists SRR2935379_2 || true)"
gzs="$(_compress_if_exists SRR2935379 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D10_TACTAGGG.fq.gz
fi

fasterq-dump --split-files SRR2935380
gz1="$(_compress_if_exists SRR2935380_1 || true)"
gz2="$(_compress_if_exists SRR2935380_2 || true)"
gzs="$(_compress_if_exists SRR2935380 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D11_TCCGCTTT.fq.gz
fi

fasterq-dump --split-files SRR2935381
gz1="$(_compress_if_exists SRR2935381_1 || true)"
gz2="$(_compress_if_exists SRR2935381_2 || true)"
gzs="$(_compress_if_exists SRR2935381 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_D12_GGACAATC.fq.gz
fi

fasterq-dump --split-files SRR2935382
gz1="$(_compress_if_exists SRR2935382_1 || true)"
gz2="$(_compress_if_exists SRR2935382_2 || true)"
gzs="$(_compress_if_exists SRR2935382 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2935383
gz1="$(_compress_if_exists SRR2935383_1 || true)"
gz2="$(_compress_if_exists SRR2935383_2 || true)"
gzs="$(_compress_if_exists SRR2935383 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_E06_GGTTGTCT.fq.gz
fi

fasterq-dump --split-files SRR2935384
gz1="$(_compress_if_exists SRR2935384_1 || true)"
gz2="$(_compress_if_exists SRR2935384_2 || true)"
gzs="$(_compress_if_exists SRR2935384 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_E10_GTCAAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935385
gz1="$(_compress_if_exists SRR2935385_1 || true)"
gz2="$(_compress_if_exists SRR2935385_2 || true)"
gzs="$(_compress_if_exists SRR2935385 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2935386
gz1="$(_compress_if_exists SRR2935386_1 || true)"
gz2="$(_compress_if_exists SRR2935386_2 || true)"
gzs="$(_compress_if_exists SRR2935386 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_F03_CCACCATT.fq.gz
fi

fasterq-dump --split-files SRR2935387
gz1="$(_compress_if_exists SRR2935387_1 || true)"
gz2="$(_compress_if_exists SRR2935387_2 || true)"
gzs="$(_compress_if_exists SRR2935387 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2935388
gz1="$(_compress_if_exists SRR2935388_1 || true)"
gz2="$(_compress_if_exists SRR2935388_2 || true)"
gzs="$(_compress_if_exists SRR2935388 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_F06_TGAAGCCA.fq.gz
fi

fasterq-dump --split-files SRR2935391
gz1="$(_compress_if_exists SRR2935391_1 || true)"
gz2="$(_compress_if_exists SRR2935391_2 || true)"
gzs="$(_compress_if_exists SRR2935391 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_G06_GTGAAGCT.fq.gz
fi

fasterq-dump --split-files SRR2935395
gz1="$(_compress_if_exists SRR2935395_1 || true)"
gz2="$(_compress_if_exists SRR2935395_2 || true)"
gzs="$(_compress_if_exists SRR2935395 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_H05_ACCAACTC.fq.gz
fi

fasterq-dump --split-files SRR2935396
gz1="$(_compress_if_exists SRR2935396_1 || true)"
gz2="$(_compress_if_exists SRR2935396_2 || true)"
gzs="$(_compress_if_exists SRR2935396 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-096_R293_L8_1_H12_AGACAGAG.fq.gz
fi

fasterq-dump --split-files SRR2935397
gz1="$(_compress_if_exists SRR2935397_1 || true)"
gz2="$(_compress_if_exists SRR2935397_2 || true)"
gzs="$(_compress_if_exists SRR2935397 || true)"

fasterq-dump --split-files SRR2935398
gz1="$(_compress_if_exists SRR2935398_1 || true)"
gz2="$(_compress_if_exists SRR2935398_2 || true)"
gzs="$(_compress_if_exists SRR2935398 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_A06_GGTCTGAA.fq.gz
fi

fasterq-dump --split-files SRR2935399
gz1="$(_compress_if_exists SRR2935399_1 || true)"
gz2="$(_compress_if_exists SRR2935399_2 || true)"
gzs="$(_compress_if_exists SRR2935399 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_A09_CTCACTAC.fq.gz
fi

fasterq-dump --split-files SRR2935400
gz1="$(_compress_if_exists SRR2935400_1 || true)"
gz2="$(_compress_if_exists SRR2935400_2 || true)"
gzs="$(_compress_if_exists SRR2935400 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_A11_TATCGCGA.fq.gz
fi

fasterq-dump --split-files SRR2935401
gz1="$(_compress_if_exists SRR2935401_1 || true)"
gz2="$(_compress_if_exists SRR2935401_2 || true)"
gzs="$(_compress_if_exists SRR2935401 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935402
gz1="$(_compress_if_exists SRR2935402_1 || true)"
gz2="$(_compress_if_exists SRR2935402_2 || true)"
gzs="$(_compress_if_exists SRR2935402 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2935403
gz1="$(_compress_if_exists SRR2935403_1 || true)"
gz2="$(_compress_if_exists SRR2935403_2 || true)"
gzs="$(_compress_if_exists SRR2935403 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935404
gz1="$(_compress_if_exists SRR2935404_1 || true)"
gz2="$(_compress_if_exists SRR2935404_2 || true)"
gzs="$(_compress_if_exists SRR2935404 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935405
gz1="$(_compress_if_exists SRR2935405_1 || true)"
gz2="$(_compress_if_exists SRR2935405_2 || true)"
gzs="$(_compress_if_exists SRR2935405 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2935407
gz1="$(_compress_if_exists SRR2935407_1 || true)"
gz2="$(_compress_if_exists SRR2935407_2 || true)"
gzs="$(_compress_if_exists SRR2935407 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2935408
gz1="$(_compress_if_exists SRR2935408_1 || true)"
gz2="$(_compress_if_exists SRR2935408_2 || true)"
gzs="$(_compress_if_exists SRR2935408 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935409
gz1="$(_compress_if_exists SRR2935409_1 || true)"
gz2="$(_compress_if_exists SRR2935409_2 || true)"
gzs="$(_compress_if_exists SRR2935409 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935412
gz1="$(_compress_if_exists SRR2935412_1 || true)"
gz2="$(_compress_if_exists SRR2935412_2 || true)"
gzs="$(_compress_if_exists SRR2935412 || true)"

fasterq-dump --split-files SRR2935413
gz1="$(_compress_if_exists SRR2935413_1 || true)"
gz2="$(_compress_if_exists SRR2935413_2 || true)"
gzs="$(_compress_if_exists SRR2935413 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_D08_GCGTATTG.fq.gz
fi

fasterq-dump --split-files SRR2935414
gz1="$(_compress_if_exists SRR2935414_1 || true)"
gz2="$(_compress_if_exists SRR2935414_2 || true)"
gzs="$(_compress_if_exists SRR2935414 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_D09_TAGCTGGA.fq.gz
fi

fasterq-dump --split-files SRR2935415
gz1="$(_compress_if_exists SRR2935415_1 || true)"
gz2="$(_compress_if_exists SRR2935415_2 || true)"
gzs="$(_compress_if_exists SRR2935415 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2935417
gz1="$(_compress_if_exists SRR2935417_1 || true)"
gz2="$(_compress_if_exists SRR2935417_2 || true)"
gzs="$(_compress_if_exists SRR2935417 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2935418
gz1="$(_compress_if_exists SRR2935418_1 || true)"
gz2="$(_compress_if_exists SRR2935418_2 || true)"
gzs="$(_compress_if_exists SRR2935418 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935419
gz1="$(_compress_if_exists SRR2935419_1 || true)"
gz2="$(_compress_if_exists SRR2935419_2 || true)"
gzs="$(_compress_if_exists SRR2935419 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2935422
gz1="$(_compress_if_exists SRR2935422_1 || true)"
gz2="$(_compress_if_exists SRR2935422_2 || true)"
gzs="$(_compress_if_exists SRR2935422 || true)"

fasterq-dump --split-files SRR2935424
gz1="$(_compress_if_exists SRR2935424_1 || true)"
gz2="$(_compress_if_exists SRR2935424_2 || true)"
gzs="$(_compress_if_exists SRR2935424 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_E12_CTTCTTGC.fq.gz
fi

fasterq-dump --split-files SRR2935425
gz1="$(_compress_if_exists SRR2935425_1 || true)"
gz2="$(_compress_if_exists SRR2935425_2 || true)"
gzs="$(_compress_if_exists SRR2935425 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_F03_ACTCACCA.fq.gz
fi

fasterq-dump --split-files SRR2935426
gz1="$(_compress_if_exists SRR2935426_1 || true)"
gz2="$(_compress_if_exists SRR2935426_2 || true)"
gzs="$(_compress_if_exists SRR2935426 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_F04_GGTAGCTA.fq.gz
fi

fasterq-dump --split-files SRR2935428
gz1="$(_compress_if_exists SRR2935428_1 || true)"
gz2="$(_compress_if_exists SRR2935428_2 || true)"
gzs="$(_compress_if_exists SRR2935428 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935429
gz1="$(_compress_if_exists SRR2935429_1 || true)"
gz2="$(_compress_if_exists SRR2935429_2 || true)"
gzs="$(_compress_if_exists SRR2935429 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_F08_TCCAAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935431
gz1="$(_compress_if_exists SRR2935431_1 || true)"
gz2="$(_compress_if_exists SRR2935431_2 || true)"
gzs="$(_compress_if_exists SRR2935431 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_F12_TGTGCATG.fq.gz
fi

fasterq-dump --split-files SRR2935432
gz1="$(_compress_if_exists SRR2935432_1 || true)"
gz2="$(_compress_if_exists SRR2935432_2 || true)"
gzs="$(_compress_if_exists SRR2935432 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_G01_CTCACAGA.fq.gz
fi

fasterq-dump --split-files SRR2935436
gz1="$(_compress_if_exists SRR2935436_1 || true)"
gz2="$(_compress_if_exists SRR2935436_2 || true)"
gzs="$(_compress_if_exists SRR2935436 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_G06_GCAAAGAG.fq.gz
fi

fasterq-dump --split-files SRR2935438
gz1="$(_compress_if_exists SRR2935438_1 || true)"
gz2="$(_compress_if_exists SRR2935438_2 || true)"
gzs="$(_compress_if_exists SRR2935438 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935440
gz1="$(_compress_if_exists SRR2935440_1 || true)"
gz2="$(_compress_if_exists SRR2935440_2 || true)"
gzs="$(_compress_if_exists SRR2935440 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_G12_GCAAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935442
gz1="$(_compress_if_exists SRR2935442_1 || true)"
gz2="$(_compress_if_exists SRR2935442_2 || true)"
gzs="$(_compress_if_exists SRR2935442 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-097_R293_L8_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935447
gz1="$(_compress_if_exists SRR2935447_1 || true)"
gz2="$(_compress_if_exists SRR2935447_2 || true)"
gzs="$(_compress_if_exists SRR2935447 || true)"

fasterq-dump --split-files SRR2935449
gz1="$(_compress_if_exists SRR2935449_1 || true)"
gz2="$(_compress_if_exists SRR2935449_2 || true)"
gzs="$(_compress_if_exists SRR2935449 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A01_ATTAGACG.fq.gz
fi

fasterq-dump --split-files SRR2935450
gz1="$(_compress_if_exists SRR2935450_1 || true)"
gz2="$(_compress_if_exists SRR2935450_2 || true)"
gzs="$(_compress_if_exists SRR2935450 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A02_GGTATTCA.fq.gz
fi

fasterq-dump --split-files SRR2935451
gz1="$(_compress_if_exists SRR2935451_1 || true)"
gz2="$(_compress_if_exists SRR2935451_2 || true)"
gzs="$(_compress_if_exists SRR2935451 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935452
gz1="$(_compress_if_exists SRR2935452_1 || true)"
gz2="$(_compress_if_exists SRR2935452_2 || true)"
gzs="$(_compress_if_exists SRR2935452 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2935454
gz1="$(_compress_if_exists SRR2935454_1 || true)"
gz2="$(_compress_if_exists SRR2935454_2 || true)"
gzs="$(_compress_if_exists SRR2935454 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A09_GAATCACG.fq.gz
fi

fasterq-dump --split-files SRR2935455
gz1="$(_compress_if_exists SRR2935455_1 || true)"
gz2="$(_compress_if_exists SRR2935455_2 || true)"
gzs="$(_compress_if_exists SRR2935455 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A10_CTAGGAAT.fq.gz
fi

fasterq-dump --split-files SRR2935456
gz1="$(_compress_if_exists SRR2935456_1 || true)"
gz2="$(_compress_if_exists SRR2935456_2 || true)"
gzs="$(_compress_if_exists SRR2935456 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_A11_GCGTCTAA.fq.gz
fi

fasterq-dump --split-files SRR2935457
gz1="$(_compress_if_exists SRR2935457_1 || true)"
gz2="$(_compress_if_exists SRR2935457_2 || true)"
gzs="$(_compress_if_exists SRR2935457 || true)"

fasterq-dump --split-files SRR2935458
gz1="$(_compress_if_exists SRR2935458_1 || true)"
gz2="$(_compress_if_exists SRR2935458_2 || true)"
gzs="$(_compress_if_exists SRR2935458 || true)"

fasterq-dump --split-files SRR2935459
gz1="$(_compress_if_exists SRR2935459_1 || true)"
gz2="$(_compress_if_exists SRR2935459_2 || true)"
gzs="$(_compress_if_exists SRR2935459 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_B03_CAGGACTC.fq.gz
fi

fasterq-dump --split-files SRR2935460
gz1="$(_compress_if_exists SRR2935460_1 || true)"
gz2="$(_compress_if_exists SRR2935460_2 || true)"
gzs="$(_compress_if_exists SRR2935460 || true)"

fasterq-dump --split-files SRR2935461
gz1="$(_compress_if_exists SRR2935461_1 || true)"
gz2="$(_compress_if_exists SRR2935461_2 || true)"
gzs="$(_compress_if_exists SRR2935461 || true)"

fasterq-dump --split-files SRR2935462
gz1="$(_compress_if_exists SRR2935462_1 || true)"
gz2="$(_compress_if_exists SRR2935462_2 || true)"
gzs="$(_compress_if_exists SRR2935462 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935463
gz1="$(_compress_if_exists SRR2935463_1 || true)"
gz2="$(_compress_if_exists SRR2935463_2 || true)"
gzs="$(_compress_if_exists SRR2935463 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_B10_GCATGATT.fq.gz
fi

fasterq-dump --split-files SRR2935464
gz1="$(_compress_if_exists SRR2935464_1 || true)"
gz2="$(_compress_if_exists SRR2935464_2 || true)"
gzs="$(_compress_if_exists SRR2935464 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_B12_GATAAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935465
gz1="$(_compress_if_exists SRR2935465_1 || true)"
gz2="$(_compress_if_exists SRR2935465_2 || true)"
gzs="$(_compress_if_exists SRR2935465 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2935466
gz1="$(_compress_if_exists SRR2935466_1 || true)"
gz2="$(_compress_if_exists SRR2935466_2 || true)"
gzs="$(_compress_if_exists SRR2935466 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C02_TACCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935467
gz1="$(_compress_if_exists SRR2935467_1 || true)"
gz2="$(_compress_if_exists SRR2935467_2 || true)"
gzs="$(_compress_if_exists SRR2935467 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935468
gz1="$(_compress_if_exists SRR2935468_1 || true)"
gz2="$(_compress_if_exists SRR2935468_2 || true)"
gzs="$(_compress_if_exists SRR2935468 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C06_GTCAATCC.fq.gz
fi

fasterq-dump --split-files SRR2935469
gz1="$(_compress_if_exists SRR2935469_1 || true)"
gz2="$(_compress_if_exists SRR2935469_2 || true)"
gzs="$(_compress_if_exists SRR2935469 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C07_ACAATCCC.fq.gz
fi

fasterq-dump --split-files SRR2935470
gz1="$(_compress_if_exists SRR2935470_1 || true)"
gz2="$(_compress_if_exists SRR2935470_2 || true)"
gzs="$(_compress_if_exists SRR2935470 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C10_AGGGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935471
gz1="$(_compress_if_exists SRR2935471_1 || true)"
gz2="$(_compress_if_exists SRR2935471_2 || true)"
gzs="$(_compress_if_exists SRR2935471 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2935472
gz1="$(_compress_if_exists SRR2935472_1 || true)"
gz2="$(_compress_if_exists SRR2935472_2 || true)"
gzs="$(_compress_if_exists SRR2935472 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_C12_TTAGCGGT.fq.gz
fi

fasterq-dump --split-files SRR2935473
gz1="$(_compress_if_exists SRR2935473_1 || true)"
gz2="$(_compress_if_exists SRR2935473_2 || true)"
gzs="$(_compress_if_exists SRR2935473 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_D01_GTCGTTGA.fq.gz
fi

fasterq-dump --split-files SRR2935474
gz1="$(_compress_if_exists SRR2935474_1 || true)"
gz2="$(_compress_if_exists SRR2935474_2 || true)"
gzs="$(_compress_if_exists SRR2935474 || true)"

fasterq-dump --split-files SRR2935475
gz1="$(_compress_if_exists SRR2935475_1 || true)"
gz2="$(_compress_if_exists SRR2935475_2 || true)"
gzs="$(_compress_if_exists SRR2935475 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_D04_CTAATGAC.fq.gz
fi

fasterq-dump --split-files SRR2935477
gz1="$(_compress_if_exists SRR2935477_1 || true)"
gz2="$(_compress_if_exists SRR2935477_2 || true)"
gzs="$(_compress_if_exists SRR2935477 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_D10_CTTTACCT.fq.gz
fi

fasterq-dump --split-files SRR2935478
gz1="$(_compress_if_exists SRR2935478_1 || true)"
gz2="$(_compress_if_exists SRR2935478_2 || true)"
gzs="$(_compress_if_exists SRR2935478 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_D11_CGACTATG.fq.gz
fi

fasterq-dump --split-files SRR2935479
gz1="$(_compress_if_exists SRR2935479_1 || true)"
gz2="$(_compress_if_exists SRR2935479_2 || true)"
gzs="$(_compress_if_exists SRR2935479 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935480
gz1="$(_compress_if_exists SRR2935480_1 || true)"
gz2="$(_compress_if_exists SRR2935480_2 || true)"
gzs="$(_compress_if_exists SRR2935480 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_E02_TCGACATC.fq.gz
fi

fasterq-dump --split-files SRR2935481
gz1="$(_compress_if_exists SRR2935481_1 || true)"
gz2="$(_compress_if_exists SRR2935481_2 || true)"
gzs="$(_compress_if_exists SRR2935481 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_E04_AAGGAGCT.fq.gz
fi

fasterq-dump --split-files SRR2935482
gz1="$(_compress_if_exists SRR2935482_1 || true)"
gz2="$(_compress_if_exists SRR2935482_2 || true)"
gzs="$(_compress_if_exists SRR2935482 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2935483
gz1="$(_compress_if_exists SRR2935483_1 || true)"
gz2="$(_compress_if_exists SRR2935483_2 || true)"
gzs="$(_compress_if_exists SRR2935483 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_E10_AGTTGTGG.fq.gz
fi

fasterq-dump --split-files SRR2935484
gz1="$(_compress_if_exists SRR2935484_1 || true)"
gz2="$(_compress_if_exists SRR2935484_2 || true)"
gzs="$(_compress_if_exists SRR2935484 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2935485
gz1="$(_compress_if_exists SRR2935485_1 || true)"
gz2="$(_compress_if_exists SRR2935485_2 || true)"
gzs="$(_compress_if_exists SRR2935485 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2935487
gz1="$(_compress_if_exists SRR2935487_1 || true)"
gz2="$(_compress_if_exists SRR2935487_2 || true)"
gzs="$(_compress_if_exists SRR2935487 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_F06_ACACAACT.fq.gz
fi

fasterq-dump --split-files SRR2935488
gz1="$(_compress_if_exists SRR2935488_1 || true)"
gz2="$(_compress_if_exists SRR2935488_2 || true)"
gzs="$(_compress_if_exists SRR2935488 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_F07_AAGTCTTC.fq.gz
fi

fasterq-dump --split-files SRR2935490
gz1="$(_compress_if_exists SRR2935490_1 || true)"
gz2="$(_compress_if_exists SRR2935490_2 || true)"
gzs="$(_compress_if_exists SRR2935490 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2935491
gz1="$(_compress_if_exists SRR2935491_1 || true)"
gz2="$(_compress_if_exists SRR2935491_2 || true)"
gzs="$(_compress_if_exists SRR2935491 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_G01_CCTACGCA.fq.gz
fi

fasterq-dump --split-files SRR2935492
gz1="$(_compress_if_exists SRR2935492_1 || true)"
gz2="$(_compress_if_exists SRR2935492_2 || true)"
gzs="$(_compress_if_exists SRR2935492 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_G03_CAAACAGT.fq.gz
fi

fasterq-dump --split-files SRR2935495
gz1="$(_compress_if_exists SRR2935495_1 || true)"
gz2="$(_compress_if_exists SRR2935495_2 || true)"
gzs="$(_compress_if_exists SRR2935495 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2935499
gz1="$(_compress_if_exists SRR2935499_1 || true)"
gz2="$(_compress_if_exists SRR2935499_2 || true)"
gzs="$(_compress_if_exists SRR2935499 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H02_TGTCAAAG.fq.gz
fi

fasterq-dump --split-files SRR2935500
gz1="$(_compress_if_exists SRR2935500_1 || true)"
gz2="$(_compress_if_exists SRR2935500_2 || true)"
gzs="$(_compress_if_exists SRR2935500 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H03_AGCCACTT.fq.gz
fi

fasterq-dump --split-files SRR2935501
gz1="$(_compress_if_exists SRR2935501_1 || true)"
gz2="$(_compress_if_exists SRR2935501_2 || true)"
gzs="$(_compress_if_exists SRR2935501 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2935502
gz1="$(_compress_if_exists SRR2935502_1 || true)"
gz2="$(_compress_if_exists SRR2935502_2 || true)"
gzs="$(_compress_if_exists SRR2935502 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H08_TAAGTCCT.fq.gz
fi

fasterq-dump --split-files SRR2935503
gz1="$(_compress_if_exists SRR2935503_1 || true)"
gz2="$(_compress_if_exists SRR2935503_2 || true)"
gzs="$(_compress_if_exists SRR2935503 || true)"

fasterq-dump --split-files SRR2935504
gz1="$(_compress_if_exists SRR2935504_1 || true)"
gz2="$(_compress_if_exists SRR2935504_2 || true)"
gzs="$(_compress_if_exists SRR2935504 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H10_TATGCTCA.fq.gz
fi

fasterq-dump --split-files SRR2935505
gz1="$(_compress_if_exists SRR2935505_1 || true)"
gz2="$(_compress_if_exists SRR2935505_2 || true)"
gzs="$(_compress_if_exists SRR2935505 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H11_GCTTAACA.fq.gz
fi

fasterq-dump --split-files SRR2935506
gz1="$(_compress_if_exists SRR2935506_1 || true)"
gz2="$(_compress_if_exists SRR2935506_2 || true)"
gzs="$(_compress_if_exists SRR2935506 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-099_R295_L6_1_H12_CCAAATGC.fq.gz
fi

fasterq-dump --split-files SRR2935508
gz1="$(_compress_if_exists SRR2935508_1 || true)"
gz2="$(_compress_if_exists SRR2935508_2 || true)"
gzs="$(_compress_if_exists SRR2935508 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A02_TAGCGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935509
gz1="$(_compress_if_exists SRR2935509_1 || true)"
gz2="$(_compress_if_exists SRR2935509_2 || true)"
gzs="$(_compress_if_exists SRR2935509 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A03_GTCTGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935510
gz1="$(_compress_if_exists SRR2935510_1 || true)"
gz2="$(_compress_if_exists SRR2935510_2 || true)"
gzs="$(_compress_if_exists SRR2935510 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2935511
gz1="$(_compress_if_exists SRR2935511_1 || true)"
gz2="$(_compress_if_exists SRR2935511_2 || true)"
gzs="$(_compress_if_exists SRR2935511 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2935512
gz1="$(_compress_if_exists SRR2935512_1 || true)"
gz2="$(_compress_if_exists SRR2935512_2 || true)"
gzs="$(_compress_if_exists SRR2935512 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2935513
gz1="$(_compress_if_exists SRR2935513_1 || true)"
gz2="$(_compress_if_exists SRR2935513_2 || true)"
gzs="$(_compress_if_exists SRR2935513 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A10_ACAGACTC.fq.gz
fi

fasterq-dump --split-files SRR2935514
gz1="$(_compress_if_exists SRR2935514_1 || true)"
gz2="$(_compress_if_exists SRR2935514_2 || true)"
gzs="$(_compress_if_exists SRR2935514 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_A12_CCCTCAAA.fq.gz
fi

fasterq-dump --split-files SRR2935515
gz1="$(_compress_if_exists SRR2935515_1 || true)"
gz2="$(_compress_if_exists SRR2935515_2 || true)"
gzs="$(_compress_if_exists SRR2935515 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_B02_GTGAGATG.fq.gz
fi

fasterq-dump --split-files SRR2935516
gz1="$(_compress_if_exists SRR2935516_1 || true)"
gz2="$(_compress_if_exists SRR2935516_2 || true)"
gzs="$(_compress_if_exists SRR2935516 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2935517
gz1="$(_compress_if_exists SRR2935517_1 || true)"
gz2="$(_compress_if_exists SRR2935517_2 || true)"
gzs="$(_compress_if_exists SRR2935517 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2935518
gz1="$(_compress_if_exists SRR2935518_1 || true)"
gz2="$(_compress_if_exists SRR2935518_2 || true)"
gzs="$(_compress_if_exists SRR2935518 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_B08_TTACGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935519
gz1="$(_compress_if_exists SRR2935519_1 || true)"
gz2="$(_compress_if_exists SRR2935519_2 || true)"
gzs="$(_compress_if_exists SRR2935519 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_B09_CAAGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935520
gz1="$(_compress_if_exists SRR2935520_1 || true)"
gz2="$(_compress_if_exists SRR2935520_2 || true)"
gzs="$(_compress_if_exists SRR2935520 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2935521
gz1="$(_compress_if_exists SRR2935521_1 || true)"
gz2="$(_compress_if_exists SRR2935521_2 || true)"
gzs="$(_compress_if_exists SRR2935521 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2935522
gz1="$(_compress_if_exists SRR2935522_1 || true)"
gz2="$(_compress_if_exists SRR2935522_2 || true)"
gzs="$(_compress_if_exists SRR2935522 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C03_CGTCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2935524
gz1="$(_compress_if_exists SRR2935524_1 || true)"
gz2="$(_compress_if_exists SRR2935524_2 || true)"
gzs="$(_compress_if_exists SRR2935524 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C05_GCCTATAG.fq.gz
fi

fasterq-dump --split-files SRR2935525
gz1="$(_compress_if_exists SRR2935525_1 || true)"
gz2="$(_compress_if_exists SRR2935525_2 || true)"
gzs="$(_compress_if_exists SRR2935525 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2935526
gz1="$(_compress_if_exists SRR2935526_1 || true)"
gz2="$(_compress_if_exists SRR2935526_2 || true)"
gzs="$(_compress_if_exists SRR2935526 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2935527
gz1="$(_compress_if_exists SRR2935527_1 || true)"
gz2="$(_compress_if_exists SRR2935527_2 || true)"
gzs="$(_compress_if_exists SRR2935527 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C10_GATTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935528
gz1="$(_compress_if_exists SRR2935528_1 || true)"
gz2="$(_compress_if_exists SRR2935528_2 || true)"
gzs="$(_compress_if_exists SRR2935528 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2935529
gz1="$(_compress_if_exists SRR2935529_1 || true)"
gz2="$(_compress_if_exists SRR2935529_2 || true)"
gzs="$(_compress_if_exists SRR2935529 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D03_CGTGGATA.fq.gz
fi

fasterq-dump --split-files SRR2935530
gz1="$(_compress_if_exists SRR2935530_1 || true)"
gz2="$(_compress_if_exists SRR2935530_2 || true)"
gzs="$(_compress_if_exists SRR2935530 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D05_TGCACAAG.fq.gz
fi

fasterq-dump --split-files SRR2935531
gz1="$(_compress_if_exists SRR2935531_1 || true)"
gz2="$(_compress_if_exists SRR2935531_2 || true)"
gzs="$(_compress_if_exists SRR2935531 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D06_GTGACCTA.fq.gz
fi

fasterq-dump --split-files SRR2935532
gz1="$(_compress_if_exists SRR2935532_1 || true)"
gz2="$(_compress_if_exists SRR2935532_2 || true)"
gzs="$(_compress_if_exists SRR2935532 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D08_AGATGCCT.fq.gz
fi

fasterq-dump --split-files SRR2935533
gz1="$(_compress_if_exists SRR2935533_1 || true)"
gz2="$(_compress_if_exists SRR2935533_2 || true)"
gzs="$(_compress_if_exists SRR2935533 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D09_TGAGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935534
gz1="$(_compress_if_exists SRR2935534_1 || true)"
gz2="$(_compress_if_exists SRR2935534_2 || true)"
gzs="$(_compress_if_exists SRR2935534 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2935535
gz1="$(_compress_if_exists SRR2935535_1 || true)"
gz2="$(_compress_if_exists SRR2935535_2 || true)"
gzs="$(_compress_if_exists SRR2935535 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_D11_CCACTTTG.fq.gz
fi

fasterq-dump --split-files SRR2935537
gz1="$(_compress_if_exists SRR2935537_1 || true)"
gz2="$(_compress_if_exists SRR2935537_2 || true)"
gzs="$(_compress_if_exists SRR2935537 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E03_CCTCTAGA.fq.gz
fi

fasterq-dump --split-files SRR2935538
gz1="$(_compress_if_exists SRR2935538_1 || true)"
gz2="$(_compress_if_exists SRR2935538_2 || true)"
gzs="$(_compress_if_exists SRR2935538 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E04_CAGTACGT.fq.gz
fi

fasterq-dump --split-files SRR2935539
gz1="$(_compress_if_exists SRR2935539_1 || true)"
gz2="$(_compress_if_exists SRR2935539_2 || true)"
gzs="$(_compress_if_exists SRR2935539 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E05_TGTCACTG.fq.gz
fi

fasterq-dump --split-files SRR2935540
gz1="$(_compress_if_exists SRR2935540_1 || true)"
gz2="$(_compress_if_exists SRR2935540_2 || true)"
gzs="$(_compress_if_exists SRR2935540 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E06_CCGTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2935541
gz1="$(_compress_if_exists SRR2935541_1 || true)"
gz2="$(_compress_if_exists SRR2935541_2 || true)"
gzs="$(_compress_if_exists SRR2935541 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E09_GACATCAC.fq.gz
fi

fasterq-dump --split-files SRR2935542
gz1="$(_compress_if_exists SRR2935542_1 || true)"
gz2="$(_compress_if_exists SRR2935542_2 || true)"
gzs="$(_compress_if_exists SRR2935542 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2935543
gz1="$(_compress_if_exists SRR2935543_1 || true)"
gz2="$(_compress_if_exists SRR2935543_2 || true)"
gzs="$(_compress_if_exists SRR2935543 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E11_TGTGAGAC.fq.gz
fi

fasterq-dump --split-files SRR2935544
gz1="$(_compress_if_exists SRR2935544_1 || true)"
gz2="$(_compress_if_exists SRR2935544_2 || true)"
gzs="$(_compress_if_exists SRR2935544 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2935545
gz1="$(_compress_if_exists SRR2935545_1 || true)"
gz2="$(_compress_if_exists SRR2935545_2 || true)"
gzs="$(_compress_if_exists SRR2935545 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_F01_CAGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935546
gz1="$(_compress_if_exists SRR2935546_1 || true)"
gz2="$(_compress_if_exists SRR2935546_2 || true)"
gzs="$(_compress_if_exists SRR2935546 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_F02_CATAACCC.fq.gz
fi

fasterq-dump --split-files SRR2935547
gz1="$(_compress_if_exists SRR2935547_1 || true)"
gz2="$(_compress_if_exists SRR2935547_2 || true)"
gzs="$(_compress_if_exists SRR2935547 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2935548
gz1="$(_compress_if_exists SRR2935548_1 || true)"
gz2="$(_compress_if_exists SRR2935548_2 || true)"
gzs="$(_compress_if_exists SRR2935548 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_F05_AAGAGCGT.fq.gz
fi

fasterq-dump --split-files SRR2935549
gz1="$(_compress_if_exists SRR2935549_1 || true)"
gz2="$(_compress_if_exists SRR2935549_2 || true)"
gzs="$(_compress_if_exists SRR2935549 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2935550
gz1="$(_compress_if_exists SRR2935550_1 || true)"
gz2="$(_compress_if_exists SRR2935550_2 || true)"
gzs="$(_compress_if_exists SRR2935550 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_F11_GGTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935552
gz1="$(_compress_if_exists SRR2935552_1 || true)"
gz2="$(_compress_if_exists SRR2935552_2 || true)"
gzs="$(_compress_if_exists SRR2935552 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_G02_GTACGAAG.fq.gz
fi

fasterq-dump --split-files SRR2935553
gz1="$(_compress_if_exists SRR2935553_1 || true)"
gz2="$(_compress_if_exists SRR2935553_2 || true)"
gzs="$(_compress_if_exists SRR2935553 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935555
gz1="$(_compress_if_exists SRR2935555_1 || true)"
gz2="$(_compress_if_exists SRR2935555_2 || true)"
gzs="$(_compress_if_exists SRR2935555 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_G10_GCGAGATA.fq.gz
fi

fasterq-dump --split-files SRR2935556
gz1="$(_compress_if_exists SRR2935556_1 || true)"
gz2="$(_compress_if_exists SRR2935556_2 || true)"
gzs="$(_compress_if_exists SRR2935556 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2935557
gz1="$(_compress_if_exists SRR2935557_1 || true)"
gz2="$(_compress_if_exists SRR2935557_2 || true)"
gzs="$(_compress_if_exists SRR2935557 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_H05_AGCAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935559
gz1="$(_compress_if_exists SRR2935559_1 || true)"
gz2="$(_compress_if_exists SRR2935559_2 || true)"
gzs="$(_compress_if_exists SRR2935559 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2935560
gz1="$(_compress_if_exists SRR2935560_1 || true)"
gz2="$(_compress_if_exists SRR2935560_2 || true)"
gzs="$(_compress_if_exists SRR2935560 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_H11_GTTCTGCT.fq.gz
fi

fasterq-dump --split-files SRR2935561
gz1="$(_compress_if_exists SRR2935561_1 || true)"
gz2="$(_compress_if_exists SRR2935561_2 || true)"
gzs="$(_compress_if_exists SRR2935561 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-100_R295_L6_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2935562
gz1="$(_compress_if_exists SRR2935562_1 || true)"
gz2="$(_compress_if_exists SRR2935562_2 || true)"
gzs="$(_compress_if_exists SRR2935562 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_A01_CTTTCTGG.fq.gz
fi

fasterq-dump --split-files SRR2935563
gz1="$(_compress_if_exists SRR2935563_1 || true)"
gz2="$(_compress_if_exists SRR2935563_2 || true)"
gzs="$(_compress_if_exists SRR2935563 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2935564
gz1="$(_compress_if_exists SRR2935564_1 || true)"
gz2="$(_compress_if_exists SRR2935564_2 || true)"
gzs="$(_compress_if_exists SRR2935564 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_A04_GCTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935565
gz1="$(_compress_if_exists SRR2935565_1 || true)"
gz2="$(_compress_if_exists SRR2935565_2 || true)"
gzs="$(_compress_if_exists SRR2935565 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_A05_GCTTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935566
gz1="$(_compress_if_exists SRR2935566_1 || true)"
gz2="$(_compress_if_exists SRR2935566_2 || true)"
gzs="$(_compress_if_exists SRR2935566 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935567
gz1="$(_compress_if_exists SRR2935567_1 || true)"
gz2="$(_compress_if_exists SRR2935567_2 || true)"
gzs="$(_compress_if_exists SRR2935567 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_A12_CCATTAGC.fq.gz
fi

fasterq-dump --split-files SRR2935568
gz1="$(_compress_if_exists SRR2935568_1 || true)"
gz2="$(_compress_if_exists SRR2935568_2 || true)"
gzs="$(_compress_if_exists SRR2935568 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2935570
gz1="$(_compress_if_exists SRR2935570_1 || true)"
gz2="$(_compress_if_exists SRR2935570_2 || true)"
gzs="$(_compress_if_exists SRR2935570 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_B07_TGTTCGGA.fq.gz
fi

fasterq-dump --split-files SRR2935571
gz1="$(_compress_if_exists SRR2935571_1 || true)"
gz2="$(_compress_if_exists SRR2935571_2 || true)"
gzs="$(_compress_if_exists SRR2935571 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935572
gz1="$(_compress_if_exists SRR2935572_1 || true)"
gz2="$(_compress_if_exists SRR2935572_2 || true)"
gzs="$(_compress_if_exists SRR2935572 || true)"

fasterq-dump --split-files SRR2935573
gz1="$(_compress_if_exists SRR2935573_1 || true)"
gz2="$(_compress_if_exists SRR2935573_2 || true)"
gzs="$(_compress_if_exists SRR2935573 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2935575
gz1="$(_compress_if_exists SRR2935575_1 || true)"
gz2="$(_compress_if_exists SRR2935575_2 || true)"
gzs="$(_compress_if_exists SRR2935575 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2935576
gz1="$(_compress_if_exists SRR2935576_1 || true)"
gz2="$(_compress_if_exists SRR2935576_2 || true)"
gzs="$(_compress_if_exists SRR2935576 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935577
gz1="$(_compress_if_exists SRR2935577_1 || true)"
gz2="$(_compress_if_exists SRR2935577_2 || true)"
gzs="$(_compress_if_exists SRR2935577 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C08_ACTGATGC.fq.gz
fi

fasterq-dump --split-files SRR2935578
gz1="$(_compress_if_exists SRR2935578_1 || true)"
gz2="$(_compress_if_exists SRR2935578_2 || true)"
gzs="$(_compress_if_exists SRR2935578 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2935579
gz1="$(_compress_if_exists SRR2935579_1 || true)"
gz2="$(_compress_if_exists SRR2935579_2 || true)"
gzs="$(_compress_if_exists SRR2935579 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C10_GCGAATCA.fq.gz
fi

fasterq-dump --split-files SRR2935580
gz1="$(_compress_if_exists SRR2935580_1 || true)"
gz2="$(_compress_if_exists SRR2935580_2 || true)"
gzs="$(_compress_if_exists SRR2935580 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935581
gz1="$(_compress_if_exists SRR2935581_1 || true)"
gz2="$(_compress_if_exists SRR2935581_2 || true)"
gzs="$(_compress_if_exists SRR2935581 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_D01_AGGATCGT.fq.gz
fi

fasterq-dump --split-files SRR2935582
gz1="$(_compress_if_exists SRR2935582_1 || true)"
gz2="$(_compress_if_exists SRR2935582_2 || true)"
gzs="$(_compress_if_exists SRR2935582 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935583
gz1="$(_compress_if_exists SRR2935583_1 || true)"
gz2="$(_compress_if_exists SRR2935583_2 || true)"
gzs="$(_compress_if_exists SRR2935583 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935585
gz1="$(_compress_if_exists SRR2935585_1 || true)"
gz2="$(_compress_if_exists SRR2935585_2 || true)"
gzs="$(_compress_if_exists SRR2935585 || true)"

fasterq-dump --split-files SRR2935587
gz1="$(_compress_if_exists SRR2935587_1 || true)"
gz2="$(_compress_if_exists SRR2935587_2 || true)"
gzs="$(_compress_if_exists SRR2935587 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2935588
gz1="$(_compress_if_exists SRR2935588_1 || true)"
gz2="$(_compress_if_exists SRR2935588_2 || true)"
gzs="$(_compress_if_exists SRR2935588 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2935589
gz1="$(_compress_if_exists SRR2935589_1 || true)"
gz2="$(_compress_if_exists SRR2935589_2 || true)"
gzs="$(_compress_if_exists SRR2935589 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2935590
gz1="$(_compress_if_exists SRR2935590_1 || true)"
gz2="$(_compress_if_exists SRR2935590_2 || true)"
gzs="$(_compress_if_exists SRR2935590 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_E03_GAAGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935591
gz1="$(_compress_if_exists SRR2935591_1 || true)"
gz2="$(_compress_if_exists SRR2935591_2 || true)"
gzs="$(_compress_if_exists SRR2935591 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935592
gz1="$(_compress_if_exists SRR2935592_1 || true)"
gz2="$(_compress_if_exists SRR2935592_2 || true)"
gzs="$(_compress_if_exists SRR2935592 || true)"

fasterq-dump --split-files SRR2935593
gz1="$(_compress_if_exists SRR2935593_1 || true)"
gz2="$(_compress_if_exists SRR2935593_2 || true)"
gzs="$(_compress_if_exists SRR2935593 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2935594
gz1="$(_compress_if_exists SRR2935594_1 || true)"
gz2="$(_compress_if_exists SRR2935594_2 || true)"
gzs="$(_compress_if_exists SRR2935594 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_E09_CATCATCC.fq.gz
fi

fasterq-dump --split-files SRR2935595
gz1="$(_compress_if_exists SRR2935595_1 || true)"
gz2="$(_compress_if_exists SRR2935595_2 || true)"
gzs="$(_compress_if_exists SRR2935595 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_E11_CTTTGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935596
gz1="$(_compress_if_exists SRR2935596_1 || true)"
gz2="$(_compress_if_exists SRR2935596_2 || true)"
gzs="$(_compress_if_exists SRR2935596 || true)"

fasterq-dump --split-files SRR2935597
gz1="$(_compress_if_exists SRR2935597_1 || true)"
gz2="$(_compress_if_exists SRR2935597_2 || true)"
gzs="$(_compress_if_exists SRR2935597 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_F03_ACTCACCA.fq.gz
fi

fasterq-dump --split-files SRR2935598
gz1="$(_compress_if_exists SRR2935598_1 || true)"
gz2="$(_compress_if_exists SRR2935598_2 || true)"
gzs="$(_compress_if_exists SRR2935598 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_F05_CGATTGGA.fq.gz
fi

fasterq-dump --split-files SRR2935599
gz1="$(_compress_if_exists SRR2935599_1 || true)"
gz2="$(_compress_if_exists SRR2935599_2 || true)"
gzs="$(_compress_if_exists SRR2935599 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935600
gz1="$(_compress_if_exists SRR2935600_1 || true)"
gz2="$(_compress_if_exists SRR2935600_2 || true)"
gzs="$(_compress_if_exists SRR2935600 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2935601
gz1="$(_compress_if_exists SRR2935601_1 || true)"
gz2="$(_compress_if_exists SRR2935601_2 || true)"
gzs="$(_compress_if_exists SRR2935601 || true)"

fasterq-dump --split-files SRR2935603
gz1="$(_compress_if_exists SRR2935603_1 || true)"
gz2="$(_compress_if_exists SRR2935603_2 || true)"
gzs="$(_compress_if_exists SRR2935603 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_G03_GGATAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935604
gz1="$(_compress_if_exists SRR2935604_1 || true)"
gz2="$(_compress_if_exists SRR2935604_2 || true)"
gzs="$(_compress_if_exists SRR2935604 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2935605
gz1="$(_compress_if_exists SRR2935605_1 || true)"
gz2="$(_compress_if_exists SRR2935605_2 || true)"
gzs="$(_compress_if_exists SRR2935605 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2935606
gz1="$(_compress_if_exists SRR2935606_1 || true)"
gz2="$(_compress_if_exists SRR2935606_2 || true)"
gzs="$(_compress_if_exists SRR2935606 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935607
gz1="$(_compress_if_exists SRR2935607_1 || true)"
gz2="$(_compress_if_exists SRR2935607_2 || true)"
gzs="$(_compress_if_exists SRR2935607 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_G09_ACTCGCTT.fq.gz
fi

fasterq-dump --split-files SRR2935608
gz1="$(_compress_if_exists SRR2935608_1 || true)"
gz2="$(_compress_if_exists SRR2935608_2 || true)"
gzs="$(_compress_if_exists SRR2935608 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_G10_AGTCTCCT.fq.gz
fi

fasterq-dump --split-files SRR2935609
gz1="$(_compress_if_exists SRR2935609_1 || true)"
gz2="$(_compress_if_exists SRR2935609_2 || true)"
gzs="$(_compress_if_exists SRR2935609 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_H01_ATCGTGGT.fq.gz
fi

fasterq-dump --split-files SRR2935610
gz1="$(_compress_if_exists SRR2935610_1 || true)"
gz2="$(_compress_if_exists SRR2935610_2 || true)"
gzs="$(_compress_if_exists SRR2935610 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935611
gz1="$(_compress_if_exists SRR2935611_1 || true)"
gz2="$(_compress_if_exists SRR2935611_2 || true)"
gzs="$(_compress_if_exists SRR2935611 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_H03_CGGATTAC.fq.gz
fi

fasterq-dump --split-files SRR2935613
gz1="$(_compress_if_exists SRR2935613_1 || true)"
gz2="$(_compress_if_exists SRR2935613_2 || true)"
gzs="$(_compress_if_exists SRR2935613 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_H05_GGGTCATA.fq.gz
fi

fasterq-dump --split-files SRR2935615
gz1="$(_compress_if_exists SRR2935615_1 || true)"
gz2="$(_compress_if_exists SRR2935615_2 || true)"
gzs="$(_compress_if_exists SRR2935615 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-101_R293_L5_1_H10_ATCGGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935616
gz1="$(_compress_if_exists SRR2935616_1 || true)"
gz2="$(_compress_if_exists SRR2935616_2 || true)"
gzs="$(_compress_if_exists SRR2935616 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2935617
gz1="$(_compress_if_exists SRR2935617_1 || true)"
gz2="$(_compress_if_exists SRR2935617_2 || true)"
gzs="$(_compress_if_exists SRR2935617 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_A03_AACGTTGG.fq.gz
fi

fasterq-dump --split-files SRR2935618
gz1="$(_compress_if_exists SRR2935618_1 || true)"
gz2="$(_compress_if_exists SRR2935618_2 || true)"
gzs="$(_compress_if_exists SRR2935618 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_A06_CTCTCTCA.fq.gz
fi

fasterq-dump --split-files SRR2935620
gz1="$(_compress_if_exists SRR2935620_1 || true)"
gz2="$(_compress_if_exists SRR2935620_2 || true)"
gzs="$(_compress_if_exists SRR2935620 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_A09_ACTAGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935621
gz1="$(_compress_if_exists SRR2935621_1 || true)"
gz2="$(_compress_if_exists SRR2935621_2 || true)"
gzs="$(_compress_if_exists SRR2935621 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935623
gz1="$(_compress_if_exists SRR2935623_1 || true)"
gz2="$(_compress_if_exists SRR2935623_2 || true)"
gzs="$(_compress_if_exists SRR2935623 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_B10_TCGTCGAT.fq.gz
fi

fasterq-dump --split-files SRR2935627
gz1="$(_compress_if_exists SRR2935627_1 || true)"
gz2="$(_compress_if_exists SRR2935627_2 || true)"
gzs="$(_compress_if_exists SRR2935627 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_C06_CTAACACC.fq.gz
fi

fasterq-dump --split-files SRR2935630
gz1="$(_compress_if_exists SRR2935630_1 || true)"
gz2="$(_compress_if_exists SRR2935630_2 || true)"
gzs="$(_compress_if_exists SRR2935630 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_D06_GGTAAGAC.fq.gz
fi

fasterq-dump --split-files SRR2935631
gz1="$(_compress_if_exists SRR2935631_1 || true)"
gz2="$(_compress_if_exists SRR2935631_2 || true)"
gzs="$(_compress_if_exists SRR2935631 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_D08_CCGAAACT.fq.gz
fi

fasterq-dump --split-files SRR2935632
gz1="$(_compress_if_exists SRR2935632_1 || true)"
gz2="$(_compress_if_exists SRR2935632_2 || true)"
gzs="$(_compress_if_exists SRR2935632 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_D12_GGACAATC.fq.gz
fi

fasterq-dump --split-files SRR2935634
gz1="$(_compress_if_exists SRR2935634_1 || true)"
gz2="$(_compress_if_exists SRR2935634_2 || true)"
gzs="$(_compress_if_exists SRR2935634 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_E02_ATACGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935635
gz1="$(_compress_if_exists SRR2935635_1 || true)"
gz2="$(_compress_if_exists SRR2935635_2 || true)"
gzs="$(_compress_if_exists SRR2935635 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2935637
gz1="$(_compress_if_exists SRR2935637_1 || true)"
gz2="$(_compress_if_exists SRR2935637_2 || true)"
gzs="$(_compress_if_exists SRR2935637 || true)"

fasterq-dump --split-files SRR2935639
gz1="$(_compress_if_exists SRR2935639_1 || true)"
gz2="$(_compress_if_exists SRR2935639_2 || true)"
gzs="$(_compress_if_exists SRR2935639 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_F01_GAACCAGA.fq.gz
fi

fasterq-dump --split-files SRR2935640
gz1="$(_compress_if_exists SRR2935640_1 || true)"
gz2="$(_compress_if_exists SRR2935640_2 || true)"
gzs="$(_compress_if_exists SRR2935640 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2935641
gz1="$(_compress_if_exists SRR2935641_1 || true)"
gz2="$(_compress_if_exists SRR2935641_2 || true)"
gzs="$(_compress_if_exists SRR2935641 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_F07_GCTCCATA.fq.gz
fi

fasterq-dump --split-files SRR2935643
gz1="$(_compress_if_exists SRR2935643_1 || true)"
gz2="$(_compress_if_exists SRR2935643_2 || true)"
gzs="$(_compress_if_exists SRR2935643 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_G01_TTGAGAGG.fq.gz
fi

fasterq-dump --split-files SRR2935645
gz1="$(_compress_if_exists SRR2935645_1 || true)"
gz2="$(_compress_if_exists SRR2935645_2 || true)"
gzs="$(_compress_if_exists SRR2935645 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2935647
gz1="$(_compress_if_exists SRR2935647_1 || true)"
gz2="$(_compress_if_exists SRR2935647_2 || true)"
gzs="$(_compress_if_exists SRR2935647 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_G07_AGTGAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935648
gz1="$(_compress_if_exists SRR2935648_1 || true)"
gz2="$(_compress_if_exists SRR2935648_2 || true)"
gzs="$(_compress_if_exists SRR2935648 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_H01_GTGCATAC.fq.gz
fi

fasterq-dump --split-files SRR2935649
gz1="$(_compress_if_exists SRR2935649_1 || true)"
gz2="$(_compress_if_exists SRR2935649_2 || true)"
gzs="$(_compress_if_exists SRR2935649 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_H02_ATCTTCCC.fq.gz
fi

fasterq-dump --split-files SRR2935650
gz1="$(_compress_if_exists SRR2935650_1 || true)"
gz2="$(_compress_if_exists SRR2935650_2 || true)"
gzs="$(_compress_if_exists SRR2935650 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_H04_GCACATGT.fq.gz
fi

fasterq-dump --split-files SRR2935651
gz1="$(_compress_if_exists SRR2935651_1 || true)"
gz2="$(_compress_if_exists SRR2935651_2 || true)"
gzs="$(_compress_if_exists SRR2935651 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_H06_TGACACTG.fq.gz
fi

fasterq-dump --split-files SRR2935652
gz1="$(_compress_if_exists SRR2935652_1 || true)"
gz2="$(_compress_if_exists SRR2935652_2 || true)"
gzs="$(_compress_if_exists SRR2935652 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-102_R293_L5_1_H07_TCTTACCC.fq.gz
fi

fasterq-dump --split-files SRR2935654
gz1="$(_compress_if_exists SRR2935654_1 || true)"
gz2="$(_compress_if_exists SRR2935654_2 || true)"
gzs="$(_compress_if_exists SRR2935654 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2935655
gz1="$(_compress_if_exists SRR2935655_1 || true)"
gz2="$(_compress_if_exists SRR2935655_2 || true)"
gzs="$(_compress_if_exists SRR2935655 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_A04_GCTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935656
gz1="$(_compress_if_exists SRR2935656_1 || true)"
gz2="$(_compress_if_exists SRR2935656_2 || true)"
gzs="$(_compress_if_exists SRR2935656 || true)"

fasterq-dump --split-files SRR2935657
gz1="$(_compress_if_exists SRR2935657_1 || true)"
gz2="$(_compress_if_exists SRR2935657_2 || true)"
gzs="$(_compress_if_exists SRR2935657 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_A07_TGAGGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935658
gz1="$(_compress_if_exists SRR2935658_1 || true)"
gz2="$(_compress_if_exists SRR2935658_2 || true)"
gzs="$(_compress_if_exists SRR2935658 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_A09_CTCACTAC.fq.gz
fi

fasterq-dump --split-files SRR2935659
gz1="$(_compress_if_exists SRR2935659_1 || true)"
gz2="$(_compress_if_exists SRR2935659_2 || true)"
gzs="$(_compress_if_exists SRR2935659 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935662
gz1="$(_compress_if_exists SRR2935662_1 || true)"
gz2="$(_compress_if_exists SRR2935662_2 || true)"
gzs="$(_compress_if_exists SRR2935662 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935663
gz1="$(_compress_if_exists SRR2935663_1 || true)"
gz2="$(_compress_if_exists SRR2935663_2 || true)"
gzs="$(_compress_if_exists SRR2935663 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2935664
gz1="$(_compress_if_exists SRR2935664_1 || true)"
gz2="$(_compress_if_exists SRR2935664_2 || true)"
gzs="$(_compress_if_exists SRR2935664 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935665
gz1="$(_compress_if_exists SRR2935665_1 || true)"
gz2="$(_compress_if_exists SRR2935665_2 || true)"
gzs="$(_compress_if_exists SRR2935665 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B07_TGTTCGGA.fq.gz
fi

fasterq-dump --split-files SRR2935666
gz1="$(_compress_if_exists SRR2935666_1 || true)"
gz2="$(_compress_if_exists SRR2935666_2 || true)"
gzs="$(_compress_if_exists SRR2935666 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B08_CCGGATAA.fq.gz
fi

fasterq-dump --split-files SRR2935667
gz1="$(_compress_if_exists SRR2935667_1 || true)"
gz2="$(_compress_if_exists SRR2935667_2 || true)"
gzs="$(_compress_if_exists SRR2935667 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B09_TACACCAC.fq.gz
fi

fasterq-dump --split-files SRR2935668
gz1="$(_compress_if_exists SRR2935668_1 || true)"
gz2="$(_compress_if_exists SRR2935668_2 || true)"
gzs="$(_compress_if_exists SRR2935668 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935669
gz1="$(_compress_if_exists SRR2935669_1 || true)"
gz2="$(_compress_if_exists SRR2935669_2 || true)"
gzs="$(_compress_if_exists SRR2935669 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B11_ATTCGTCC.fq.gz
fi

fasterq-dump --split-files SRR2935670
gz1="$(_compress_if_exists SRR2935670_1 || true)"
gz2="$(_compress_if_exists SRR2935670_2 || true)"
gzs="$(_compress_if_exists SRR2935670 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2935673
gz1="$(_compress_if_exists SRR2935673_1 || true)"
gz2="$(_compress_if_exists SRR2935673_2 || true)"
gzs="$(_compress_if_exists SRR2935673 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2935674
gz1="$(_compress_if_exists SRR2935674_1 || true)"
gz2="$(_compress_if_exists SRR2935674_2 || true)"
gzs="$(_compress_if_exists SRR2935674 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935675
gz1="$(_compress_if_exists SRR2935675_1 || true)"
gz2="$(_compress_if_exists SRR2935675_2 || true)"
gzs="$(_compress_if_exists SRR2935675 || true)"

fasterq-dump --split-files SRR2935676
gz1="$(_compress_if_exists SRR2935676_1 || true)"
gz2="$(_compress_if_exists SRR2935676_2 || true)"
gzs="$(_compress_if_exists SRR2935676 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C06_CAGAGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935677
gz1="$(_compress_if_exists SRR2935677_1 || true)"
gz2="$(_compress_if_exists SRR2935677_2 || true)"
gzs="$(_compress_if_exists SRR2935677 || true)"

fasterq-dump --split-files SRR2935678
gz1="$(_compress_if_exists SRR2935678_1 || true)"
gz2="$(_compress_if_exists SRR2935678_2 || true)"
gzs="$(_compress_if_exists SRR2935678 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C08_ACTGATGC.fq.gz
fi

fasterq-dump --split-files SRR2935679
gz1="$(_compress_if_exists SRR2935679_1 || true)"
gz2="$(_compress_if_exists SRR2935679_2 || true)"
gzs="$(_compress_if_exists SRR2935679 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2935680
gz1="$(_compress_if_exists SRR2935680_1 || true)"
gz2="$(_compress_if_exists SRR2935680_2 || true)"
gzs="$(_compress_if_exists SRR2935680 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935681
gz1="$(_compress_if_exists SRR2935681_1 || true)"
gz2="$(_compress_if_exists SRR2935681_2 || true)"
gzs="$(_compress_if_exists SRR2935681 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935682
gz1="$(_compress_if_exists SRR2935682_1 || true)"
gz2="$(_compress_if_exists SRR2935682_2 || true)"
gzs="$(_compress_if_exists SRR2935682 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D02_TGCTCCTT.fq.gz
fi

fasterq-dump --split-files SRR2935683
gz1="$(_compress_if_exists SRR2935683_1 || true)"
gz2="$(_compress_if_exists SRR2935683_2 || true)"
gzs="$(_compress_if_exists SRR2935683 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935684
gz1="$(_compress_if_exists SRR2935684_1 || true)"
gz2="$(_compress_if_exists SRR2935684_2 || true)"
gzs="$(_compress_if_exists SRR2935684 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935685
gz1="$(_compress_if_exists SRR2935685_1 || true)"
gz2="$(_compress_if_exists SRR2935685_2 || true)"
gzs="$(_compress_if_exists SRR2935685 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D07_GAAACCCA.fq.gz
fi

fasterq-dump --split-files SRR2935686
gz1="$(_compress_if_exists SRR2935686_1 || true)"
gz2="$(_compress_if_exists SRR2935686_2 || true)"
gzs="$(_compress_if_exists SRR2935686 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D08_GCGTATTG.fq.gz
fi

fasterq-dump --split-files SRR2935687
gz1="$(_compress_if_exists SRR2935687_1 || true)"
gz2="$(_compress_if_exists SRR2935687_2 || true)"
gzs="$(_compress_if_exists SRR2935687 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D09_TAGCTGGA.fq.gz
fi

fasterq-dump --split-files SRR2935688
gz1="$(_compress_if_exists SRR2935688_1 || true)"
gz2="$(_compress_if_exists SRR2935688_2 || true)"
gzs="$(_compress_if_exists SRR2935688 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2935689
gz1="$(_compress_if_exists SRR2935689_1 || true)"
gz2="$(_compress_if_exists SRR2935689_2 || true)"
gzs="$(_compress_if_exists SRR2935689 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2935690
gz1="$(_compress_if_exists SRR2935690_1 || true)"
gz2="$(_compress_if_exists SRR2935690_2 || true)"
gzs="$(_compress_if_exists SRR2935690 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2935691
gz1="$(_compress_if_exists SRR2935691_1 || true)"
gz2="$(_compress_if_exists SRR2935691_2 || true)"
gzs="$(_compress_if_exists SRR2935691 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_E03_GAAGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935692
gz1="$(_compress_if_exists SRR2935692_1 || true)"
gz2="$(_compress_if_exists SRR2935692_2 || true)"
gzs="$(_compress_if_exists SRR2935692 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935694
gz1="$(_compress_if_exists SRR2935694_1 || true)"
gz2="$(_compress_if_exists SRR2935694_2 || true)"
gzs="$(_compress_if_exists SRR2935694 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2935695
gz1="$(_compress_if_exists SRR2935695_1 || true)"
gz2="$(_compress_if_exists SRR2935695_2 || true)"
gzs="$(_compress_if_exists SRR2935695 || true)"

fasterq-dump --split-files SRR2935696
gz1="$(_compress_if_exists SRR2935696_1 || true)"
gz2="$(_compress_if_exists SRR2935696_2 || true)"
gzs="$(_compress_if_exists SRR2935696 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2935697
gz1="$(_compress_if_exists SRR2935697_1 || true)"
gz2="$(_compress_if_exists SRR2935697_2 || true)"
gzs="$(_compress_if_exists SRR2935697 || true)"

fasterq-dump --split-files SRR2935699
gz1="$(_compress_if_exists SRR2935699_1 || true)"
gz2="$(_compress_if_exists SRR2935699_2 || true)"
gzs="$(_compress_if_exists SRR2935699 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935700
gz1="$(_compress_if_exists SRR2935700_1 || true)"
gz2="$(_compress_if_exists SRR2935700_2 || true)"
gzs="$(_compress_if_exists SRR2935700 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_F07_GTAAGTCG.fq.gz
fi

fasterq-dump --split-files SRR2935701
gz1="$(_compress_if_exists SRR2935701_1 || true)"
gz2="$(_compress_if_exists SRR2935701_2 || true)"
gzs="$(_compress_if_exists SRR2935701 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_F08_TCCAAAGC.fq.gz
fi

fasterq-dump --split-files SRR2935702
gz1="$(_compress_if_exists SRR2935702_1 || true)"
gz2="$(_compress_if_exists SRR2935702_2 || true)"
gzs="$(_compress_if_exists SRR2935702 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_F12_TGTGCATG.fq.gz
fi

fasterq-dump --split-files SRR2935703
gz1="$(_compress_if_exists SRR2935703_1 || true)"
gz2="$(_compress_if_exists SRR2935703_2 || true)"
gzs="$(_compress_if_exists SRR2935703 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_G01_CTCACAGA.fq.gz
fi

fasterq-dump --split-files SRR2935704
gz1="$(_compress_if_exists SRR2935704_1 || true)"
gz2="$(_compress_if_exists SRR2935704_2 || true)"
gzs="$(_compress_if_exists SRR2935704 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2935705
gz1="$(_compress_if_exists SRR2935705_1 || true)"
gz2="$(_compress_if_exists SRR2935705_2 || true)"
gzs="$(_compress_if_exists SRR2935705 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_G03_GGATAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935707
gz1="$(_compress_if_exists SRR2935707_1 || true)"
gz2="$(_compress_if_exists SRR2935707_2 || true)"
gzs="$(_compress_if_exists SRR2935707 || true)"

fasterq-dump --split-files SRR2935709
gz1="$(_compress_if_exists SRR2935709_1 || true)"
gz2="$(_compress_if_exists SRR2935709_2 || true)"
gzs="$(_compress_if_exists SRR2935709 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935710
gz1="$(_compress_if_exists SRR2935710_1 || true)"
gz2="$(_compress_if_exists SRR2935710_2 || true)"
gzs="$(_compress_if_exists SRR2935710 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_G09_ACTCGCTT.fq.gz
fi

fasterq-dump --split-files SRR2935711
gz1="$(_compress_if_exists SRR2935711_1 || true)"
gz2="$(_compress_if_exists SRR2935711_2 || true)"
gzs="$(_compress_if_exists SRR2935711 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_G11_TGTAGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935714
gz1="$(_compress_if_exists SRR2935714_1 || true)"
gz2="$(_compress_if_exists SRR2935714_2 || true)"
gzs="$(_compress_if_exists SRR2935714 || true)"

fasterq-dump --split-files SRR2935715
gz1="$(_compress_if_exists SRR2935715_1 || true)"
gz2="$(_compress_if_exists SRR2935715_2 || true)"
gzs="$(_compress_if_exists SRR2935715 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_H09_GGAGATCA.fq.gz
fi

fasterq-dump --split-files SRR2935717
gz1="$(_compress_if_exists SRR2935717_1 || true)"
gz2="$(_compress_if_exists SRR2935717_2 || true)"
gzs="$(_compress_if_exists SRR2935717 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-103_R295_L5_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2935718
gz1="$(_compress_if_exists SRR2935718_1 || true)"
gz2="$(_compress_if_exists SRR2935718_2 || true)"
gzs="$(_compress_if_exists SRR2935718 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_A01_CTTTCTGG.fq.gz
fi

fasterq-dump --split-files SRR2935719
gz1="$(_compress_if_exists SRR2935719_1 || true)"
gz2="$(_compress_if_exists SRR2935719_2 || true)"
gzs="$(_compress_if_exists SRR2935719 || true)"

fasterq-dump --split-files SRR2935720
gz1="$(_compress_if_exists SRR2935720_1 || true)"
gz2="$(_compress_if_exists SRR2935720_2 || true)"
gzs="$(_compress_if_exists SRR2935720 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_A06_GGTCTGAA.fq.gz
fi

fasterq-dump --split-files SRR2935721
gz1="$(_compress_if_exists SRR2935721_1 || true)"
gz2="$(_compress_if_exists SRR2935721_2 || true)"
gzs="$(_compress_if_exists SRR2935721 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_A08_AGCTACCA.fq.gz
fi

fasterq-dump --split-files SRR2935722
gz1="$(_compress_if_exists SRR2935722_1 || true)"
gz2="$(_compress_if_exists SRR2935722_2 || true)"
gzs="$(_compress_if_exists SRR2935722 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_A09_CTCACTAC.fq.gz
fi

fasterq-dump --split-files SRR2935723
gz1="$(_compress_if_exists SRR2935723_1 || true)"
gz2="$(_compress_if_exists SRR2935723_2 || true)"
gzs="$(_compress_if_exists SRR2935723 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935724
gz1="$(_compress_if_exists SRR2935724_1 || true)"
gz2="$(_compress_if_exists SRR2935724_2 || true)"
gzs="$(_compress_if_exists SRR2935724 || true)"

fasterq-dump --split-files SRR2935725
gz1="$(_compress_if_exists SRR2935725_1 || true)"
gz2="$(_compress_if_exists SRR2935725_2 || true)"
gzs="$(_compress_if_exists SRR2935725 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2935726
gz1="$(_compress_if_exists SRR2935726_1 || true)"
gz2="$(_compress_if_exists SRR2935726_2 || true)"
gzs="$(_compress_if_exists SRR2935726 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2935727
gz1="$(_compress_if_exists SRR2935727_1 || true)"
gz2="$(_compress_if_exists SRR2935727_2 || true)"
gzs="$(_compress_if_exists SRR2935727 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2935728
gz1="$(_compress_if_exists SRR2935728_1 || true)"
gz2="$(_compress_if_exists SRR2935728_2 || true)"
gzs="$(_compress_if_exists SRR2935728 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935729
gz1="$(_compress_if_exists SRR2935729_1 || true)"
gz2="$(_compress_if_exists SRR2935729_2 || true)"
gzs="$(_compress_if_exists SRR2935729 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_B08_CCGGATAA.fq.gz
fi

fasterq-dump --split-files SRR2935730
gz1="$(_compress_if_exists SRR2935730_1 || true)"
gz2="$(_compress_if_exists SRR2935730_2 || true)"
gzs="$(_compress_if_exists SRR2935730 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2935731
gz1="$(_compress_if_exists SRR2935731_1 || true)"
gz2="$(_compress_if_exists SRR2935731_2 || true)"
gzs="$(_compress_if_exists SRR2935731 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_C01_AAATGCGG.fq.gz
fi

fasterq-dump --split-files SRR2935732
gz1="$(_compress_if_exists SRR2935732_1 || true)"
gz2="$(_compress_if_exists SRR2935732_2 || true)"
gzs="$(_compress_if_exists SRR2935732 || true)"

fasterq-dump --split-files SRR2935733
gz1="$(_compress_if_exists SRR2935733_1 || true)"
gz2="$(_compress_if_exists SRR2935733_2 || true)"
gzs="$(_compress_if_exists SRR2935733 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2935734
gz1="$(_compress_if_exists SRR2935734_1 || true)"
gz2="$(_compress_if_exists SRR2935734_2 || true)"
gzs="$(_compress_if_exists SRR2935734 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_C06_CAGAGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935735
gz1="$(_compress_if_exists SRR2935735_1 || true)"
gz2="$(_compress_if_exists SRR2935735_2 || true)"
gzs="$(_compress_if_exists SRR2935735 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935736
gz1="$(_compress_if_exists SRR2935736_1 || true)"
gz2="$(_compress_if_exists SRR2935736_2 || true)"
gzs="$(_compress_if_exists SRR2935736 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_C10_GCGAATCA.fq.gz
fi

fasterq-dump --split-files SRR2935737
gz1="$(_compress_if_exists SRR2935737_1 || true)"
gz2="$(_compress_if_exists SRR2935737_2 || true)"
gzs="$(_compress_if_exists SRR2935737 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935738
gz1="$(_compress_if_exists SRR2935738_1 || true)"
gz2="$(_compress_if_exists SRR2935738_2 || true)"
gzs="$(_compress_if_exists SRR2935738 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_D02_TGCTCCTT.fq.gz
fi

fasterq-dump --split-files SRR2935739
gz1="$(_compress_if_exists SRR2935739_1 || true)"
gz2="$(_compress_if_exists SRR2935739_2 || true)"
gzs="$(_compress_if_exists SRR2935739 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2935740
gz1="$(_compress_if_exists SRR2935740_1 || true)"
gz2="$(_compress_if_exists SRR2935740_2 || true)"
gzs="$(_compress_if_exists SRR2935740 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935741
gz1="$(_compress_if_exists SRR2935741_1 || true)"
gz2="$(_compress_if_exists SRR2935741_2 || true)"
gzs="$(_compress_if_exists SRR2935741 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_D07_GAAACCCA.fq.gz
fi

fasterq-dump --split-files SRR2935742
gz1="$(_compress_if_exists SRR2935742_1 || true)"
gz2="$(_compress_if_exists SRR2935742_2 || true)"
gzs="$(_compress_if_exists SRR2935742 || true)"

fasterq-dump --split-files SRR2935743
gz1="$(_compress_if_exists SRR2935743_1 || true)"
gz2="$(_compress_if_exists SRR2935743_2 || true)"
gzs="$(_compress_if_exists SRR2935743 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_D09_TAGCTGGA.fq.gz
fi

fasterq-dump --split-files SRR2935744
gz1="$(_compress_if_exists SRR2935744_1 || true)"
gz2="$(_compress_if_exists SRR2935744_2 || true)"
gzs="$(_compress_if_exists SRR2935744 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2935745
gz1="$(_compress_if_exists SRR2935745_1 || true)"
gz2="$(_compress_if_exists SRR2935745_2 || true)"
gzs="$(_compress_if_exists SRR2935745 || true)"

fasterq-dump --split-files SRR2935746
gz1="$(_compress_if_exists SRR2935746_1 || true)"
gz2="$(_compress_if_exists SRR2935746_2 || true)"
gzs="$(_compress_if_exists SRR2935746 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2935748
gz1="$(_compress_if_exists SRR2935748_1 || true)"
gz2="$(_compress_if_exists SRR2935748_2 || true)"
gzs="$(_compress_if_exists SRR2935748 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_F06_AGATCGAC.fq.gz
fi

fasterq-dump --split-files SRR2935749
gz1="$(_compress_if_exists SRR2935749_1 || true)"
gz2="$(_compress_if_exists SRR2935749_2 || true)"
gzs="$(_compress_if_exists SRR2935749 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_F07_GTAAGTCG.fq.gz
fi

fasterq-dump --split-files SRR2935750
gz1="$(_compress_if_exists SRR2935750_1 || true)"
gz2="$(_compress_if_exists SRR2935750_2 || true)"
gzs="$(_compress_if_exists SRR2935750 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_F11_AGAAGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935751
gz1="$(_compress_if_exists SRR2935751_1 || true)"
gz2="$(_compress_if_exists SRR2935751_2 || true)"
gzs="$(_compress_if_exists SRR2935751 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2935752
gz1="$(_compress_if_exists SRR2935752_1 || true)"
gz2="$(_compress_if_exists SRR2935752_2 || true)"
gzs="$(_compress_if_exists SRR2935752 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2935753
gz1="$(_compress_if_exists SRR2935753_1 || true)"
gz2="$(_compress_if_exists SRR2935753_2 || true)"
gzs="$(_compress_if_exists SRR2935753 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_G10_AGTCTCCT.fq.gz
fi

fasterq-dump --split-files SRR2935754
gz1="$(_compress_if_exists SRR2935754_1 || true)"
gz2="$(_compress_if_exists SRR2935754_2 || true)"
gzs="$(_compress_if_exists SRR2935754 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_G12_GCAAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935755
gz1="$(_compress_if_exists SRR2935755_1 || true)"
gz2="$(_compress_if_exists SRR2935755_2 || true)"
gzs="$(_compress_if_exists SRR2935755 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_H01_ATCGTGGT.fq.gz
fi

fasterq-dump --split-files SRR2935756
gz1="$(_compress_if_exists SRR2935756_1 || true)"
gz2="$(_compress_if_exists SRR2935756_2 || true)"
gzs="$(_compress_if_exists SRR2935756 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_H06_CTGACCTT.fq.gz
fi

fasterq-dump --split-files SRR2935757
gz1="$(_compress_if_exists SRR2935757_1 || true)"
gz2="$(_compress_if_exists SRR2935757_2 || true)"
gzs="$(_compress_if_exists SRR2935757 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_H11_AAGGACGA.fq.gz
fi

fasterq-dump --split-files SRR2935758
gz1="$(_compress_if_exists SRR2935758_1 || true)"
gz2="$(_compress_if_exists SRR2935758_2 || true)"
gzs="$(_compress_if_exists SRR2935758 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-126_R293_L3_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2935759
gz1="$(_compress_if_exists SRR2935759_1 || true)"
gz2="$(_compress_if_exists SRR2935759_2 || true)"
gzs="$(_compress_if_exists SRR2935759 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_A01_ATTAGACG.fq.gz
fi

fasterq-dump --split-files SRR2935760
gz1="$(_compress_if_exists SRR2935760_1 || true)"
gz2="$(_compress_if_exists SRR2935760_2 || true)"
gzs="$(_compress_if_exists SRR2935760 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2935761
gz1="$(_compress_if_exists SRR2935761_1 || true)"
gz2="$(_compress_if_exists SRR2935761_2 || true)"
gzs="$(_compress_if_exists SRR2935761 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_A07_TATAGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935762
gz1="$(_compress_if_exists SRR2935762_1 || true)"
gz2="$(_compress_if_exists SRR2935762_2 || true)"
gzs="$(_compress_if_exists SRR2935762 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_A09_GAATCACG.fq.gz
fi

fasterq-dump --split-files SRR2935763
gz1="$(_compress_if_exists SRR2935763_1 || true)"
gz2="$(_compress_if_exists SRR2935763_2 || true)"
gzs="$(_compress_if_exists SRR2935763 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_A10_CTAGGAAT.fq.gz
fi

fasterq-dump --split-files SRR2935764
gz1="$(_compress_if_exists SRR2935764_1 || true)"
gz2="$(_compress_if_exists SRR2935764_2 || true)"
gzs="$(_compress_if_exists SRR2935764 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B01_ACGAGTCT.fq.gz
fi

fasterq-dump --split-files SRR2935765
gz1="$(_compress_if_exists SRR2935765_1 || true)"
gz2="$(_compress_if_exists SRR2935765_2 || true)"
gzs="$(_compress_if_exists SRR2935765 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B03_CAGGACTC.fq.gz
fi

fasterq-dump --split-files SRR2935766
gz1="$(_compress_if_exists SRR2935766_1 || true)"
gz2="$(_compress_if_exists SRR2935766_2 || true)"
gzs="$(_compress_if_exists SRR2935766 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B04_ACTTTGCG.fq.gz
fi

fasterq-dump --split-files SRR2935767
gz1="$(_compress_if_exists SRR2935767_1 || true)"
gz2="$(_compress_if_exists SRR2935767_2 || true)"
gzs="$(_compress_if_exists SRR2935767 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935768
gz1="$(_compress_if_exists SRR2935768_1 || true)"
gz2="$(_compress_if_exists SRR2935768_2 || true)"
gzs="$(_compress_if_exists SRR2935768 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2935769
gz1="$(_compress_if_exists SRR2935769_1 || true)"
gz2="$(_compress_if_exists SRR2935769_2 || true)"
gzs="$(_compress_if_exists SRR2935769 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2935770
gz1="$(_compress_if_exists SRR2935770_1 || true)"
gz2="$(_compress_if_exists SRR2935770_2 || true)"
gzs="$(_compress_if_exists SRR2935770 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_B12_GATAAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935771
gz1="$(_compress_if_exists SRR2935771_1 || true)"
gz2="$(_compress_if_exists SRR2935771_2 || true)"
gzs="$(_compress_if_exists SRR2935771 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2935772
gz1="$(_compress_if_exists SRR2935772_1 || true)"
gz2="$(_compress_if_exists SRR2935772_2 || true)"
gzs="$(_compress_if_exists SRR2935772 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_C03_TCAGTGTG.fq.gz
fi

fasterq-dump --split-files SRR2935775
gz1="$(_compress_if_exists SRR2935775_1 || true)"
gz2="$(_compress_if_exists SRR2935775_2 || true)"
gzs="$(_compress_if_exists SRR2935775 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_C12_TTAGCGGT.fq.gz
fi

fasterq-dump --split-files SRR2935776
gz1="$(_compress_if_exists SRR2935776_1 || true)"
gz2="$(_compress_if_exists SRR2935776_2 || true)"
gzs="$(_compress_if_exists SRR2935776 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_D03_CCTGTAAC.fq.gz
fi

fasterq-dump --split-files SRR2935778
gz1="$(_compress_if_exists SRR2935778_1 || true)"
gz2="$(_compress_if_exists SRR2935778_2 || true)"
gzs="$(_compress_if_exists SRR2935778 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_D06_GGATACGT.fq.gz
fi

fasterq-dump --split-files SRR2935779
gz1="$(_compress_if_exists SRR2935779_1 || true)"
gz2="$(_compress_if_exists SRR2935779_2 || true)"
gzs="$(_compress_if_exists SRR2935779 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935780
gz1="$(_compress_if_exists SRR2935780_1 || true)"
gz2="$(_compress_if_exists SRR2935780_2 || true)"
gzs="$(_compress_if_exists SRR2935780 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_E05_GCTGAGGT.fq.gz
fi

fasterq-dump --split-files SRR2935781
gz1="$(_compress_if_exists SRR2935781_1 || true)"
gz2="$(_compress_if_exists SRR2935781_2 || true)"
gzs="$(_compress_if_exists SRR2935781 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2935782
gz1="$(_compress_if_exists SRR2935782_1 || true)"
gz2="$(_compress_if_exists SRR2935782_2 || true)"
gzs="$(_compress_if_exists SRR2935782 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_E09_GTACTCGG.fq.gz
fi

fasterq-dump --split-files SRR2935783
gz1="$(_compress_if_exists SRR2935783_1 || true)"
gz2="$(_compress_if_exists SRR2935783_2 || true)"
gzs="$(_compress_if_exists SRR2935783 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2935784
gz1="$(_compress_if_exists SRR2935784_1 || true)"
gz2="$(_compress_if_exists SRR2935784_2 || true)"
gzs="$(_compress_if_exists SRR2935784 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2935786
gz1="$(_compress_if_exists SRR2935786_1 || true)"
gz2="$(_compress_if_exists SRR2935786_2 || true)"
gzs="$(_compress_if_exists SRR2935786 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_F02_ACCCGTAA.fq.gz
fi

fasterq-dump --split-files SRR2935787
gz1="$(_compress_if_exists SRR2935787_1 || true)"
gz2="$(_compress_if_exists SRR2935787_2 || true)"
gzs="$(_compress_if_exists SRR2935787 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2935788
gz1="$(_compress_if_exists SRR2935788_1 || true)"
gz2="$(_compress_if_exists SRR2935788_2 || true)"
gzs="$(_compress_if_exists SRR2935788 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_F06_ACACAACT.fq.gz
fi

fasterq-dump --split-files SRR2935789
gz1="$(_compress_if_exists SRR2935789_1 || true)"
gz2="$(_compress_if_exists SRR2935789_2 || true)"
gzs="$(_compress_if_exists SRR2935789 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_F09_ATTGCGTC.fq.gz
fi

fasterq-dump --split-files SRR2935790
gz1="$(_compress_if_exists SRR2935790_1 || true)"
gz2="$(_compress_if_exists SRR2935790_2 || true)"
gzs="$(_compress_if_exists SRR2935790 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_F12_TACAACGT.fq.gz
fi

fasterq-dump --split-files SRR2935791
gz1="$(_compress_if_exists SRR2935791_1 || true)"
gz2="$(_compress_if_exists SRR2935791_2 || true)"
gzs="$(_compress_if_exists SRR2935791 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_G01_CCTACGCA.fq.gz
fi

fasterq-dump --split-files SRR2935792
gz1="$(_compress_if_exists SRR2935792_1 || true)"
gz2="$(_compress_if_exists SRR2935792_2 || true)"
gzs="$(_compress_if_exists SRR2935792 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_G02_ATGCTGTG.fq.gz
fi

fasterq-dump --split-files SRR2935793
gz1="$(_compress_if_exists SRR2935793_1 || true)"
gz2="$(_compress_if_exists SRR2935793_2 || true)"
gzs="$(_compress_if_exists SRR2935793 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2935794
gz1="$(_compress_if_exists SRR2935794_1 || true)"
gz2="$(_compress_if_exists SRR2935794_2 || true)"
gzs="$(_compress_if_exists SRR2935794 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2935795
gz1="$(_compress_if_exists SRR2935795_1 || true)"
gz2="$(_compress_if_exists SRR2935795_2 || true)"
gzs="$(_compress_if_exists SRR2935795 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_G07_TGCCCAGA.fq.gz
fi

fasterq-dump --split-files SRR2935796
gz1="$(_compress_if_exists SRR2935796_1 || true)"
gz2="$(_compress_if_exists SRR2935796_2 || true)"
gzs="$(_compress_if_exists SRR2935796 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2935797
gz1="$(_compress_if_exists SRR2935797_1 || true)"
gz2="$(_compress_if_exists SRR2935797_2 || true)"
gzs="$(_compress_if_exists SRR2935797 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_H03_AGCCACTT.fq.gz
fi

fasterq-dump --split-files SRR2935798
gz1="$(_compress_if_exists SRR2935798_1 || true)"
gz2="$(_compress_if_exists SRR2935798_2 || true)"
gzs="$(_compress_if_exists SRR2935798 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_H05_CGGAGTTA.fq.gz
fi

fasterq-dump --split-files SRR2935800
gz1="$(_compress_if_exists SRR2935800_1 || true)"
gz2="$(_compress_if_exists SRR2935800_2 || true)"
gzs="$(_compress_if_exists SRR2935800 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-127_R293_L3_1_H11_GCTTAACA.fq.gz
fi

fasterq-dump --split-files SRR2935802
gz1="$(_compress_if_exists SRR2935802_1 || true)"
gz2="$(_compress_if_exists SRR2935802_2 || true)"
gzs="$(_compress_if_exists SRR2935802 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_A05_GCTTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935805
gz1="$(_compress_if_exists SRR2935805_1 || true)"
gz2="$(_compress_if_exists SRR2935805_2 || true)"
gzs="$(_compress_if_exists SRR2935805 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_A09_CTCACTAC.fq.gz
fi

fasterq-dump --split-files SRR2935806
gz1="$(_compress_if_exists SRR2935806_1 || true)"
gz2="$(_compress_if_exists SRR2935806_2 || true)"
gzs="$(_compress_if_exists SRR2935806 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935808
gz1="$(_compress_if_exists SRR2935808_1 || true)"
gz2="$(_compress_if_exists SRR2935808_2 || true)"
gzs="$(_compress_if_exists SRR2935808 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2935809
gz1="$(_compress_if_exists SRR2935809_1 || true)"
gz2="$(_compress_if_exists SRR2935809_2 || true)"
gzs="$(_compress_if_exists SRR2935809 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935810
gz1="$(_compress_if_exists SRR2935810_1 || true)"
gz2="$(_compress_if_exists SRR2935810_2 || true)"
gzs="$(_compress_if_exists SRR2935810 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2935811
gz1="$(_compress_if_exists SRR2935811_1 || true)"
gz2="$(_compress_if_exists SRR2935811_2 || true)"
gzs="$(_compress_if_exists SRR2935811 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2935815
gz1="$(_compress_if_exists SRR2935815_1 || true)"
gz2="$(_compress_if_exists SRR2935815_2 || true)"
gzs="$(_compress_if_exists SRR2935815 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B09_TACACCAC.fq.gz
fi

fasterq-dump --split-files SRR2935816
gz1="$(_compress_if_exists SRR2935816_1 || true)"
gz2="$(_compress_if_exists SRR2935816_2 || true)"
gzs="$(_compress_if_exists SRR2935816 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B10_GCAGCTAT.fq.gz
fi

fasterq-dump --split-files SRR2935817
gz1="$(_compress_if_exists SRR2935817_1 || true)"
gz2="$(_compress_if_exists SRR2935817_2 || true)"
gzs="$(_compress_if_exists SRR2935817 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B11_ATTCGTCC.fq.gz
fi

fasterq-dump --split-files SRR2935818
gz1="$(_compress_if_exists SRR2935818_1 || true)"
gz2="$(_compress_if_exists SRR2935818_2 || true)"
gzs="$(_compress_if_exists SRR2935818 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2935819
gz1="$(_compress_if_exists SRR2935819_1 || true)"
gz2="$(_compress_if_exists SRR2935819_2 || true)"
gzs="$(_compress_if_exists SRR2935819 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C01_AAATGCGG.fq.gz
fi

fasterq-dump --split-files SRR2935820
gz1="$(_compress_if_exists SRR2935820_1 || true)"
gz2="$(_compress_if_exists SRR2935820_2 || true)"
gzs="$(_compress_if_exists SRR2935820 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2935821
gz1="$(_compress_if_exists SRR2935821_1 || true)"
gz2="$(_compress_if_exists SRR2935821_2 || true)"
gzs="$(_compress_if_exists SRR2935821 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C04_GACAGGTA.fq.gz
fi

fasterq-dump --split-files SRR2935823
gz1="$(_compress_if_exists SRR2935823_1 || true)"
gz2="$(_compress_if_exists SRR2935823_2 || true)"
gzs="$(_compress_if_exists SRR2935823 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C06_CAGAGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935824
gz1="$(_compress_if_exists SRR2935824_1 || true)"
gz2="$(_compress_if_exists SRR2935824_2 || true)"
gzs="$(_compress_if_exists SRR2935824 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C08_ACTGATGC.fq.gz
fi

fasterq-dump --split-files SRR2935825
gz1="$(_compress_if_exists SRR2935825_1 || true)"
gz2="$(_compress_if_exists SRR2935825_2 || true)"
gzs="$(_compress_if_exists SRR2935825 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2935826
gz1="$(_compress_if_exists SRR2935826_1 || true)"
gz2="$(_compress_if_exists SRR2935826_2 || true)"
gzs="$(_compress_if_exists SRR2935826 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C10_GCGAATCA.fq.gz
fi

fasterq-dump --split-files SRR2935827
gz1="$(_compress_if_exists SRR2935827_1 || true)"
gz2="$(_compress_if_exists SRR2935827_2 || true)"
gzs="$(_compress_if_exists SRR2935827 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2935828
gz1="$(_compress_if_exists SRR2935828_1 || true)"
gz2="$(_compress_if_exists SRR2935828_2 || true)"
gzs="$(_compress_if_exists SRR2935828 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_D01_AGGATCGT.fq.gz
fi

fasterq-dump --split-files SRR2935829
gz1="$(_compress_if_exists SRR2935829_1 || true)"
gz2="$(_compress_if_exists SRR2935829_2 || true)"
gzs="$(_compress_if_exists SRR2935829 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_D02_TGCTCCTT.fq.gz
fi

fasterq-dump --split-files SRR2935830
gz1="$(_compress_if_exists SRR2935830_1 || true)"
gz2="$(_compress_if_exists SRR2935830_2 || true)"
gzs="$(_compress_if_exists SRR2935830 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_D04_CCCGAATA.fq.gz
fi

fasterq-dump --split-files SRR2935831
gz1="$(_compress_if_exists SRR2935831_1 || true)"
gz2="$(_compress_if_exists SRR2935831_2 || true)"
gzs="$(_compress_if_exists SRR2935831 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2935832
gz1="$(_compress_if_exists SRR2935832_1 || true)"
gz2="$(_compress_if_exists SRR2935832_2 || true)"
gzs="$(_compress_if_exists SRR2935832 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_D09_TAGCTGGA.fq.gz
fi

fasterq-dump --split-files SRR2935833
gz1="$(_compress_if_exists SRR2935833_1 || true)"
gz2="$(_compress_if_exists SRR2935833_2 || true)"
gzs="$(_compress_if_exists SRR2935833 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2935836
gz1="$(_compress_if_exists SRR2935836_1 || true)"
gz2="$(_compress_if_exists SRR2935836_2 || true)"
gzs="$(_compress_if_exists SRR2935836 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2935837
gz1="$(_compress_if_exists SRR2935837_1 || true)"
gz2="$(_compress_if_exists SRR2935837_2 || true)"
gzs="$(_compress_if_exists SRR2935837 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935840
gz1="$(_compress_if_exists SRR2935840_1 || true)"
gz2="$(_compress_if_exists SRR2935840_2 || true)"
gzs="$(_compress_if_exists SRR2935840 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_E07_ATGGACTG.fq.gz
fi

fasterq-dump --split-files SRR2935841
gz1="$(_compress_if_exists SRR2935841_1 || true)"
gz2="$(_compress_if_exists SRR2935841_2 || true)"
gzs="$(_compress_if_exists SRR2935841 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2935842
gz1="$(_compress_if_exists SRR2935842_1 || true)"
gz2="$(_compress_if_exists SRR2935842_2 || true)"
gzs="$(_compress_if_exists SRR2935842 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_E10_TCCTGACT.fq.gz
fi

fasterq-dump --split-files SRR2935844
gz1="$(_compress_if_exists SRR2935844_1 || true)"
gz2="$(_compress_if_exists SRR2935844_2 || true)"
gzs="$(_compress_if_exists SRR2935844 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_E12_CTTCTTGC.fq.gz
fi

fasterq-dump --split-files SRR2935845
gz1="$(_compress_if_exists SRR2935845_1 || true)"
gz2="$(_compress_if_exists SRR2935845_2 || true)"
gzs="$(_compress_if_exists SRR2935845 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F01_TCAACCGA.fq.gz
fi

fasterq-dump --split-files SRR2935846
gz1="$(_compress_if_exists SRR2935846_1 || true)"
gz2="$(_compress_if_exists SRR2935846_2 || true)"
gzs="$(_compress_if_exists SRR2935846 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F02_CATGGTTG.fq.gz
fi

fasterq-dump --split-files SRR2935847
gz1="$(_compress_if_exists SRR2935847_1 || true)"
gz2="$(_compress_if_exists SRR2935847_2 || true)"
gzs="$(_compress_if_exists SRR2935847 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F03_ACTCACCA.fq.gz
fi

fasterq-dump --split-files SRR2935848
gz1="$(_compress_if_exists SRR2935848_1 || true)"
gz2="$(_compress_if_exists SRR2935848_2 || true)"
gzs="$(_compress_if_exists SRR2935848 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F04_GGTAGCTA.fq.gz
fi

fasterq-dump --split-files SRR2935849
gz1="$(_compress_if_exists SRR2935849_1 || true)"
gz2="$(_compress_if_exists SRR2935849_2 || true)"
gzs="$(_compress_if_exists SRR2935849 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F09_AGAGTGCT.fq.gz
fi

fasterq-dump --split-files SRR2935850
gz1="$(_compress_if_exists SRR2935850_1 || true)"
gz2="$(_compress_if_exists SRR2935850_2 || true)"
gzs="$(_compress_if_exists SRR2935850 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F11_AGAAGCAG.fq.gz
fi

fasterq-dump --split-files SRR2935851
gz1="$(_compress_if_exists SRR2935851_1 || true)"
gz2="$(_compress_if_exists SRR2935851_2 || true)"
gzs="$(_compress_if_exists SRR2935851 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_F12_TGTGCATG.fq.gz
fi

fasterq-dump --split-files SRR2935852
gz1="$(_compress_if_exists SRR2935852_1 || true)"
gz2="$(_compress_if_exists SRR2935852_2 || true)"
gzs="$(_compress_if_exists SRR2935852 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2935853
gz1="$(_compress_if_exists SRR2935853_1 || true)"
gz2="$(_compress_if_exists SRR2935853_2 || true)"
gzs="$(_compress_if_exists SRR2935853 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2935854
gz1="$(_compress_if_exists SRR2935854_1 || true)"
gz2="$(_compress_if_exists SRR2935854_2 || true)"
gzs="$(_compress_if_exists SRR2935854 || true)"

fasterq-dump --split-files SRR2935855
gz1="$(_compress_if_exists SRR2935855_1 || true)"
gz2="$(_compress_if_exists SRR2935855_2 || true)"
gzs="$(_compress_if_exists SRR2935855 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_G06_GCAAAGAG.fq.gz
fi

fasterq-dump --split-files SRR2935856
gz1="$(_compress_if_exists SRR2935856_1 || true)"
gz2="$(_compress_if_exists SRR2935856_2 || true)"
gzs="$(_compress_if_exists SRR2935856 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2935857
gz1="$(_compress_if_exists SRR2935857_1 || true)"
gz2="$(_compress_if_exists SRR2935857_2 || true)"
gzs="$(_compress_if_exists SRR2935857 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_G09_ACTCGCTT.fq.gz
fi

fasterq-dump --split-files SRR2935859
gz1="$(_compress_if_exists SRR2935859_1 || true)"
gz2="$(_compress_if_exists SRR2935859_2 || true)"
gzs="$(_compress_if_exists SRR2935859 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_G12_GCAAGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935860
gz1="$(_compress_if_exists SRR2935860_1 || true)"
gz2="$(_compress_if_exists SRR2935860_2 || true)"
gzs="$(_compress_if_exists SRR2935860 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935862
gz1="$(_compress_if_exists SRR2935862_1 || true)"
gz2="$(_compress_if_exists SRR2935862_2 || true)"
gzs="$(_compress_if_exists SRR2935862 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_H06_CTGACCTT.fq.gz
fi

fasterq-dump --split-files SRR2935863
gz1="$(_compress_if_exists SRR2935863_1 || true)"
gz2="$(_compress_if_exists SRR2935863_2 || true)"
gzs="$(_compress_if_exists SRR2935863 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_H11_AAGGACGA.fq.gz
fi

fasterq-dump --split-files SRR2935864
gz1="$(_compress_if_exists SRR2935864_1 || true)"
gz2="$(_compress_if_exists SRR2935864_2 || true)"
gzs="$(_compress_if_exists SRR2935864 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-128_R295_L4_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2935865
gz1="$(_compress_if_exists SRR2935865_1 || true)"
gz2="$(_compress_if_exists SRR2935865_2 || true)"
gzs="$(_compress_if_exists SRR2935865 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A01_GCACACTA.fq.gz
fi

fasterq-dump --split-files SRR2935866
gz1="$(_compress_if_exists SRR2935866_1 || true)"
gz2="$(_compress_if_exists SRR2935866_2 || true)"
gzs="$(_compress_if_exists SRR2935866 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A02_TAGCGAAC.fq.gz
fi

fasterq-dump --split-files SRR2935867
gz1="$(_compress_if_exists SRR2935867_1 || true)"
gz2="$(_compress_if_exists SRR2935867_2 || true)"
gzs="$(_compress_if_exists SRR2935867 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2935868
gz1="$(_compress_if_exists SRR2935868_1 || true)"
gz2="$(_compress_if_exists SRR2935868_2 || true)"
gzs="$(_compress_if_exists SRR2935868 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2935869
gz1="$(_compress_if_exists SRR2935869_1 || true)"
gz2="$(_compress_if_exists SRR2935869_2 || true)"
gzs="$(_compress_if_exists SRR2935869 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2935870
gz1="$(_compress_if_exists SRR2935870_1 || true)"
gz2="$(_compress_if_exists SRR2935870_2 || true)"
gzs="$(_compress_if_exists SRR2935870 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A11_AATAGGGG.fq.gz
fi

fasterq-dump --split-files SRR2935871
gz1="$(_compress_if_exists SRR2935871_1 || true)"
gz2="$(_compress_if_exists SRR2935871_2 || true)"
gzs="$(_compress_if_exists SRR2935871 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_A12_CCCTCAAA.fq.gz
fi

fasterq-dump --split-files SRR2935872
gz1="$(_compress_if_exists SRR2935872_1 || true)"
gz2="$(_compress_if_exists SRR2935872_2 || true)"
gzs="$(_compress_if_exists SRR2935872 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_B02_GTGAGATG.fq.gz
fi

fasterq-dump --split-files SRR2935873
gz1="$(_compress_if_exists SRR2935873_1 || true)"
gz2="$(_compress_if_exists SRR2935873_2 || true)"
gzs="$(_compress_if_exists SRR2935873 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2935875
gz1="$(_compress_if_exists SRR2935875_1 || true)"
gz2="$(_compress_if_exists SRR2935875_2 || true)"
gzs="$(_compress_if_exists SRR2935875 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_B07_ACACCTTG.fq.gz
fi

fasterq-dump --split-files SRR2935876
gz1="$(_compress_if_exists SRR2935876_1 || true)"
gz2="$(_compress_if_exists SRR2935876_2 || true)"
gzs="$(_compress_if_exists SRR2935876 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_B08_TTACGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935877
gz1="$(_compress_if_exists SRR2935877_1 || true)"
gz2="$(_compress_if_exists SRR2935877_2 || true)"
gzs="$(_compress_if_exists SRR2935877 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2935879
gz1="$(_compress_if_exists SRR2935879_1 || true)"
gz2="$(_compress_if_exists SRR2935879_2 || true)"
gzs="$(_compress_if_exists SRR2935879 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C03_CGTCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2935880
gz1="$(_compress_if_exists SRR2935880_1 || true)"
gz2="$(_compress_if_exists SRR2935880_2 || true)"
gzs="$(_compress_if_exists SRR2935880 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C05_GCCTATAG.fq.gz
fi

fasterq-dump --split-files SRR2935881
gz1="$(_compress_if_exists SRR2935881_1 || true)"
gz2="$(_compress_if_exists SRR2935881_2 || true)"
gzs="$(_compress_if_exists SRR2935881 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2935882
gz1="$(_compress_if_exists SRR2935882_1 || true)"
gz2="$(_compress_if_exists SRR2935882_2 || true)"
gzs="$(_compress_if_exists SRR2935882 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2935883
gz1="$(_compress_if_exists SRR2935883_1 || true)"
gz2="$(_compress_if_exists SRR2935883_2 || true)"
gzs="$(_compress_if_exists SRR2935883 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C10_GATTACCG.fq.gz
fi

fasterq-dump --split-files SRR2935884
gz1="$(_compress_if_exists SRR2935884_1 || true)"
gz2="$(_compress_if_exists SRR2935884_2 || true)"
gzs="$(_compress_if_exists SRR2935884 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C11_TACGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935885
gz1="$(_compress_if_exists SRR2935885_1 || true)"
gz2="$(_compress_if_exists SRR2935885_2 || true)"
gzs="$(_compress_if_exists SRR2935885 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2935887
gz1="$(_compress_if_exists SRR2935887_1 || true)"
gz2="$(_compress_if_exists SRR2935887_2 || true)"
gzs="$(_compress_if_exists SRR2935887 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_D06_GTGACCTA.fq.gz
fi

fasterq-dump --split-files SRR2935889
gz1="$(_compress_if_exists SRR2935889_1 || true)"
gz2="$(_compress_if_exists SRR2935889_2 || true)"
gzs="$(_compress_if_exists SRR2935889 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2935891
gz1="$(_compress_if_exists SRR2935891_1 || true)"
gz2="$(_compress_if_exists SRR2935891_2 || true)"
gzs="$(_compress_if_exists SRR2935891 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_E05_TGTCACTG.fq.gz
fi

fasterq-dump --split-files SRR2935892
gz1="$(_compress_if_exists SRR2935892_1 || true)"
gz2="$(_compress_if_exists SRR2935892_2 || true)"
gzs="$(_compress_if_exists SRR2935892 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_E07_ACATCCGT.fq.gz
fi

fasterq-dump --split-files SRR2935893
gz1="$(_compress_if_exists SRR2935893_1 || true)"
gz2="$(_compress_if_exists SRR2935893_2 || true)"
gzs="$(_compress_if_exists SRR2935893 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2935894
gz1="$(_compress_if_exists SRR2935894_1 || true)"
gz2="$(_compress_if_exists SRR2935894_2 || true)"
gzs="$(_compress_if_exists SRR2935894 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_F01_CAGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2935895
gz1="$(_compress_if_exists SRR2935895_1 || true)"
gz2="$(_compress_if_exists SRR2935895_2 || true)"
gzs="$(_compress_if_exists SRR2935895 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_F03_ACGATCTG.fq.gz
fi

fasterq-dump --split-files SRR2935896
gz1="$(_compress_if_exists SRR2935896_1 || true)"
gz2="$(_compress_if_exists SRR2935896_2 || true)"
gzs="$(_compress_if_exists SRR2935896 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2935897
gz1="$(_compress_if_exists SRR2935897_1 || true)"
gz2="$(_compress_if_exists SRR2935897_2 || true)"
gzs="$(_compress_if_exists SRR2935897 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_F06_CATTCTCG.fq.gz
fi

fasterq-dump --split-files SRR2935898
gz1="$(_compress_if_exists SRR2935898_1 || true)"
gz2="$(_compress_if_exists SRR2935898_2 || true)"
gzs="$(_compress_if_exists SRR2935898 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_G04_AAATCGCC.fq.gz
fi

fasterq-dump --split-files SRR2935900
gz1="$(_compress_if_exists SRR2935900_1 || true)"
gz2="$(_compress_if_exists SRR2935900_2 || true)"
gzs="$(_compress_if_exists SRR2935900 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2935901
gz1="$(_compress_if_exists SRR2935901_1 || true)"
gz2="$(_compress_if_exists SRR2935901_2 || true)"
gzs="$(_compress_if_exists SRR2935901 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_H01_AATCGCTG.fq.gz
fi

fasterq-dump --split-files SRR2935902
gz1="$(_compress_if_exists SRR2935902_1 || true)"
gz2="$(_compress_if_exists SRR2935902_2 || true)"
gzs="$(_compress_if_exists SRR2935902 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_H04_TGCCGATT.fq.gz
fi

fasterq-dump --split-files SRR2935903
gz1="$(_compress_if_exists SRR2935903_1 || true)"
gz2="$(_compress_if_exists SRR2935903_2 || true)"
gzs="$(_compress_if_exists SRR2935903 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2935904
gz1="$(_compress_if_exists SRR2935904_1 || true)"
gz2="$(_compress_if_exists SRR2935904_2 || true)"
gzs="$(_compress_if_exists SRR2935904 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2935905
gz1="$(_compress_if_exists SRR2935905_1 || true)"
gz2="$(_compress_if_exists SRR2935905_2 || true)"
gzs="$(_compress_if_exists SRR2935905 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-131_R293_L7_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2935906
gz1="$(_compress_if_exists SRR2935906_1 || true)"
gz2="$(_compress_if_exists SRR2935906_2 || true)"
gzs="$(_compress_if_exists SRR2935906 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A02_GGTATTCA.fq.gz
fi

fasterq-dump --split-files SRR2935907
gz1="$(_compress_if_exists SRR2935907_1 || true)"
gz2="$(_compress_if_exists SRR2935907_2 || true)"
gzs="$(_compress_if_exists SRR2935907 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935908
gz1="$(_compress_if_exists SRR2935908_1 || true)"
gz2="$(_compress_if_exists SRR2935908_2 || true)"
gzs="$(_compress_if_exists SRR2935908 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2935909
gz1="$(_compress_if_exists SRR2935909_1 || true)"
gz2="$(_compress_if_exists SRR2935909_2 || true)"
gzs="$(_compress_if_exists SRR2935909 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A05_ACCTCGTT.fq.gz
fi

fasterq-dump --split-files SRR2935910
gz1="$(_compress_if_exists SRR2935910_1 || true)"
gz2="$(_compress_if_exists SRR2935910_2 || true)"
gzs="$(_compress_if_exists SRR2935910 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A06_CACGGTGT.fq.gz
fi

fasterq-dump --split-files SRR2935911
gz1="$(_compress_if_exists SRR2935911_1 || true)"
gz2="$(_compress_if_exists SRR2935911_2 || true)"
gzs="$(_compress_if_exists SRR2935911 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A07_TATAGGAC.fq.gz
fi

fasterq-dump --split-files SRR2935912
gz1="$(_compress_if_exists SRR2935912_1 || true)"
gz2="$(_compress_if_exists SRR2935912_2 || true)"
gzs="$(_compress_if_exists SRR2935912 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A09_GAATCACG.fq.gz
fi

fasterq-dump --split-files SRR2935913
gz1="$(_compress_if_exists SRR2935913_1 || true)"
gz2="$(_compress_if_exists SRR2935913_2 || true)"
gzs="$(_compress_if_exists SRR2935913 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A10_CTAGGAAT.fq.gz
fi

fasterq-dump --split-files SRR2935914
gz1="$(_compress_if_exists SRR2935914_1 || true)"
gz2="$(_compress_if_exists SRR2935914_2 || true)"
gzs="$(_compress_if_exists SRR2935914 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_A12_GAGGCGTA.fq.gz
fi

fasterq-dump --split-files SRR2935915
gz1="$(_compress_if_exists SRR2935915_1 || true)"
gz2="$(_compress_if_exists SRR2935915_2 || true)"
gzs="$(_compress_if_exists SRR2935915 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B01_ACGAGTCT.fq.gz
fi

fasterq-dump --split-files SRR2935916
gz1="$(_compress_if_exists SRR2935916_1 || true)"
gz2="$(_compress_if_exists SRR2935916_2 || true)"
gzs="$(_compress_if_exists SRR2935916 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B02_GTGTGAGA.fq.gz
fi

fasterq-dump --split-files SRR2935917
gz1="$(_compress_if_exists SRR2935917_1 || true)"
gz2="$(_compress_if_exists SRR2935917_2 || true)"
gzs="$(_compress_if_exists SRR2935917 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B04_ACTTTGCG.fq.gz
fi

fasterq-dump --split-files SRR2935918
gz1="$(_compress_if_exists SRR2935918_1 || true)"
gz2="$(_compress_if_exists SRR2935918_2 || true)"
gzs="$(_compress_if_exists SRR2935918 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B05_TGGTGGCT.fq.gz
fi

fasterq-dump --split-files SRR2935919
gz1="$(_compress_if_exists SRR2935919_1 || true)"
gz2="$(_compress_if_exists SRR2935919_2 || true)"
gzs="$(_compress_if_exists SRR2935919 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B06_CGTTCTAC.fq.gz
fi

fasterq-dump --split-files SRR2935920
gz1="$(_compress_if_exists SRR2935920_1 || true)"
gz2="$(_compress_if_exists SRR2935920_2 || true)"
gzs="$(_compress_if_exists SRR2935920 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2935921
gz1="$(_compress_if_exists SRR2935921_1 || true)"
gz2="$(_compress_if_exists SRR2935921_2 || true)"
gzs="$(_compress_if_exists SRR2935921 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2935922
gz1="$(_compress_if_exists SRR2935922_1 || true)"
gz2="$(_compress_if_exists SRR2935922_2 || true)"
gzs="$(_compress_if_exists SRR2935922 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2935923
gz1="$(_compress_if_exists SRR2935923_1 || true)"
gz2="$(_compress_if_exists SRR2935923_2 || true)"
gzs="$(_compress_if_exists SRR2935923 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_B12_GATAAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935924
gz1="$(_compress_if_exists SRR2935924_1 || true)"
gz2="$(_compress_if_exists SRR2935924_2 || true)"
gzs="$(_compress_if_exists SRR2935924 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2935925
gz1="$(_compress_if_exists SRR2935925_1 || true)"
gz2="$(_compress_if_exists SRR2935925_2 || true)"
gzs="$(_compress_if_exists SRR2935925 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935926
gz1="$(_compress_if_exists SRR2935926_1 || true)"
gz2="$(_compress_if_exists SRR2935926_2 || true)"
gzs="$(_compress_if_exists SRR2935926 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C05_TGATTACC.fq.gz
fi

fasterq-dump --split-files SRR2935927
gz1="$(_compress_if_exists SRR2935927_1 || true)"
gz2="$(_compress_if_exists SRR2935927_2 || true)"
gzs="$(_compress_if_exists SRR2935927 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C06_GTCAATCC.fq.gz
fi

fasterq-dump --split-files SRR2935929
gz1="$(_compress_if_exists SRR2935929_1 || true)"
gz2="$(_compress_if_exists SRR2935929_2 || true)"
gzs="$(_compress_if_exists SRR2935929 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C08_CTACCCTC.fq.gz
fi

fasterq-dump --split-files SRR2935930
gz1="$(_compress_if_exists SRR2935930_1 || true)"
gz2="$(_compress_if_exists SRR2935930_2 || true)"
gzs="$(_compress_if_exists SRR2935930 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C09_GGAGTTAC.fq.gz
fi

fasterq-dump --split-files SRR2935931
gz1="$(_compress_if_exists SRR2935931_1 || true)"
gz2="$(_compress_if_exists SRR2935931_2 || true)"
gzs="$(_compress_if_exists SRR2935931 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2935932
gz1="$(_compress_if_exists SRR2935932_1 || true)"
gz2="$(_compress_if_exists SRR2935932_2 || true)"
gzs="$(_compress_if_exists SRR2935932 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_C12_TTAGCGGT.fq.gz
fi

fasterq-dump --split-files SRR2935935
gz1="$(_compress_if_exists SRR2935935_1 || true)"
gz2="$(_compress_if_exists SRR2935935_2 || true)"
gzs="$(_compress_if_exists SRR2935935 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_D06_GGATACGT.fq.gz
fi

fasterq-dump --split-files SRR2935936
gz1="$(_compress_if_exists SRR2935936_1 || true)"
gz2="$(_compress_if_exists SRR2935936_2 || true)"
gzs="$(_compress_if_exists SRR2935936 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_D08_TTCACCCG.fq.gz
fi

fasterq-dump --split-files SRR2935937
gz1="$(_compress_if_exists SRR2935937_1 || true)"
gz2="$(_compress_if_exists SRR2935937_2 || true)"
gzs="$(_compress_if_exists SRR2935937 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_D09_CACTTCCG.fq.gz
fi

fasterq-dump --split-files SRR2935938
gz1="$(_compress_if_exists SRR2935938_1 || true)"
gz2="$(_compress_if_exists SRR2935938_2 || true)"
gzs="$(_compress_if_exists SRR2935938 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_D10_CTTTACCT.fq.gz
fi

fasterq-dump --split-files SRR2935939
gz1="$(_compress_if_exists SRR2935939_1 || true)"
gz2="$(_compress_if_exists SRR2935939_2 || true)"
gzs="$(_compress_if_exists SRR2935939 || true)"

fasterq-dump --split-files SRR2935940
gz1="$(_compress_if_exists SRR2935940_1 || true)"
gz2="$(_compress_if_exists SRR2935940_2 || true)"
gzs="$(_compress_if_exists SRR2935940 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935941
gz1="$(_compress_if_exists SRR2935941_1 || true)"
gz2="$(_compress_if_exists SRR2935941_2 || true)"
gzs="$(_compress_if_exists SRR2935941 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_E04_AAGGAGCT.fq.gz
fi

fasterq-dump --split-files SRR2935943
gz1="$(_compress_if_exists SRR2935943_1 || true)"
gz2="$(_compress_if_exists SRR2935943_2 || true)"
gzs="$(_compress_if_exists SRR2935943 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_E07_ACAGCGAA.fq.gz
fi

fasterq-dump --split-files SRR2935944
gz1="$(_compress_if_exists SRR2935944_1 || true)"
gz2="$(_compress_if_exists SRR2935944_2 || true)"
gzs="$(_compress_if_exists SRR2935944 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_E08_AAGATGGC.fq.gz
fi

fasterq-dump --split-files SRR2935945
gz1="$(_compress_if_exists SRR2935945_1 || true)"
gz2="$(_compress_if_exists SRR2935945_2 || true)"
gzs="$(_compress_if_exists SRR2935945 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_E09_GTACTCGG.fq.gz
fi

fasterq-dump --split-files SRR2935946
gz1="$(_compress_if_exists SRR2935946_1 || true)"
gz2="$(_compress_if_exists SRR2935946_2 || true)"
gzs="$(_compress_if_exists SRR2935946 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2935947
gz1="$(_compress_if_exists SRR2935947_1 || true)"
gz2="$(_compress_if_exists SRR2935947_2 || true)"
gzs="$(_compress_if_exists SRR2935947 || true)"

fasterq-dump --split-files SRR2935948
gz1="$(_compress_if_exists SRR2935948_1 || true)"
gz2="$(_compress_if_exists SRR2935948_2 || true)"
gzs="$(_compress_if_exists SRR2935948 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_F04_TCGGGTGA.fq.gz
fi

fasterq-dump --split-files SRR2935950
gz1="$(_compress_if_exists SRR2935950_1 || true)"
gz2="$(_compress_if_exists SRR2935950_2 || true)"
gzs="$(_compress_if_exists SRR2935950 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_F08_GATTATGC.fq.gz
fi

fasterq-dump --split-files SRR2935951
gz1="$(_compress_if_exists SRR2935951_1 || true)"
gz2="$(_compress_if_exists SRR2935951_2 || true)"
gzs="$(_compress_if_exists SRR2935951 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_F09_ATTGCGTC.fq.gz
fi

fasterq-dump --split-files SRR2935952
gz1="$(_compress_if_exists SRR2935952_1 || true)"
gz2="$(_compress_if_exists SRR2935952_2 || true)"
gzs="$(_compress_if_exists SRR2935952 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_F10_ATGCCTGT.fq.gz
fi

fasterq-dump --split-files SRR2935953
gz1="$(_compress_if_exists SRR2935953_1 || true)"
gz2="$(_compress_if_exists SRR2935953_2 || true)"
gzs="$(_compress_if_exists SRR2935953 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2935954
gz1="$(_compress_if_exists SRR2935954_1 || true)"
gz2="$(_compress_if_exists SRR2935954_2 || true)"
gzs="$(_compress_if_exists SRR2935954 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_F12_TACAACGT.fq.gz
fi

fasterq-dump --split-files SRR2935955
gz1="$(_compress_if_exists SRR2935955_1 || true)"
gz2="$(_compress_if_exists SRR2935955_2 || true)"
gzs="$(_compress_if_exists SRR2935955 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G01_CCTACGCA.fq.gz
fi

fasterq-dump --split-files SRR2935956
gz1="$(_compress_if_exists SRR2935956_1 || true)"
gz2="$(_compress_if_exists SRR2935956_2 || true)"
gzs="$(_compress_if_exists SRR2935956 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G02_ATGCTGTG.fq.gz
fi

fasterq-dump --split-files SRR2935957
gz1="$(_compress_if_exists SRR2935957_1 || true)"
gz2="$(_compress_if_exists SRR2935957_2 || true)"
gzs="$(_compress_if_exists SRR2935957 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G04_GTGGCAAC.fq.gz
fi

fasterq-dump --split-files SRR2935958
gz1="$(_compress_if_exists SRR2935958_1 || true)"
gz2="$(_compress_if_exists SRR2935958_2 || true)"
gzs="$(_compress_if_exists SRR2935958 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2935959
gz1="$(_compress_if_exists SRR2935959_1 || true)"
gz2="$(_compress_if_exists SRR2935959_2 || true)"
gzs="$(_compress_if_exists SRR2935959 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2935960
gz1="$(_compress_if_exists SRR2935960_1 || true)"
gz2="$(_compress_if_exists SRR2935960_2 || true)"
gzs="$(_compress_if_exists SRR2935960 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G09_CTCCAGGT.fq.gz
fi

fasterq-dump --split-files SRR2935961
gz1="$(_compress_if_exists SRR2935961_1 || true)"
gz2="$(_compress_if_exists SRR2935961_2 || true)"
gzs="$(_compress_if_exists SRR2935961 || true)"

fasterq-dump --split-files SRR2935962
gz1="$(_compress_if_exists SRR2935962_1 || true)"
gz2="$(_compress_if_exists SRR2935962_2 || true)"
gzs="$(_compress_if_exists SRR2935962 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_G11_GGGAATAT.fq.gz
fi

fasterq-dump --split-files SRR2935963
gz1="$(_compress_if_exists SRR2935963_1 || true)"
gz2="$(_compress_if_exists SRR2935963_2 || true)"
gzs="$(_compress_if_exists SRR2935963 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H02_TGTCAAAG.fq.gz
fi

fasterq-dump --split-files SRR2935964
gz1="$(_compress_if_exists SRR2935964_1 || true)"
gz2="$(_compress_if_exists SRR2935964_2 || true)"
gzs="$(_compress_if_exists SRR2935964 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H03_AGCCACTT.fq.gz
fi

fasterq-dump --split-files SRR2935965
gz1="$(_compress_if_exists SRR2935965_1 || true)"
gz2="$(_compress_if_exists SRR2935965_2 || true)"
gzs="$(_compress_if_exists SRR2935965 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2935966
gz1="$(_compress_if_exists SRR2935966_1 || true)"
gz2="$(_compress_if_exists SRR2935966_2 || true)"
gzs="$(_compress_if_exists SRR2935966 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H05_CGGAGTTA.fq.gz
fi

fasterq-dump --split-files SRR2935967
gz1="$(_compress_if_exists SRR2935967_1 || true)"
gz2="$(_compress_if_exists SRR2935967_2 || true)"
gzs="$(_compress_if_exists SRR2935967 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H06_AATGACAG.fq.gz
fi

fasterq-dump --split-files SRR2935968
gz1="$(_compress_if_exists SRR2935968_1 || true)"
gz2="$(_compress_if_exists SRR2935968_2 || true)"
gzs="$(_compress_if_exists SRR2935968 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H10_TATGCTCA.fq.gz
fi

fasterq-dump --split-files SRR2935969
gz1="$(_compress_if_exists SRR2935969_1 || true)"
gz2="$(_compress_if_exists SRR2935969_2 || true)"
gzs="$(_compress_if_exists SRR2935969 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-132_R295_L5_1_H11_GCTTAACA.fq.gz
fi

fasterq-dump --split-files SRR2935970
gz1="$(_compress_if_exists SRR2935970_1 || true)"
gz2="$(_compress_if_exists SRR2935970_2 || true)"
gzs="$(_compress_if_exists SRR2935970 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_A02_GGTATTCA.fq.gz
fi

fasterq-dump --split-files SRR2935971
gz1="$(_compress_if_exists SRR2935971_1 || true)"
gz2="$(_compress_if_exists SRR2935971_2 || true)"
gzs="$(_compress_if_exists SRR2935971 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2935972
gz1="$(_compress_if_exists SRR2935972_1 || true)"
gz2="$(_compress_if_exists SRR2935972_2 || true)"
gzs="$(_compress_if_exists SRR2935972 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2935973
gz1="$(_compress_if_exists SRR2935973_1 || true)"
gz2="$(_compress_if_exists SRR2935973_2 || true)"
gzs="$(_compress_if_exists SRR2935973 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_A09_GAATCACG.fq.gz
fi

fasterq-dump --split-files SRR2935974
gz1="$(_compress_if_exists SRR2935974_1 || true)"
gz2="$(_compress_if_exists SRR2935974_2 || true)"
gzs="$(_compress_if_exists SRR2935974 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_A10_CTAGGAAT.fq.gz
fi

fasterq-dump --split-files SRR2935975
gz1="$(_compress_if_exists SRR2935975_1 || true)"
gz2="$(_compress_if_exists SRR2935975_2 || true)"
gzs="$(_compress_if_exists SRR2935975 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_A12_GAGGCGTA.fq.gz
fi

fasterq-dump --split-files SRR2935976
gz1="$(_compress_if_exists SRR2935976_1 || true)"
gz2="$(_compress_if_exists SRR2935976_2 || true)"
gzs="$(_compress_if_exists SRR2935976 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_B02_GTGTGAGA.fq.gz
fi

fasterq-dump --split-files SRR2935977
gz1="$(_compress_if_exists SRR2935977_1 || true)"
gz2="$(_compress_if_exists SRR2935977_2 || true)"
gzs="$(_compress_if_exists SRR2935977 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_B03_CAGGACTC.fq.gz
fi

fasterq-dump --split-files SRR2935979
gz1="$(_compress_if_exists SRR2935979_1 || true)"
gz2="$(_compress_if_exists SRR2935979_2 || true)"
gzs="$(_compress_if_exists SRR2935979 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2935980
gz1="$(_compress_if_exists SRR2935980_1 || true)"
gz2="$(_compress_if_exists SRR2935980_2 || true)"
gzs="$(_compress_if_exists SRR2935980 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_B10_GCATGATT.fq.gz
fi

fasterq-dump --split-files SRR2935981
gz1="$(_compress_if_exists SRR2935981_1 || true)"
gz2="$(_compress_if_exists SRR2935981_2 || true)"
gzs="$(_compress_if_exists SRR2935981 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_B12_GATAAGTG.fq.gz
fi

fasterq-dump --split-files SRR2935982
gz1="$(_compress_if_exists SRR2935982_1 || true)"
gz2="$(_compress_if_exists SRR2935982_2 || true)"
gzs="$(_compress_if_exists SRR2935982 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2935983
gz1="$(_compress_if_exists SRR2935983_1 || true)"
gz2="$(_compress_if_exists SRR2935983_2 || true)"
gzs="$(_compress_if_exists SRR2935983 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2935984
gz1="$(_compress_if_exists SRR2935984_1 || true)"
gz2="$(_compress_if_exists SRR2935984_2 || true)"
gzs="$(_compress_if_exists SRR2935984 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_C05_TGATTACC.fq.gz
fi

fasterq-dump --split-files SRR2935985
gz1="$(_compress_if_exists SRR2935985_1 || true)"
gz2="$(_compress_if_exists SRR2935985_2 || true)"
gzs="$(_compress_if_exists SRR2935985 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_C07_ACAATCCC.fq.gz
fi

fasterq-dump --split-files SRR2935986
gz1="$(_compress_if_exists SRR2935986_1 || true)"
gz2="$(_compress_if_exists SRR2935986_2 || true)"
gzs="$(_compress_if_exists SRR2935986 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_C09_GGAGTTAC.fq.gz
fi

fasterq-dump --split-files SRR2935987
gz1="$(_compress_if_exists SRR2935987_1 || true)"
gz2="$(_compress_if_exists SRR2935987_2 || true)"
gzs="$(_compress_if_exists SRR2935987 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2935988
gz1="$(_compress_if_exists SRR2935988_1 || true)"
gz2="$(_compress_if_exists SRR2935988_2 || true)"
gzs="$(_compress_if_exists SRR2935988 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_D02_CCTATCGT.fq.gz
fi

fasterq-dump --split-files SRR2935989
gz1="$(_compress_if_exists SRR2935989_1 || true)"
gz2="$(_compress_if_exists SRR2935989_2 || true)"
gzs="$(_compress_if_exists SRR2935989 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_D05_TGGACTGG.fq.gz
fi

fasterq-dump --split-files SRR2935991
gz1="$(_compress_if_exists SRR2935991_1 || true)"
gz2="$(_compress_if_exists SRR2935991_2 || true)"
gzs="$(_compress_if_exists SRR2935991 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_D10_CTTTACCT.fq.gz
fi

fasterq-dump --split-files SRR2935992
gz1="$(_compress_if_exists SRR2935992_1 || true)"
gz2="$(_compress_if_exists SRR2935992_2 || true)"
gzs="$(_compress_if_exists SRR2935992 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2935993
gz1="$(_compress_if_exists SRR2935993_1 || true)"
gz2="$(_compress_if_exists SRR2935993_2 || true)"
gzs="$(_compress_if_exists SRR2935993 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_E01_CGCTAAAT.fq.gz
fi

fasterq-dump --split-files SRR2935994
gz1="$(_compress_if_exists SRR2935994_1 || true)"
gz2="$(_compress_if_exists SRR2935994_2 || true)"
gzs="$(_compress_if_exists SRR2935994 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_E04_AAGGAGCT.fq.gz
fi

fasterq-dump --split-files SRR2935995
gz1="$(_compress_if_exists SRR2935995_1 || true)"
gz2="$(_compress_if_exists SRR2935995_2 || true)"
gzs="$(_compress_if_exists SRR2935995 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2935996
gz1="$(_compress_if_exists SRR2935996_1 || true)"
gz2="$(_compress_if_exists SRR2935996_2 || true)"
gzs="$(_compress_if_exists SRR2935996 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_E08_AAGATGGC.fq.gz
fi

fasterq-dump --split-files SRR2935997
gz1="$(_compress_if_exists SRR2935997_1 || true)"
gz2="$(_compress_if_exists SRR2935997_2 || true)"
gzs="$(_compress_if_exists SRR2935997 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2935998
gz1="$(_compress_if_exists SRR2935998_1 || true)"
gz2="$(_compress_if_exists SRR2935998_2 || true)"
gzs="$(_compress_if_exists SRR2935998 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_F01_GTCTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2936000
gz1="$(_compress_if_exists SRR2936000_1 || true)"
gz2="$(_compress_if_exists SRR2936000_2 || true)"
gzs="$(_compress_if_exists SRR2936000 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_F06_ACACAACT.fq.gz
fi

fasterq-dump --split-files SRR2936001
gz1="$(_compress_if_exists SRR2936001_1 || true)"
gz2="$(_compress_if_exists SRR2936001_2 || true)"
gzs="$(_compress_if_exists SRR2936001 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_F10_ATGCCTGT.fq.gz
fi

fasterq-dump --split-files SRR2936002
gz1="$(_compress_if_exists SRR2936002_1 || true)"
gz2="$(_compress_if_exists SRR2936002_2 || true)"
gzs="$(_compress_if_exists SRR2936002 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_F12_TACAACGT.fq.gz
fi

fasterq-dump --split-files SRR2936003
gz1="$(_compress_if_exists SRR2936003_1 || true)"
gz2="$(_compress_if_exists SRR2936003_2 || true)"
gzs="$(_compress_if_exists SRR2936003 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2936004
gz1="$(_compress_if_exists SRR2936004_1 || true)"
gz2="$(_compress_if_exists SRR2936004_2 || true)"
gzs="$(_compress_if_exists SRR2936004 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936005
gz1="$(_compress_if_exists SRR2936005_1 || true)"
gz2="$(_compress_if_exists SRR2936005_2 || true)"
gzs="$(_compress_if_exists SRR2936005 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2936006
gz1="$(_compress_if_exists SRR2936006_1 || true)"
gz2="$(_compress_if_exists SRR2936006_2 || true)"
gzs="$(_compress_if_exists SRR2936006 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_H02_TGTCAAAG.fq.gz
fi

fasterq-dump --split-files SRR2936007
gz1="$(_compress_if_exists SRR2936007_1 || true)"
gz2="$(_compress_if_exists SRR2936007_2 || true)"
gzs="$(_compress_if_exists SRR2936007 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_H06_AATGACAG.fq.gz
fi

fasterq-dump --split-files SRR2936008
gz1="$(_compress_if_exists SRR2936008_1 || true)"
gz2="$(_compress_if_exists SRR2936008_2 || true)"
gzs="$(_compress_if_exists SRR2936008 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_H11_GCTTAACA.fq.gz
fi

fasterq-dump --split-files SRR2936009
gz1="$(_compress_if_exists SRR2936009_1 || true)"
gz2="$(_compress_if_exists SRR2936009_2 || true)"
gzs="$(_compress_if_exists SRR2936009 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-133_R295_L4_1_H12_CCAAATGC.fq.gz
fi

fasterq-dump --split-files SRR2936010
gz1="$(_compress_if_exists SRR2936010_1 || true)"
gz2="$(_compress_if_exists SRR2936010_2 || true)"
gzs="$(_compress_if_exists SRR2936010 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_A01_GCACACTA.fq.gz
fi

fasterq-dump --split-files SRR2936011
gz1="$(_compress_if_exists SRR2936011_1 || true)"
gz2="$(_compress_if_exists SRR2936011_2 || true)"
gzs="$(_compress_if_exists SRR2936011 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2936012
gz1="$(_compress_if_exists SRR2936012_1 || true)"
gz2="$(_compress_if_exists SRR2936012_2 || true)"
gzs="$(_compress_if_exists SRR2936012 || true)"

fasterq-dump --split-files SRR2936013
gz1="$(_compress_if_exists SRR2936013_1 || true)"
gz2="$(_compress_if_exists SRR2936013_2 || true)"
gzs="$(_compress_if_exists SRR2936013 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2936014
gz1="$(_compress_if_exists SRR2936014_1 || true)"
gz2="$(_compress_if_exists SRR2936014_2 || true)"
gzs="$(_compress_if_exists SRR2936014 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_A12_CCCTCAAA.fq.gz
fi

fasterq-dump --split-files SRR2936015
gz1="$(_compress_if_exists SRR2936015_1 || true)"
gz2="$(_compress_if_exists SRR2936015_2 || true)"
gzs="$(_compress_if_exists SRR2936015 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_B06_CTGATACG.fq.gz
fi

fasterq-dump --split-files SRR2936017
gz1="$(_compress_if_exists SRR2936017_1 || true)"
gz2="$(_compress_if_exists SRR2936017_2 || true)"
gzs="$(_compress_if_exists SRR2936017 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2936018
gz1="$(_compress_if_exists SRR2936018_1 || true)"
gz2="$(_compress_if_exists SRR2936018_2 || true)"
gzs="$(_compress_if_exists SRR2936018 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936019
gz1="$(_compress_if_exists SRR2936019_1 || true)"
gz2="$(_compress_if_exists SRR2936019_2 || true)"
gzs="$(_compress_if_exists SRR2936019 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_C04_AGCTAGGA.fq.gz
fi

fasterq-dump --split-files SRR2936020
gz1="$(_compress_if_exists SRR2936020_1 || true)"
gz2="$(_compress_if_exists SRR2936020_2 || true)"
gzs="$(_compress_if_exists SRR2936020 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_D04_TCAGAACC.fq.gz
fi

fasterq-dump --split-files SRR2936021
gz1="$(_compress_if_exists SRR2936021_1 || true)"
gz2="$(_compress_if_exists SRR2936021_2 || true)"
gzs="$(_compress_if_exists SRR2936021 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_D07_TGCAGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936022
gz1="$(_compress_if_exists SRR2936022_1 || true)"
gz2="$(_compress_if_exists SRR2936022_2 || true)"
gzs="$(_compress_if_exists SRR2936022 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936024
gz1="$(_compress_if_exists SRR2936024_1 || true)"
gz2="$(_compress_if_exists SRR2936024_2 || true)"
gzs="$(_compress_if_exists SRR2936024 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E01_CTGCTCAT.fq.gz
fi

fasterq-dump --split-files SRR2936025
gz1="$(_compress_if_exists SRR2936025_1 || true)"
gz2="$(_compress_if_exists SRR2936025_2 || true)"
gzs="$(_compress_if_exists SRR2936025 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E02_GAGCAATC.fq.gz
fi

fasterq-dump --split-files SRR2936026
gz1="$(_compress_if_exists SRR2936026_1 || true)"
gz2="$(_compress_if_exists SRR2936026_2 || true)"
gzs="$(_compress_if_exists SRR2936026 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E04_CAGTACGT.fq.gz
fi

fasterq-dump --split-files SRR2936027
gz1="$(_compress_if_exists SRR2936027_1 || true)"
gz2="$(_compress_if_exists SRR2936027_2 || true)"
gzs="$(_compress_if_exists SRR2936027 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E06_CCGTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2936028
gz1="$(_compress_if_exists SRR2936028_1 || true)"
gz2="$(_compress_if_exists SRR2936028_2 || true)"
gzs="$(_compress_if_exists SRR2936028 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E07_ACATCCGT.fq.gz
fi

fasterq-dump --split-files SRR2936030
gz1="$(_compress_if_exists SRR2936030_1 || true)"
gz2="$(_compress_if_exists SRR2936030_2 || true)"
gzs="$(_compress_if_exists SRR2936030 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E11_TGTGAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936031
gz1="$(_compress_if_exists SRR2936031_1 || true)"
gz2="$(_compress_if_exists SRR2936031_2 || true)"
gzs="$(_compress_if_exists SRR2936031 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2936032
gz1="$(_compress_if_exists SRR2936032_1 || true)"
gz2="$(_compress_if_exists SRR2936032_2 || true)"
gzs="$(_compress_if_exists SRR2936032 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_F03_ACGATCTG.fq.gz
fi

fasterq-dump --split-files SRR2936033
gz1="$(_compress_if_exists SRR2936033_1 || true)"
gz2="$(_compress_if_exists SRR2936033_2 || true)"
gzs="$(_compress_if_exists SRR2936033 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2936034
gz1="$(_compress_if_exists SRR2936034_1 || true)"
gz2="$(_compress_if_exists SRR2936034_2 || true)"
gzs="$(_compress_if_exists SRR2936034 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_F05_AAGAGCGT.fq.gz
fi

fasterq-dump --split-files SRR2936035
gz1="$(_compress_if_exists SRR2936035_1 || true)"
gz2="$(_compress_if_exists SRR2936035_2 || true)"
gzs="$(_compress_if_exists SRR2936035 || true)"

fasterq-dump --split-files SRR2936038
gz1="$(_compress_if_exists SRR2936038_1 || true)"
gz2="$(_compress_if_exists SRR2936038_2 || true)"
gzs="$(_compress_if_exists SRR2936038 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_G02_GTACGAAG.fq.gz
fi

fasterq-dump --split-files SRR2936039
gz1="$(_compress_if_exists SRR2936039_1 || true)"
gz2="$(_compress_if_exists SRR2936039_2 || true)"
gzs="$(_compress_if_exists SRR2936039 || true)"

fasterq-dump --split-files SRR2936041
gz1="$(_compress_if_exists SRR2936041_1 || true)"
gz2="$(_compress_if_exists SRR2936041_2 || true)"
gzs="$(_compress_if_exists SRR2936041 || true)"

fasterq-dump --split-files SRR2936042
gz1="$(_compress_if_exists SRR2936042_1 || true)"
gz2="$(_compress_if_exists SRR2936042_2 || true)"
gzs="$(_compress_if_exists SRR2936042 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_H01_AATCGCTG.fq.gz
fi

fasterq-dump --split-files SRR2936044
gz1="$(_compress_if_exists SRR2936044_1 || true)"
gz2="$(_compress_if_exists SRR2936044_2 || true)"
gzs="$(_compress_if_exists SRR2936044 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2936045
gz1="$(_compress_if_exists SRR2936045_1 || true)"
gz2="$(_compress_if_exists SRR2936045_2 || true)"
gzs="$(_compress_if_exists SRR2936045 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_H10_CACGTGAA.fq.gz
fi

fasterq-dump --split-files SRR2936046
gz1="$(_compress_if_exists SRR2936046_1 || true)"
gz2="$(_compress_if_exists SRR2936046_2 || true)"
gzs="$(_compress_if_exists SRR2936046 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-134_R295_L4_1_H11_GTTCTGCT.fq.gz
fi

fasterq-dump --split-files SRR2936047
gz1="$(_compress_if_exists SRR2936047_1 || true)"
gz2="$(_compress_if_exists SRR2936047_2 || true)"
gzs="$(_compress_if_exists SRR2936047 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_A01_GCACACTA.fq.gz
fi

fasterq-dump --split-files SRR2936048
gz1="$(_compress_if_exists SRR2936048_1 || true)"
gz2="$(_compress_if_exists SRR2936048_2 || true)"
gzs="$(_compress_if_exists SRR2936048 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_A03_GTCTGGTA.fq.gz
fi

fasterq-dump --split-files SRR2936049
gz1="$(_compress_if_exists SRR2936049_1 || true)"
gz2="$(_compress_if_exists SRR2936049_2 || true)"
gzs="$(_compress_if_exists SRR2936049 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_A04_GTTGCTAG.fq.gz
fi

fasterq-dump --split-files SRR2936050
gz1="$(_compress_if_exists SRR2936050_1 || true)"
gz2="$(_compress_if_exists SRR2936050_2 || true)"
gzs="$(_compress_if_exists SRR2936050 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_A07_AAACACCG.fq.gz
fi

fasterq-dump --split-files SRR2936051
gz1="$(_compress_if_exists SRR2936051_1 || true)"
gz2="$(_compress_if_exists SRR2936051_2 || true)"
gzs="$(_compress_if_exists SRR2936051 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2936052
gz1="$(_compress_if_exists SRR2936052_1 || true)"
gz2="$(_compress_if_exists SRR2936052_2 || true)"
gzs="$(_compress_if_exists SRR2936052 || true)"

fasterq-dump --split-files SRR2936053
gz1="$(_compress_if_exists SRR2936053_1 || true)"
gz2="$(_compress_if_exists SRR2936053_2 || true)"
gzs="$(_compress_if_exists SRR2936053 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2936054
gz1="$(_compress_if_exists SRR2936054_1 || true)"
gz2="$(_compress_if_exists SRR2936054_2 || true)"
gzs="$(_compress_if_exists SRR2936054 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B06_CTGATACG.fq.gz
fi

fasterq-dump --split-files SRR2936055
gz1="$(_compress_if_exists SRR2936055_1 || true)"
gz2="$(_compress_if_exists SRR2936055_2 || true)"
gzs="$(_compress_if_exists SRR2936055 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B07_ACACCTTG.fq.gz
fi

fasterq-dump --split-files SRR2936056
gz1="$(_compress_if_exists SRR2936056_1 || true)"
gz2="$(_compress_if_exists SRR2936056_2 || true)"
gzs="$(_compress_if_exists SRR2936056 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B08_TTACGGAC.fq.gz
fi

fasterq-dump --split-files SRR2936057
gz1="$(_compress_if_exists SRR2936057_1 || true)"
gz2="$(_compress_if_exists SRR2936057_2 || true)"
gzs="$(_compress_if_exists SRR2936057 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B09_CAAGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2936059
gz1="$(_compress_if_exists SRR2936059_1 || true)"
gz2="$(_compress_if_exists SRR2936059_2 || true)"
gzs="$(_compress_if_exists SRR2936059 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2936060
gz1="$(_compress_if_exists SRR2936060_1 || true)"
gz2="$(_compress_if_exists SRR2936060_2 || true)"
gzs="$(_compress_if_exists SRR2936060 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2936061
gz1="$(_compress_if_exists SRR2936061_1 || true)"
gz2="$(_compress_if_exists SRR2936061_2 || true)"
gzs="$(_compress_if_exists SRR2936061 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_C04_AGCTAGGA.fq.gz
fi

fasterq-dump --split-files SRR2936062
gz1="$(_compress_if_exists SRR2936062_1 || true)"
gz2="$(_compress_if_exists SRR2936062_2 || true)"
gzs="$(_compress_if_exists SRR2936062 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2936063
gz1="$(_compress_if_exists SRR2936063_1 || true)"
gz2="$(_compress_if_exists SRR2936063_2 || true)"
gzs="$(_compress_if_exists SRR2936063 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_C08_GACAACCA.fq.gz
fi

fasterq-dump --split-files SRR2936064
gz1="$(_compress_if_exists SRR2936064_1 || true)"
gz2="$(_compress_if_exists SRR2936064_2 || true)"
gzs="$(_compress_if_exists SRR2936064 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2936065
gz1="$(_compress_if_exists SRR2936065_1 || true)"
gz2="$(_compress_if_exists SRR2936065_2 || true)"
gzs="$(_compress_if_exists SRR2936065 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_C10_GATTACCG.fq.gz
fi

fasterq-dump --split-files SRR2936066
gz1="$(_compress_if_exists SRR2936066_1 || true)"
gz2="$(_compress_if_exists SRR2936066_2 || true)"
gzs="$(_compress_if_exists SRR2936066 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_C11_TACGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936068
gz1="$(_compress_if_exists SRR2936068_1 || true)"
gz2="$(_compress_if_exists SRR2936068_2 || true)"
gzs="$(_compress_if_exists SRR2936068 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_D06_GTGACCTA.fq.gz
fi

fasterq-dump --split-files SRR2936069
gz1="$(_compress_if_exists SRR2936069_1 || true)"
gz2="$(_compress_if_exists SRR2936069_2 || true)"
gzs="$(_compress_if_exists SRR2936069 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_D07_TGCAGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936071
gz1="$(_compress_if_exists SRR2936071_1 || true)"
gz2="$(_compress_if_exists SRR2936071_2 || true)"
gzs="$(_compress_if_exists SRR2936071 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936072
gz1="$(_compress_if_exists SRR2936072_1 || true)"
gz2="$(_compress_if_exists SRR2936072_2 || true)"
gzs="$(_compress_if_exists SRR2936072 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_D11_CCACTTTG.fq.gz
fi

fasterq-dump --split-files SRR2936073
gz1="$(_compress_if_exists SRR2936073_1 || true)"
gz2="$(_compress_if_exists SRR2936073_2 || true)"
gzs="$(_compress_if_exists SRR2936073 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2936074
gz1="$(_compress_if_exists SRR2936074_1 || true)"
gz2="$(_compress_if_exists SRR2936074_2 || true)"
gzs="$(_compress_if_exists SRR2936074 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_E05_TGTCACTG.fq.gz
fi

fasterq-dump --split-files SRR2936075
gz1="$(_compress_if_exists SRR2936075_1 || true)"
gz2="$(_compress_if_exists SRR2936075_2 || true)"
gzs="$(_compress_if_exists SRR2936075 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_E06_CCGTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2936076
gz1="$(_compress_if_exists SRR2936076_1 || true)"
gz2="$(_compress_if_exists SRR2936076_2 || true)"
gzs="$(_compress_if_exists SRR2936076 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_E07_ACATCCGT.fq.gz
fi

fasterq-dump --split-files SRR2936077
gz1="$(_compress_if_exists SRR2936077_1 || true)"
gz2="$(_compress_if_exists SRR2936077_2 || true)"
gzs="$(_compress_if_exists SRR2936077 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_E08_AGGTAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936078
gz1="$(_compress_if_exists SRR2936078_1 || true)"
gz2="$(_compress_if_exists SRR2936078_2 || true)"
gzs="$(_compress_if_exists SRR2936078 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2936080
gz1="$(_compress_if_exists SRR2936080_1 || true)"
gz2="$(_compress_if_exists SRR2936080_2 || true)"
gzs="$(_compress_if_exists SRR2936080 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_F01_CAGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2936081
gz1="$(_compress_if_exists SRR2936081_1 || true)"
gz2="$(_compress_if_exists SRR2936081_2 || true)"
gzs="$(_compress_if_exists SRR2936081 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_F02_CATAACCC.fq.gz
fi

fasterq-dump --split-files SRR2936082
gz1="$(_compress_if_exists SRR2936082_1 || true)"
gz2="$(_compress_if_exists SRR2936082_2 || true)"
gzs="$(_compress_if_exists SRR2936082 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_F08_CACTGAAC.fq.gz
fi

fasterq-dump --split-files SRR2936083
gz1="$(_compress_if_exists SRR2936083_1 || true)"
gz2="$(_compress_if_exists SRR2936083_2 || true)"
gzs="$(_compress_if_exists SRR2936083 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_G04_AAATCGCC.fq.gz
fi

fasterq-dump --split-files SRR2936084
gz1="$(_compress_if_exists SRR2936084_1 || true)"
gz2="$(_compress_if_exists SRR2936084_2 || true)"
gzs="$(_compress_if_exists SRR2936084 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_G12_CGCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2936085
gz1="$(_compress_if_exists SRR2936085_1 || true)"
gz2="$(_compress_if_exists SRR2936085_2 || true)"
gzs="$(_compress_if_exists SRR2936085 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2936086
gz1="$(_compress_if_exists SRR2936086_1 || true)"
gz2="$(_compress_if_exists SRR2936086_2 || true)"
gzs="$(_compress_if_exists SRR2936086 || true)"

fasterq-dump --split-files SRR2936087
gz1="$(_compress_if_exists SRR2936087_1 || true)"
gz2="$(_compress_if_exists SRR2936087_2 || true)"
gzs="$(_compress_if_exists SRR2936087 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-135_R297_L8_1_H12_CTTCTACG.fq.gz
fi

fasterq-dump --split-files SRR2936088
gz1="$(_compress_if_exists SRR2936088_1 || true)"
gz2="$(_compress_if_exists SRR2936088_2 || true)"
gzs="$(_compress_if_exists SRR2936088 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A02_GGTATTCA.fq.gz
fi

fasterq-dump --split-files SRR2936089
gz1="$(_compress_if_exists SRR2936089_1 || true)"
gz2="$(_compress_if_exists SRR2936089_2 || true)"
gzs="$(_compress_if_exists SRR2936089 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936090
gz1="$(_compress_if_exists SRR2936090_1 || true)"
gz2="$(_compress_if_exists SRR2936090_2 || true)"
gzs="$(_compress_if_exists SRR2936090 || true)"

fasterq-dump --split-files SRR2936091
gz1="$(_compress_if_exists SRR2936091_1 || true)"
gz2="$(_compress_if_exists SRR2936091_2 || true)"
gzs="$(_compress_if_exists SRR2936091 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A06_CACGGTGT.fq.gz
fi

fasterq-dump --split-files SRR2936092
gz1="$(_compress_if_exists SRR2936092_1 || true)"
gz2="$(_compress_if_exists SRR2936092_2 || true)"
gzs="$(_compress_if_exists SRR2936092 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A09_GAATCACG.fq.gz
fi

fasterq-dump --split-files SRR2936093
gz1="$(_compress_if_exists SRR2936093_1 || true)"
gz2="$(_compress_if_exists SRR2936093_2 || true)"
gzs="$(_compress_if_exists SRR2936093 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A10_CTAGGAAT.fq.gz
fi

fasterq-dump --split-files SRR2936094
gz1="$(_compress_if_exists SRR2936094_1 || true)"
gz2="$(_compress_if_exists SRR2936094_2 || true)"
gzs="$(_compress_if_exists SRR2936094 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A11_GCGTCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936095
gz1="$(_compress_if_exists SRR2936095_1 || true)"
gz2="$(_compress_if_exists SRR2936095_2 || true)"
gzs="$(_compress_if_exists SRR2936095 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_A12_GAGGCGTA.fq.gz
fi

fasterq-dump --split-files SRR2936096
gz1="$(_compress_if_exists SRR2936096_1 || true)"
gz2="$(_compress_if_exists SRR2936096_2 || true)"
gzs="$(_compress_if_exists SRR2936096 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_B01_ACGAGTCT.fq.gz
fi

fasterq-dump --split-files SRR2936098
gz1="$(_compress_if_exists SRR2936098_1 || true)"
gz2="$(_compress_if_exists SRR2936098_2 || true)"
gzs="$(_compress_if_exists SRR2936098 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_B06_CGTTCTAC.fq.gz
fi

fasterq-dump --split-files SRR2936099
gz1="$(_compress_if_exists SRR2936099_1 || true)"
gz2="$(_compress_if_exists SRR2936099_2 || true)"
gzs="$(_compress_if_exists SRR2936099 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_B09_TCGCTAGT.fq.gz
fi

fasterq-dump --split-files SRR2936100
gz1="$(_compress_if_exists SRR2936100_1 || true)"
gz2="$(_compress_if_exists SRR2936100_2 || true)"
gzs="$(_compress_if_exists SRR2936100 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_B11_AGCAAGCG.fq.gz
fi

fasterq-dump --split-files SRR2936101
gz1="$(_compress_if_exists SRR2936101_1 || true)"
gz2="$(_compress_if_exists SRR2936101_2 || true)"
gzs="$(_compress_if_exists SRR2936101 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936102
gz1="$(_compress_if_exists SRR2936102_1 || true)"
gz2="$(_compress_if_exists SRR2936102_2 || true)"
gzs="$(_compress_if_exists SRR2936102 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_C05_TGATTACC.fq.gz
fi

fasterq-dump --split-files SRR2936103
gz1="$(_compress_if_exists SRR2936103_1 || true)"
gz2="$(_compress_if_exists SRR2936103_2 || true)"
gzs="$(_compress_if_exists SRR2936103 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_C06_GTCAATCC.fq.gz
fi

fasterq-dump --split-files SRR2936104
gz1="$(_compress_if_exists SRR2936104_1 || true)"
gz2="$(_compress_if_exists SRR2936104_2 || true)"
gzs="$(_compress_if_exists SRR2936104 || true)"

fasterq-dump --split-files SRR2936105
gz1="$(_compress_if_exists SRR2936105_1 || true)"
gz2="$(_compress_if_exists SRR2936105_2 || true)"
gzs="$(_compress_if_exists SRR2936105 || true)"

fasterq-dump --split-files SRR2936106
gz1="$(_compress_if_exists SRR2936106_1 || true)"
gz2="$(_compress_if_exists SRR2936106_2 || true)"
gzs="$(_compress_if_exists SRR2936106 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_C12_TTAGCGGT.fq.gz
fi

fasterq-dump --split-files SRR2936107
gz1="$(_compress_if_exists SRR2936107_1 || true)"
gz2="$(_compress_if_exists SRR2936107_2 || true)"
gzs="$(_compress_if_exists SRR2936107 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_D04_CTAATGAC.fq.gz
fi

fasterq-dump --split-files SRR2936108
gz1="$(_compress_if_exists SRR2936108_1 || true)"
gz2="$(_compress_if_exists SRR2936108_2 || true)"
gzs="$(_compress_if_exists SRR2936108 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_D05_TGGACTGG.fq.gz
fi

fasterq-dump --split-files SRR2936109
gz1="$(_compress_if_exists SRR2936109_1 || true)"
gz2="$(_compress_if_exists SRR2936109_2 || true)"
gzs="$(_compress_if_exists SRR2936109 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_D07_CTACATCA.fq.gz
fi

fasterq-dump --split-files SRR2936110
gz1="$(_compress_if_exists SRR2936110_1 || true)"
gz2="$(_compress_if_exists SRR2936110_2 || true)"
gzs="$(_compress_if_exists SRR2936110 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_D11_CGACTATG.fq.gz
fi

fasterq-dump --split-files SRR2936111
gz1="$(_compress_if_exists SRR2936111_1 || true)"
gz2="$(_compress_if_exists SRR2936111_2 || true)"
gzs="$(_compress_if_exists SRR2936111 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2936112
gz1="$(_compress_if_exists SRR2936112_1 || true)"
gz2="$(_compress_if_exists SRR2936112_2 || true)"
gzs="$(_compress_if_exists SRR2936112 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_E03_AAAGGTCC.fq.gz
fi

fasterq-dump --split-files SRR2936113
gz1="$(_compress_if_exists SRR2936113_1 || true)"
gz2="$(_compress_if_exists SRR2936113_2 || true)"
gzs="$(_compress_if_exists SRR2936113 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_E05_GCTGAGGT.fq.gz
fi

fasterq-dump --split-files SRR2936114
gz1="$(_compress_if_exists SRR2936114_1 || true)"
gz2="$(_compress_if_exists SRR2936114_2 || true)"
gzs="$(_compress_if_exists SRR2936114 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2936115
gz1="$(_compress_if_exists SRR2936115_1 || true)"
gz2="$(_compress_if_exists SRR2936115_2 || true)"
gzs="$(_compress_if_exists SRR2936115 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_E07_ACAGCGAA.fq.gz
fi

fasterq-dump --split-files SRR2936116
gz1="$(_compress_if_exists SRR2936116_1 || true)"
gz2="$(_compress_if_exists SRR2936116_2 || true)"
gzs="$(_compress_if_exists SRR2936116 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_E10_AGTTGTGG.fq.gz
fi

fasterq-dump --split-files SRR2936117
gz1="$(_compress_if_exists SRR2936117_1 || true)"
gz2="$(_compress_if_exists SRR2936117_2 || true)"
gzs="$(_compress_if_exists SRR2936117 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2936118
gz1="$(_compress_if_exists SRR2936118_1 || true)"
gz2="$(_compress_if_exists SRR2936118_2 || true)"
gzs="$(_compress_if_exists SRR2936118 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_F01_GTCTGTAT.fq.gz
fi

fasterq-dump --split-files SRR2936119
gz1="$(_compress_if_exists SRR2936119_1 || true)"
gz2="$(_compress_if_exists SRR2936119_2 || true)"
gzs="$(_compress_if_exists SRR2936119 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_F04_TCGGGTGA.fq.gz
fi

fasterq-dump --split-files SRR2936120
gz1="$(_compress_if_exists SRR2936120_1 || true)"
gz2="$(_compress_if_exists SRR2936120_2 || true)"
gzs="$(_compress_if_exists SRR2936120 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2936121
gz1="$(_compress_if_exists SRR2936121_1 || true)"
gz2="$(_compress_if_exists SRR2936121_2 || true)"
gzs="$(_compress_if_exists SRR2936121 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2936123
gz1="$(_compress_if_exists SRR2936123_1 || true)"
gz2="$(_compress_if_exists SRR2936123_2 || true)"
gzs="$(_compress_if_exists SRR2936123 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_G03_CAAACAGT.fq.gz
fi

fasterq-dump --split-files SRR2936124
gz1="$(_compress_if_exists SRR2936124_1 || true)"
gz2="$(_compress_if_exists SRR2936124_2 || true)"
gzs="$(_compress_if_exists SRR2936124 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_G04_GTGGCAAC.fq.gz
fi

fasterq-dump --split-files SRR2936125
gz1="$(_compress_if_exists SRR2936125_1 || true)"
gz2="$(_compress_if_exists SRR2936125_2 || true)"
gzs="$(_compress_if_exists SRR2936125 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2936126
gz1="$(_compress_if_exists SRR2936126_1 || true)"
gz2="$(_compress_if_exists SRR2936126_2 || true)"
gzs="$(_compress_if_exists SRR2936126 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936127
gz1="$(_compress_if_exists SRR2936127_1 || true)"
gz2="$(_compress_if_exists SRR2936127_2 || true)"
gzs="$(_compress_if_exists SRR2936127 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2936128
gz1="$(_compress_if_exists SRR2936128_1 || true)"
gz2="$(_compress_if_exists SRR2936128_2 || true)"
gzs="$(_compress_if_exists SRR2936128 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H01_GAGCTCCA.fq.gz
fi

fasterq-dump --split-files SRR2936129
gz1="$(_compress_if_exists SRR2936129_1 || true)"
gz2="$(_compress_if_exists SRR2936129_2 || true)"
gzs="$(_compress_if_exists SRR2936129 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H02_TGTCAAAG.fq.gz
fi

fasterq-dump --split-files SRR2936130
gz1="$(_compress_if_exists SRR2936130_1 || true)"
gz2="$(_compress_if_exists SRR2936130_2 || true)"
gzs="$(_compress_if_exists SRR2936130 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H03_AGCCACTT.fq.gz
fi

fasterq-dump --split-files SRR2936131
gz1="$(_compress_if_exists SRR2936131_1 || true)"
gz2="$(_compress_if_exists SRR2936131_2 || true)"
gzs="$(_compress_if_exists SRR2936131 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2936132
gz1="$(_compress_if_exists SRR2936132_1 || true)"
gz2="$(_compress_if_exists SRR2936132_2 || true)"
gzs="$(_compress_if_exists SRR2936132 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H06_AATGACAG.fq.gz
fi

fasterq-dump --split-files SRR2936133
gz1="$(_compress_if_exists SRR2936133_1 || true)"
gz2="$(_compress_if_exists SRR2936133_2 || true)"
gzs="$(_compress_if_exists SRR2936133 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H07_TCTAGTTG.fq.gz
fi

fasterq-dump --split-files SRR2936134
gz1="$(_compress_if_exists SRR2936134_1 || true)"
gz2="$(_compress_if_exists SRR2936134_2 || true)"
gzs="$(_compress_if_exists SRR2936134 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-136_R297_L8_1_H11_GCTTAACA.fq.gz
fi

fasterq-dump --split-files SRR2936135
gz1="$(_compress_if_exists SRR2936135_1 || true)"
gz2="$(_compress_if_exists SRR2936135_2 || true)"
gzs="$(_compress_if_exists SRR2936135 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A02_TTAGCTCC.fq.gz
fi

fasterq-dump --split-files SRR2936136
gz1="$(_compress_if_exists SRR2936136_1 || true)"
gz2="$(_compress_if_exists SRR2936136_2 || true)"
gzs="$(_compress_if_exists SRR2936136 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A03_AACGTTGG.fq.gz
fi

fasterq-dump --split-files SRR2936137
gz1="$(_compress_if_exists SRR2936137_1 || true)"
gz2="$(_compress_if_exists SRR2936137_2 || true)"
gzs="$(_compress_if_exists SRR2936137 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A04_ACCGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936138
gz1="$(_compress_if_exists SRR2936138_1 || true)"
gz2="$(_compress_if_exists SRR2936138_2 || true)"
gzs="$(_compress_if_exists SRR2936138 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2936139
gz1="$(_compress_if_exists SRR2936139_1 || true)"
gz2="$(_compress_if_exists SRR2936139_2 || true)"
gzs="$(_compress_if_exists SRR2936139 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A06_CTCTCTCA.fq.gz
fi

fasterq-dump --split-files SRR2936140
gz1="$(_compress_if_exists SRR2936140_1 || true)"
gz2="$(_compress_if_exists SRR2936140_2 || true)"
gzs="$(_compress_if_exists SRR2936140 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A07_GGCATAAC.fq.gz
fi

fasterq-dump --split-files SRR2936141
gz1="$(_compress_if_exists SRR2936141_1 || true)"
gz2="$(_compress_if_exists SRR2936141_2 || true)"
gzs="$(_compress_if_exists SRR2936141 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2936142
gz1="$(_compress_if_exists SRR2936142_1 || true)"
gz2="$(_compress_if_exists SRR2936142_2 || true)"
gzs="$(_compress_if_exists SRR2936142 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A09_ACTAGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936143
gz1="$(_compress_if_exists SRR2936143_1 || true)"
gz2="$(_compress_if_exists SRR2936143_2 || true)"
gzs="$(_compress_if_exists SRR2936143 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A10_CGGTTTGT.fq.gz
fi

fasterq-dump --split-files SRR2936145
gz1="$(_compress_if_exists SRR2936145_1 || true)"
gz2="$(_compress_if_exists SRR2936145_2 || true)"
gzs="$(_compress_if_exists SRR2936145 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_A12_AAACGACG.fq.gz
fi

fasterq-dump --split-files SRR2936146
gz1="$(_compress_if_exists SRR2936146_1 || true)"
gz2="$(_compress_if_exists SRR2936146_2 || true)"
gzs="$(_compress_if_exists SRR2936146 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B01_AGACGAGA.fq.gz
fi

fasterq-dump --split-files SRR2936147
gz1="$(_compress_if_exists SRR2936147_1 || true)"
gz2="$(_compress_if_exists SRR2936147_2 || true)"
gzs="$(_compress_if_exists SRR2936147 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2936148
gz1="$(_compress_if_exists SRR2936148_1 || true)"
gz2="$(_compress_if_exists SRR2936148_2 || true)"
gzs="$(_compress_if_exists SRR2936148 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2936149
gz1="$(_compress_if_exists SRR2936149_1 || true)"
gz2="$(_compress_if_exists SRR2936149_2 || true)"
gzs="$(_compress_if_exists SRR2936149 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B04_GTGATCAG.fq.gz
fi

fasterq-dump --split-files SRR2936150
gz1="$(_compress_if_exists SRR2936150_1 || true)"
gz2="$(_compress_if_exists SRR2936150_2 || true)"
gzs="$(_compress_if_exists SRR2936150 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B05_AGTGCCAT.fq.gz
fi

fasterq-dump --split-files SRR2936151
gz1="$(_compress_if_exists SRR2936151_1 || true)"
gz2="$(_compress_if_exists SRR2936151_2 || true)"
gzs="$(_compress_if_exists SRR2936151 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B06_TCTACAGG.fq.gz
fi

fasterq-dump --split-files SRR2936152
gz1="$(_compress_if_exists SRR2936152_1 || true)"
gz2="$(_compress_if_exists SRR2936152_2 || true)"
gzs="$(_compress_if_exists SRR2936152 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B10_TCGTCGAT.fq.gz
fi

fasterq-dump --split-files SRR2936153
gz1="$(_compress_if_exists SRR2936153_1 || true)"
gz2="$(_compress_if_exists SRR2936153_2 || true)"
gzs="$(_compress_if_exists SRR2936153 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_B11_CCCATGTT.fq.gz
fi

fasterq-dump --split-files SRR2936154
gz1="$(_compress_if_exists SRR2936154_1 || true)"
gz2="$(_compress_if_exists SRR2936154_2 || true)"
gzs="$(_compress_if_exists SRR2936154 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_C01_TCACCGTA.fq.gz
fi

fasterq-dump --split-files SRR2936156
gz1="$(_compress_if_exists SRR2936156_1 || true)"
gz2="$(_compress_if_exists SRR2936156_2 || true)"
gzs="$(_compress_if_exists SRR2936156 || true)"

fasterq-dump --split-files SRR2936157
gz1="$(_compress_if_exists SRR2936157_1 || true)"
gz2="$(_compress_if_exists SRR2936157_2 || true)"
gzs="$(_compress_if_exists SRR2936157 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2936158
gz1="$(_compress_if_exists SRR2936158_1 || true)"
gz2="$(_compress_if_exists SRR2936158_2 || true)"
gzs="$(_compress_if_exists SRR2936158 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936159
gz1="$(_compress_if_exists SRR2936159_1 || true)"
gz2="$(_compress_if_exists SRR2936159_2 || true)"
gzs="$(_compress_if_exists SRR2936159 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_D02_TCCTTGGT.fq.gz
fi

fasterq-dump --split-files SRR2936160
gz1="$(_compress_if_exists SRR2936160_1 || true)"
gz2="$(_compress_if_exists SRR2936160_2 || true)"
gzs="$(_compress_if_exists SRR2936160 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_D03_TCTGACTG.fq.gz
fi

fasterq-dump --split-files SRR2936161
gz1="$(_compress_if_exists SRR2936161_1 || true)"
gz2="$(_compress_if_exists SRR2936161_2 || true)"
gzs="$(_compress_if_exists SRR2936161 || true)"

fasterq-dump --split-files SRR2936162
gz1="$(_compress_if_exists SRR2936162_1 || true)"
gz2="$(_compress_if_exists SRR2936162_2 || true)"
gzs="$(_compress_if_exists SRR2936162 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_D09_TTGCTTCG.fq.gz
fi

fasterq-dump --split-files SRR2936163
gz1="$(_compress_if_exists SRR2936163_1 || true)"
gz2="$(_compress_if_exists SRR2936163_2 || true)"
gzs="$(_compress_if_exists SRR2936163 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_D11_TCCGCTTT.fq.gz
fi

fasterq-dump --split-files SRR2936164
gz1="$(_compress_if_exists SRR2936164_1 || true)"
gz2="$(_compress_if_exists SRR2936164_2 || true)"
gzs="$(_compress_if_exists SRR2936164 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_D12_GGACAATC.fq.gz
fi

fasterq-dump --split-files SRR2936165
gz1="$(_compress_if_exists SRR2936165_1 || true)"
gz2="$(_compress_if_exists SRR2936165_2 || true)"
gzs="$(_compress_if_exists SRR2936165 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E02_ATACGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936166
gz1="$(_compress_if_exists SRR2936166_1 || true)"
gz2="$(_compress_if_exists SRR2936166_2 || true)"
gzs="$(_compress_if_exists SRR2936166 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2936167
gz1="$(_compress_if_exists SRR2936167_1 || true)"
gz2="$(_compress_if_exists SRR2936167_2 || true)"
gzs="$(_compress_if_exists SRR2936167 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E05_ACATGGTG.fq.gz
fi

fasterq-dump --split-files SRR2936168
gz1="$(_compress_if_exists SRR2936168_1 || true)"
gz2="$(_compress_if_exists SRR2936168_2 || true)"
gzs="$(_compress_if_exists SRR2936168 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E06_GGTTGTCT.fq.gz
fi

fasterq-dump --split-files SRR2936169
gz1="$(_compress_if_exists SRR2936169_1 || true)"
gz2="$(_compress_if_exists SRR2936169_2 || true)"
gzs="$(_compress_if_exists SRR2936169 || true)"

fasterq-dump --split-files SRR2936170
gz1="$(_compress_if_exists SRR2936170_1 || true)"
gz2="$(_compress_if_exists SRR2936170_2 || true)"
gzs="$(_compress_if_exists SRR2936170 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E08_GAACTGGT.fq.gz
fi

fasterq-dump --split-files SRR2936172
gz1="$(_compress_if_exists SRR2936172_1 || true)"
gz2="$(_compress_if_exists SRR2936172_2 || true)"
gzs="$(_compress_if_exists SRR2936172 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E10_GTCAAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936174
gz1="$(_compress_if_exists SRR2936174_1 || true)"
gz2="$(_compress_if_exists SRR2936174_2 || true)"
gzs="$(_compress_if_exists SRR2936174 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_E12_TAGAGGTG.fq.gz
fi

fasterq-dump --split-files SRR2936175
gz1="$(_compress_if_exists SRR2936175_1 || true)"
gz2="$(_compress_if_exists SRR2936175_2 || true)"
gzs="$(_compress_if_exists SRR2936175 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F01_GAACCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936176
gz1="$(_compress_if_exists SRR2936176_1 || true)"
gz2="$(_compress_if_exists SRR2936176_2 || true)"
gzs="$(_compress_if_exists SRR2936176 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2936177
gz1="$(_compress_if_exists SRR2936177_1 || true)"
gz2="$(_compress_if_exists SRR2936177_2 || true)"
gzs="$(_compress_if_exists SRR2936177 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F05_CGTTCCTA.fq.gz
fi

fasterq-dump --split-files SRR2936178
gz1="$(_compress_if_exists SRR2936178_1 || true)"
gz2="$(_compress_if_exists SRR2936178_2 || true)"
gzs="$(_compress_if_exists SRR2936178 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F06_TGAAGCCA.fq.gz
fi

fasterq-dump --split-files SRR2936179
gz1="$(_compress_if_exists SRR2936179_1 || true)"
gz2="$(_compress_if_exists SRR2936179_2 || true)"
gzs="$(_compress_if_exists SRR2936179 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F08_GCCCTATT.fq.gz
fi

fasterq-dump --split-files SRR2936180
gz1="$(_compress_if_exists SRR2936180_1 || true)"
gz2="$(_compress_if_exists SRR2936180_2 || true)"
gzs="$(_compress_if_exists SRR2936180 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F09_TAGCAGAG.fq.gz
fi

fasterq-dump --split-files SRR2936181
gz1="$(_compress_if_exists SRR2936181_1 || true)"
gz2="$(_compress_if_exists SRR2936181_2 || true)"
gzs="$(_compress_if_exists SRR2936181 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F11_TTCCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936182
gz1="$(_compress_if_exists SRR2936182_1 || true)"
gz2="$(_compress_if_exists SRR2936182_2 || true)"
gzs="$(_compress_if_exists SRR2936182 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_F12_GTCCAACT.fq.gz
fi

fasterq-dump --split-files SRR2936183
gz1="$(_compress_if_exists SRR2936183_1 || true)"
gz2="$(_compress_if_exists SRR2936183_2 || true)"
gzs="$(_compress_if_exists SRR2936183 || true)"

fasterq-dump --split-files SRR2936184
gz1="$(_compress_if_exists SRR2936184_1 || true)"
gz2="$(_compress_if_exists SRR2936184_2 || true)"
gzs="$(_compress_if_exists SRR2936184 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_G04_GCCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2936185
gz1="$(_compress_if_exists SRR2936185_1 || true)"
gz2="$(_compress_if_exists SRR2936185_2 || true)"
gzs="$(_compress_if_exists SRR2936185 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2936186
gz1="$(_compress_if_exists SRR2936186_1 || true)"
gz2="$(_compress_if_exists SRR2936186_2 || true)"
gzs="$(_compress_if_exists SRR2936186 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_G06_GTGAAGCT.fq.gz
fi

fasterq-dump --split-files SRR2936187
gz1="$(_compress_if_exists SRR2936187_1 || true)"
gz2="$(_compress_if_exists SRR2936187_2 || true)"
gzs="$(_compress_if_exists SRR2936187 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_G07_AGTGAGTG.fq.gz
fi

fasterq-dump --split-files SRR2936189
gz1="$(_compress_if_exists SRR2936189_1 || true)"
gz2="$(_compress_if_exists SRR2936189_2 || true)"
gzs="$(_compress_if_exists SRR2936189 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_G11_CCAGAGTT.fq.gz
fi

fasterq-dump --split-files SRR2936191
gz1="$(_compress_if_exists SRR2936191_1 || true)"
gz2="$(_compress_if_exists SRR2936191_2 || true)"
gzs="$(_compress_if_exists SRR2936191 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_H01_GTGCATAC.fq.gz
fi

fasterq-dump --split-files SRR2936192
gz1="$(_compress_if_exists SRR2936192_1 || true)"
gz2="$(_compress_if_exists SRR2936192_2 || true)"
gzs="$(_compress_if_exists SRR2936192 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_H02_ATCTTCCC.fq.gz
fi

fasterq-dump --split-files SRR2936193
gz1="$(_compress_if_exists SRR2936193_1 || true)"
gz2="$(_compress_if_exists SRR2936193_2 || true)"
gzs="$(_compress_if_exists SRR2936193 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_H04_GCACATGT.fq.gz
fi

fasterq-dump --split-files SRR2936194
gz1="$(_compress_if_exists SRR2936194_1 || true)"
gz2="$(_compress_if_exists SRR2936194_2 || true)"
gzs="$(_compress_if_exists SRR2936194 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_H05_ACCAACTC.fq.gz
fi

fasterq-dump --split-files SRR2936195
gz1="$(_compress_if_exists SRR2936195_1 || true)"
gz2="$(_compress_if_exists SRR2936195_2 || true)"
gzs="$(_compress_if_exists SRR2936195 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_H06_TGACACTG.fq.gz
fi

fasterq-dump --split-files SRR2936196
gz1="$(_compress_if_exists SRR2936196_1 || true)"
gz2="$(_compress_if_exists SRR2936196_2 || true)"
gzs="$(_compress_if_exists SRR2936196 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-138_R297_L7_1_H07_TCTTACCC.fq.gz
fi

fasterq-dump --split-files SRR2936197
gz1="$(_compress_if_exists SRR2936197_1 || true)"
gz2="$(_compress_if_exists SRR2936197_2 || true)"
gzs="$(_compress_if_exists SRR2936197 || true)"

fasterq-dump --split-files SRR2936198
gz1="$(_compress_if_exists SRR2936198_1 || true)"
gz2="$(_compress_if_exists SRR2936198_2 || true)"
gzs="$(_compress_if_exists SRR2936198 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_A02_ATAGAGCC.fq.gz
fi

fasterq-dump --split-files SRR2936199
gz1="$(_compress_if_exists SRR2936199_1 || true)"
gz2="$(_compress_if_exists SRR2936199_2 || true)"
gzs="$(_compress_if_exists SRR2936199 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_A03_AGAGCATC.fq.gz
fi

fasterq-dump --split-files SRR2936200
gz1="$(_compress_if_exists SRR2936200_1 || true)"
gz2="$(_compress_if_exists SRR2936200_2 || true)"
gzs="$(_compress_if_exists SRR2936200 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_A04_GCTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2936201
gz1="$(_compress_if_exists SRR2936201_1 || true)"
gz2="$(_compress_if_exists SRR2936201_2 || true)"
gzs="$(_compress_if_exists SRR2936201 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_A07_TGAGGCAT.fq.gz
fi

fasterq-dump --split-files SRR2936202
gz1="$(_compress_if_exists SRR2936202_1 || true)"
gz2="$(_compress_if_exists SRR2936202_2 || true)"
gzs="$(_compress_if_exists SRR2936202 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_A08_AGCTACCA.fq.gz
fi

fasterq-dump --split-files SRR2936203
gz1="$(_compress_if_exists SRR2936203_1 || true)"
gz2="$(_compress_if_exists SRR2936203_2 || true)"
gzs="$(_compress_if_exists SRR2936203 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_A12_CCATTAGC.fq.gz
fi

fasterq-dump --split-files SRR2936204
gz1="$(_compress_if_exists SRR2936204_1 || true)"
gz2="$(_compress_if_exists SRR2936204_2 || true)"
gzs="$(_compress_if_exists SRR2936204 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936205
gz1="$(_compress_if_exists SRR2936205_1 || true)"
gz2="$(_compress_if_exists SRR2936205_2 || true)"
gzs="$(_compress_if_exists SRR2936205 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2936206
gz1="$(_compress_if_exists SRR2936206_1 || true)"
gz2="$(_compress_if_exists SRR2936206_2 || true)"
gzs="$(_compress_if_exists SRR2936206 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2936207
gz1="$(_compress_if_exists SRR2936207_1 || true)"
gz2="$(_compress_if_exists SRR2936207_2 || true)"
gzs="$(_compress_if_exists SRR2936207 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2936208
gz1="$(_compress_if_exists SRR2936208_1 || true)"
gz2="$(_compress_if_exists SRR2936208_2 || true)"
gzs="$(_compress_if_exists SRR2936208 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2936209
gz1="$(_compress_if_exists SRR2936209_1 || true)"
gz2="$(_compress_if_exists SRR2936209_2 || true)"
gzs="$(_compress_if_exists SRR2936209 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2936210
gz1="$(_compress_if_exists SRR2936210_1 || true)"
gz2="$(_compress_if_exists SRR2936210_2 || true)"
gzs="$(_compress_if_exists SRR2936210 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B07_TGTTCGGA.fq.gz
fi

fasterq-dump --split-files SRR2936212
gz1="$(_compress_if_exists SRR2936212_1 || true)"
gz2="$(_compress_if_exists SRR2936212_2 || true)"
gzs="$(_compress_if_exists SRR2936212 || true)"

fasterq-dump --split-files SRR2936213
gz1="$(_compress_if_exists SRR2936213_1 || true)"
gz2="$(_compress_if_exists SRR2936213_2 || true)"
gzs="$(_compress_if_exists SRR2936213 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2936214
gz1="$(_compress_if_exists SRR2936214_1 || true)"
gz2="$(_compress_if_exists SRR2936214_2 || true)"
gzs="$(_compress_if_exists SRR2936214 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_C01_AAATGCGG.fq.gz
fi

fasterq-dump --split-files SRR2936215
gz1="$(_compress_if_exists SRR2936215_1 || true)"
gz2="$(_compress_if_exists SRR2936215_2 || true)"
gzs="$(_compress_if_exists SRR2936215 || true)"

fasterq-dump --split-files SRR2936216
gz1="$(_compress_if_exists SRR2936216_1 || true)"
gz2="$(_compress_if_exists SRR2936216_2 || true)"
gzs="$(_compress_if_exists SRR2936216 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2936217
gz1="$(_compress_if_exists SRR2936217_1 || true)"
gz2="$(_compress_if_exists SRR2936217_2 || true)"
gzs="$(_compress_if_exists SRR2936217 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2936218
gz1="$(_compress_if_exists SRR2936218_1 || true)"
gz2="$(_compress_if_exists SRR2936218_2 || true)"
gzs="$(_compress_if_exists SRR2936218 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_C08_ACTGATGC.fq.gz
fi

fasterq-dump --split-files SRR2936219
gz1="$(_compress_if_exists SRR2936219_1 || true)"
gz2="$(_compress_if_exists SRR2936219_2 || true)"
gzs="$(_compress_if_exists SRR2936219 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2936220
gz1="$(_compress_if_exists SRR2936220_1 || true)"
gz2="$(_compress_if_exists SRR2936220_2 || true)"
gzs="$(_compress_if_exists SRR2936220 || true)"

fasterq-dump --split-files SRR2936221
gz1="$(_compress_if_exists SRR2936221_1 || true)"
gz2="$(_compress_if_exists SRR2936221_2 || true)"
gzs="$(_compress_if_exists SRR2936221 || true)"

fasterq-dump --split-files SRR2936222
gz1="$(_compress_if_exists SRR2936222_1 || true)"
gz2="$(_compress_if_exists SRR2936222_2 || true)"
gzs="$(_compress_if_exists SRR2936222 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2936224
gz1="$(_compress_if_exists SRR2936224_1 || true)"
gz2="$(_compress_if_exists SRR2936224_2 || true)"
gzs="$(_compress_if_exists SRR2936224 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2936225
gz1="$(_compress_if_exists SRR2936225_1 || true)"
gz2="$(_compress_if_exists SRR2936225_2 || true)"
gzs="$(_compress_if_exists SRR2936225 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2936226
gz1="$(_compress_if_exists SRR2936226_1 || true)"
gz2="$(_compress_if_exists SRR2936226_2 || true)"
gzs="$(_compress_if_exists SRR2936226 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_D07_GAAACCCA.fq.gz
fi

fasterq-dump --split-files SRR2936227
gz1="$(_compress_if_exists SRR2936227_1 || true)"
gz2="$(_compress_if_exists SRR2936227_2 || true)"
gzs="$(_compress_if_exists SRR2936227 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2936228
gz1="$(_compress_if_exists SRR2936228_1 || true)"
gz2="$(_compress_if_exists SRR2936228_2 || true)"
gzs="$(_compress_if_exists SRR2936228 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2936229
gz1="$(_compress_if_exists SRR2936229_1 || true)"
gz2="$(_compress_if_exists SRR2936229_2 || true)"
gzs="$(_compress_if_exists SRR2936229 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_E01_TCCATCCT.fq.gz
fi

fasterq-dump --split-files SRR2936230
gz1="$(_compress_if_exists SRR2936230_1 || true)"
gz2="$(_compress_if_exists SRR2936230_2 || true)"
gzs="$(_compress_if_exists SRR2936230 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936232
gz1="$(_compress_if_exists SRR2936232_1 || true)"
gz2="$(_compress_if_exists SRR2936232_2 || true)"
gzs="$(_compress_if_exists SRR2936232 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-139_R297_L8_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2936233
gz1="$(_compress_if_exists SRR2936233_1 || true)"
gz2="$(_compress_if_exists SRR2936233_2 || true)"
gzs="$(_compress_if_exists SRR2936233 || true)"

fasterq-dump --split-files SRR2936259
gz1="$(_compress_if_exists SRR2936259_1 || true)"
gz2="$(_compress_if_exists SRR2936259_2 || true)"
gzs="$(_compress_if_exists SRR2936259 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2936260
gz1="$(_compress_if_exists SRR2936260_1 || true)"
gz2="$(_compress_if_exists SRR2936260_2 || true)"
gzs="$(_compress_if_exists SRR2936260 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A02_TTAGCTCC.fq.gz
fi

fasterq-dump --split-files SRR2936261
gz1="$(_compress_if_exists SRR2936261_1 || true)"
gz2="$(_compress_if_exists SRR2936261_2 || true)"
gzs="$(_compress_if_exists SRR2936261 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A04_ACCGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936262
gz1="$(_compress_if_exists SRR2936262_1 || true)"
gz2="$(_compress_if_exists SRR2936262_2 || true)"
gzs="$(_compress_if_exists SRR2936262 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2936263
gz1="$(_compress_if_exists SRR2936263_1 || true)"
gz2="$(_compress_if_exists SRR2936263_2 || true)"
gzs="$(_compress_if_exists SRR2936263 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A06_CTCTCTCA.fq.gz
fi

fasterq-dump --split-files SRR2936264
gz1="$(_compress_if_exists SRR2936264_1 || true)"
gz2="$(_compress_if_exists SRR2936264_2 || true)"
gzs="$(_compress_if_exists SRR2936264 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2936265
gz1="$(_compress_if_exists SRR2936265_1 || true)"
gz2="$(_compress_if_exists SRR2936265_2 || true)"
gzs="$(_compress_if_exists SRR2936265 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_A09_ACTAGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936266
gz1="$(_compress_if_exists SRR2936266_1 || true)"
gz2="$(_compress_if_exists SRR2936266_2 || true)"
gzs="$(_compress_if_exists SRR2936266 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_B04_GTGATCAG.fq.gz
fi

fasterq-dump --split-files SRR2936267
gz1="$(_compress_if_exists SRR2936267_1 || true)"
gz2="$(_compress_if_exists SRR2936267_2 || true)"
gzs="$(_compress_if_exists SRR2936267 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_B05_AGTGCCAT.fq.gz
fi

fasterq-dump --split-files SRR2936268
gz1="$(_compress_if_exists SRR2936268_1 || true)"
gz2="$(_compress_if_exists SRR2936268_2 || true)"
gzs="$(_compress_if_exists SRR2936268 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_B10_TCGTCGAT.fq.gz
fi

fasterq-dump --split-files SRR2936269
gz1="$(_compress_if_exists SRR2936269_1 || true)"
gz2="$(_compress_if_exists SRR2936269_2 || true)"
gzs="$(_compress_if_exists SRR2936269 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_B12_ATAGCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936271
gz1="$(_compress_if_exists SRR2936271_1 || true)"
gz2="$(_compress_if_exists SRR2936271_2 || true)"
gzs="$(_compress_if_exists SRR2936271 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_C06_CTAACACC.fq.gz
fi

fasterq-dump --split-files SRR2936272
gz1="$(_compress_if_exists SRR2936272_1 || true)"
gz2="$(_compress_if_exists SRR2936272_2 || true)"
gzs="$(_compress_if_exists SRR2936272 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2936273
gz1="$(_compress_if_exists SRR2936273_1 || true)"
gz2="$(_compress_if_exists SRR2936273_2 || true)"
gzs="$(_compress_if_exists SRR2936273 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936274
gz1="$(_compress_if_exists SRR2936274_1 || true)"
gz2="$(_compress_if_exists SRR2936274_2 || true)"
gzs="$(_compress_if_exists SRR2936274 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_C12_CTTCTCTG.fq.gz
fi

fasterq-dump --split-files SRR2936275
gz1="$(_compress_if_exists SRR2936275_1 || true)"
gz2="$(_compress_if_exists SRR2936275_2 || true)"
gzs="$(_compress_if_exists SRR2936275 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_D02_TCCTTGGT.fq.gz
fi

fasterq-dump --split-files SRR2936276
gz1="$(_compress_if_exists SRR2936276_1 || true)"
gz2="$(_compress_if_exists SRR2936276_2 || true)"
gzs="$(_compress_if_exists SRR2936276 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_D04_TACGGTAG.fq.gz
fi

fasterq-dump --split-files SRR2936277
gz1="$(_compress_if_exists SRR2936277_1 || true)"
gz2="$(_compress_if_exists SRR2936277_2 || true)"
gzs="$(_compress_if_exists SRR2936277 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_D05_GACGATAC.fq.gz
fi

fasterq-dump --split-files SRR2936278
gz1="$(_compress_if_exists SRR2936278_1 || true)"
gz2="$(_compress_if_exists SRR2936278_2 || true)"
gzs="$(_compress_if_exists SRR2936278 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_D10_TACTAGGG.fq.gz
fi

fasterq-dump --split-files SRR2936279
gz1="$(_compress_if_exists SRR2936279_1 || true)"
gz2="$(_compress_if_exists SRR2936279_2 || true)"
gzs="$(_compress_if_exists SRR2936279 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_D11_TCCGCTTT.fq.gz
fi

fasterq-dump --split-files SRR2936280
gz1="$(_compress_if_exists SRR2936280_1 || true)"
gz2="$(_compress_if_exists SRR2936280_2 || true)"
gzs="$(_compress_if_exists SRR2936280 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_D12_GGACAATC.fq.gz
fi

fasterq-dump --split-files SRR2936281
gz1="$(_compress_if_exists SRR2936281_1 || true)"
gz2="$(_compress_if_exists SRR2936281_2 || true)"
gzs="$(_compress_if_exists SRR2936281 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2936282
gz1="$(_compress_if_exists SRR2936282_1 || true)"
gz2="$(_compress_if_exists SRR2936282_2 || true)"
gzs="$(_compress_if_exists SRR2936282 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2936283
gz1="$(_compress_if_exists SRR2936283_1 || true)"
gz2="$(_compress_if_exists SRR2936283_2 || true)"
gzs="$(_compress_if_exists SRR2936283 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F02_CACGTACT.fq.gz
fi

fasterq-dump --split-files SRR2936284
gz1="$(_compress_if_exists SRR2936284_1 || true)"
gz2="$(_compress_if_exists SRR2936284_2 || true)"
gzs="$(_compress_if_exists SRR2936284 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2936285
gz1="$(_compress_if_exists SRR2936285_1 || true)"
gz2="$(_compress_if_exists SRR2936285_2 || true)"
gzs="$(_compress_if_exists SRR2936285 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F05_CGTTCCTA.fq.gz
fi

fasterq-dump --split-files SRR2936286
gz1="$(_compress_if_exists SRR2936286_1 || true)"
gz2="$(_compress_if_exists SRR2936286_2 || true)"
gzs="$(_compress_if_exists SRR2936286 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F08_GCCCTATT.fq.gz
fi

fasterq-dump --split-files SRR2936287
gz1="$(_compress_if_exists SRR2936287_1 || true)"
gz2="$(_compress_if_exists SRR2936287_2 || true)"
gzs="$(_compress_if_exists SRR2936287 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F10_AAGCCACA.fq.gz
fi

fasterq-dump --split-files SRR2936288
gz1="$(_compress_if_exists SRR2936288_1 || true)"
gz2="$(_compress_if_exists SRR2936288_2 || true)"
gzs="$(_compress_if_exists SRR2936288 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F11_TTCCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936289
gz1="$(_compress_if_exists SRR2936289_1 || true)"
gz2="$(_compress_if_exists SRR2936289_2 || true)"
gzs="$(_compress_if_exists SRR2936289 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_F12_GTCCAACT.fq.gz
fi

fasterq-dump --split-files SRR2936290
gz1="$(_compress_if_exists SRR2936290_1 || true)"
gz2="$(_compress_if_exists SRR2936290_2 || true)"
gzs="$(_compress_if_exists SRR2936290 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_G03_TTGTGCCA.fq.gz
fi

fasterq-dump --split-files SRR2936291
gz1="$(_compress_if_exists SRR2936291_1 || true)"
gz2="$(_compress_if_exists SRR2936291_2 || true)"
gzs="$(_compress_if_exists SRR2936291 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_G04_GCCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2936292
gz1="$(_compress_if_exists SRR2936292_1 || true)"
gz2="$(_compress_if_exists SRR2936292_2 || true)"
gzs="$(_compress_if_exists SRR2936292 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2936293
gz1="$(_compress_if_exists SRR2936293_1 || true)"
gz2="$(_compress_if_exists SRR2936293_2 || true)"
gzs="$(_compress_if_exists SRR2936293 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_G06_GTGAAGCT.fq.gz
fi

fasterq-dump --split-files SRR2936294
gz1="$(_compress_if_exists SRR2936294_1 || true)"
gz2="$(_compress_if_exists SRR2936294_2 || true)"
gzs="$(_compress_if_exists SRR2936294 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_G11_CCAGAGTT.fq.gz
fi

fasterq-dump --split-files SRR2936295
gz1="$(_compress_if_exists SRR2936295_1 || true)"
gz2="$(_compress_if_exists SRR2936295_2 || true)"
gzs="$(_compress_if_exists SRR2936295 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_G12_TCTGCACT.fq.gz
fi

fasterq-dump --split-files SRR2936296
gz1="$(_compress_if_exists SRR2936296_1 || true)"
gz2="$(_compress_if_exists SRR2936296_2 || true)"
gzs="$(_compress_if_exists SRR2936296 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_H05_ACCAACTC.fq.gz
fi

fasterq-dump --split-files SRR2936297
gz1="$(_compress_if_exists SRR2936297_1 || true)"
gz2="$(_compress_if_exists SRR2936297_2 || true)"
gzs="$(_compress_if_exists SRR2936297 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_H06_TGACACTG.fq.gz
fi

fasterq-dump --split-files SRR2936298
gz1="$(_compress_if_exists SRR2936298_1 || true)"
gz2="$(_compress_if_exists SRR2936298_2 || true)"
gzs="$(_compress_if_exists SRR2936298 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-140_R297_L8_1_H11_CTGCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936299
gz1="$(_compress_if_exists SRR2936299_1 || true)"
gz2="$(_compress_if_exists SRR2936299_2 || true)"
gzs="$(_compress_if_exists SRR2936299 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A01_ATTAGACG.fq.gz
fi

fasterq-dump --split-files SRR2936300
gz1="$(_compress_if_exists SRR2936300_1 || true)"
gz2="$(_compress_if_exists SRR2936300_2 || true)"
gzs="$(_compress_if_exists SRR2936300 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A02_GGTATTCA.fq.gz
fi

fasterq-dump --split-files SRR2936301
gz1="$(_compress_if_exists SRR2936301_1 || true)"
gz2="$(_compress_if_exists SRR2936301_2 || true)"
gzs="$(_compress_if_exists SRR2936301 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936302
gz1="$(_compress_if_exists SRR2936302_1 || true)"
gz2="$(_compress_if_exists SRR2936302_2 || true)"
gzs="$(_compress_if_exists SRR2936302 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2936303
gz1="$(_compress_if_exists SRR2936303_1 || true)"
gz2="$(_compress_if_exists SRR2936303_2 || true)"
gzs="$(_compress_if_exists SRR2936303 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A05_ACCTCGTT.fq.gz
fi

fasterq-dump --split-files SRR2936304
gz1="$(_compress_if_exists SRR2936304_1 || true)"
gz2="$(_compress_if_exists SRR2936304_2 || true)"
gzs="$(_compress_if_exists SRR2936304 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A08_TCCCATGG.fq.gz
fi

fasterq-dump --split-files SRR2936307
gz1="$(_compress_if_exists SRR2936307_1 || true)"
gz2="$(_compress_if_exists SRR2936307_2 || true)"
gzs="$(_compress_if_exists SRR2936307 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_A11_GCGTCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936308
gz1="$(_compress_if_exists SRR2936308_1 || true)"
gz2="$(_compress_if_exists SRR2936308_2 || true)"
gzs="$(_compress_if_exists SRR2936308 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_B01_ACGAGTCT.fq.gz
fi

fasterq-dump --split-files SRR2936310
gz1="$(_compress_if_exists SRR2936310_1 || true)"
gz2="$(_compress_if_exists SRR2936310_2 || true)"
gzs="$(_compress_if_exists SRR2936310 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_B04_ACTTTGCG.fq.gz
fi

fasterq-dump --split-files SRR2936311
gz1="$(_compress_if_exists SRR2936311_1 || true)"
gz2="$(_compress_if_exists SRR2936311_2 || true)"
gzs="$(_compress_if_exists SRR2936311 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_B05_TGGTGGCT.fq.gz
fi

fasterq-dump --split-files SRR2936312
gz1="$(_compress_if_exists SRR2936312_1 || true)"
gz2="$(_compress_if_exists SRR2936312_2 || true)"
gzs="$(_compress_if_exists SRR2936312 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_B06_CGTTCTAC.fq.gz
fi

fasterq-dump --split-files SRR2936313
gz1="$(_compress_if_exists SRR2936313_1 || true)"
gz2="$(_compress_if_exists SRR2936313_2 || true)"
gzs="$(_compress_if_exists SRR2936313 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_B07_CAGCGTAG.fq.gz
fi

fasterq-dump --split-files SRR2936314
gz1="$(_compress_if_exists SRR2936314_1 || true)"
gz2="$(_compress_if_exists SRR2936314_2 || true)"
gzs="$(_compress_if_exists SRR2936314 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_B10_GCATGATT.fq.gz
fi

fasterq-dump --split-files SRR2936315
gz1="$(_compress_if_exists SRR2936315_1 || true)"
gz2="$(_compress_if_exists SRR2936315_2 || true)"
gzs="$(_compress_if_exists SRR2936315 || true)"

fasterq-dump --split-files SRR2936316
gz1="$(_compress_if_exists SRR2936316_1 || true)"
gz2="$(_compress_if_exists SRR2936316_2 || true)"
gzs="$(_compress_if_exists SRR2936316 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C01_TGACGTGC.fq.gz
fi

fasterq-dump --split-files SRR2936317
gz1="$(_compress_if_exists SRR2936317_1 || true)"
gz2="$(_compress_if_exists SRR2936317_2 || true)"
gzs="$(_compress_if_exists SRR2936317 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C02_TACCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2936318
gz1="$(_compress_if_exists SRR2936318_1 || true)"
gz2="$(_compress_if_exists SRR2936318_2 || true)"
gzs="$(_compress_if_exists SRR2936318 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C03_TCAGTGTG.fq.gz
fi

fasterq-dump --split-files SRR2936319
gz1="$(_compress_if_exists SRR2936319_1 || true)"
gz2="$(_compress_if_exists SRR2936319_2 || true)"
gzs="$(_compress_if_exists SRR2936319 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C04_TCATGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936321
gz1="$(_compress_if_exists SRR2936321_1 || true)"
gz2="$(_compress_if_exists SRR2936321_2 || true)"
gzs="$(_compress_if_exists SRR2936321 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C06_GTCAATCC.fq.gz
fi

fasterq-dump --split-files SRR2936322
gz1="$(_compress_if_exists SRR2936322_1 || true)"
gz2="$(_compress_if_exists SRR2936322_2 || true)"
gzs="$(_compress_if_exists SRR2936322 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C09_GGAGTTAC.fq.gz
fi

fasterq-dump --split-files SRR2936323
gz1="$(_compress_if_exists SRR2936323_1 || true)"
gz2="$(_compress_if_exists SRR2936323_2 || true)"
gzs="$(_compress_if_exists SRR2936323 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_C10_AGGGAAGC.fq.gz
fi

fasterq-dump --split-files SRR2936325
gz1="$(_compress_if_exists SRR2936325_1 || true)"
gz2="$(_compress_if_exists SRR2936325_2 || true)"
gzs="$(_compress_if_exists SRR2936325 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_D01_GTCGTTGA.fq.gz
fi

fasterq-dump --split-files SRR2936326
gz1="$(_compress_if_exists SRR2936326_1 || true)"
gz2="$(_compress_if_exists SRR2936326_2 || true)"
gzs="$(_compress_if_exists SRR2936326 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_D02_CCTATCGT.fq.gz
fi

fasterq-dump --split-files SRR2936327
gz1="$(_compress_if_exists SRR2936327_1 || true)"
gz2="$(_compress_if_exists SRR2936327_2 || true)"
gzs="$(_compress_if_exists SRR2936327 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_D03_CCTGTAAC.fq.gz
fi

fasterq-dump --split-files SRR2936329
gz1="$(_compress_if_exists SRR2936329_1 || true)"
gz2="$(_compress_if_exists SRR2936329_2 || true)"
gzs="$(_compress_if_exists SRR2936329 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_D07_CTACATCA.fq.gz
fi

fasterq-dump --split-files SRR2936330
gz1="$(_compress_if_exists SRR2936330_1 || true)"
gz2="$(_compress_if_exists SRR2936330_2 || true)"
gzs="$(_compress_if_exists SRR2936330 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_D08_TTCACCCG.fq.gz
fi

fasterq-dump --split-files SRR2936331
gz1="$(_compress_if_exists SRR2936331_1 || true)"
gz2="$(_compress_if_exists SRR2936331_2 || true)"
gzs="$(_compress_if_exists SRR2936331 || true)"

fasterq-dump --split-files SRR2936332
gz1="$(_compress_if_exists SRR2936332_1 || true)"
gz2="$(_compress_if_exists SRR2936332_2 || true)"
gzs="$(_compress_if_exists SRR2936332 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_D12_GGACCTTA.fq.gz
fi

fasterq-dump --split-files SRR2936333
gz1="$(_compress_if_exists SRR2936333_1 || true)"
gz2="$(_compress_if_exists SRR2936333_2 || true)"
gzs="$(_compress_if_exists SRR2936333 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_E01_CGCTAAAT.fq.gz
fi

fasterq-dump --split-files SRR2936334
gz1="$(_compress_if_exists SRR2936334_1 || true)"
gz2="$(_compress_if_exists SRR2936334_2 || true)"
gzs="$(_compress_if_exists SRR2936334 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_E02_TCGACATC.fq.gz
fi

fasterq-dump --split-files SRR2936335
gz1="$(_compress_if_exists SRR2936335_1 || true)"
gz2="$(_compress_if_exists SRR2936335_2 || true)"
gzs="$(_compress_if_exists SRR2936335 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_E03_AAAGGTCC.fq.gz
fi

fasterq-dump --split-files SRR2936336
gz1="$(_compress_if_exists SRR2936336_1 || true)"
gz2="$(_compress_if_exists SRR2936336_2 || true)"
gzs="$(_compress_if_exists SRR2936336 || true)"

fasterq-dump --split-files SRR2936337
gz1="$(_compress_if_exists SRR2936337_1 || true)"
gz2="$(_compress_if_exists SRR2936337_2 || true)"
gzs="$(_compress_if_exists SRR2936337 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2936338
gz1="$(_compress_if_exists SRR2936338_1 || true)"
gz2="$(_compress_if_exists SRR2936338_2 || true)"
gzs="$(_compress_if_exists SRR2936338 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_E08_AAGATGGC.fq.gz
fi

fasterq-dump --split-files SRR2936339
gz1="$(_compress_if_exists SRR2936339_1 || true)"
gz2="$(_compress_if_exists SRR2936339_2 || true)"
gzs="$(_compress_if_exists SRR2936339 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_E09_GTACTCGG.fq.gz
fi

fasterq-dump --split-files SRR2936340
gz1="$(_compress_if_exists SRR2936340_1 || true)"
gz2="$(_compress_if_exists SRR2936340_2 || true)"
gzs="$(_compress_if_exists SRR2936340 || true)"

fasterq-dump --split-files SRR2936341
gz1="$(_compress_if_exists SRR2936341_1 || true)"
gz2="$(_compress_if_exists SRR2936341_2 || true)"
gzs="$(_compress_if_exists SRR2936341 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F02_ACCCGTAA.fq.gz
fi

fasterq-dump --split-files SRR2936343
gz1="$(_compress_if_exists SRR2936343_1 || true)"
gz2="$(_compress_if_exists SRR2936343_2 || true)"
gzs="$(_compress_if_exists SRR2936343 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F04_TCGGGTGA.fq.gz
fi

fasterq-dump --split-files SRR2936344
gz1="$(_compress_if_exists SRR2936344_1 || true)"
gz2="$(_compress_if_exists SRR2936344_2 || true)"
gzs="$(_compress_if_exists SRR2936344 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F05_AGTCCACC.fq.gz
fi

fasterq-dump --split-files SRR2936345
gz1="$(_compress_if_exists SRR2936345_1 || true)"
gz2="$(_compress_if_exists SRR2936345_2 || true)"
gzs="$(_compress_if_exists SRR2936345 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F07_AAGTCTTC.fq.gz
fi

fasterq-dump --split-files SRR2936346
gz1="$(_compress_if_exists SRR2936346_1 || true)"
gz2="$(_compress_if_exists SRR2936346_2 || true)"
gzs="$(_compress_if_exists SRR2936346 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F08_GATTATGC.fq.gz
fi

fasterq-dump --split-files SRR2936347
gz1="$(_compress_if_exists SRR2936347_1 || true)"
gz2="$(_compress_if_exists SRR2936347_2 || true)"
gzs="$(_compress_if_exists SRR2936347 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F09_ATTGCGTC.fq.gz
fi

fasterq-dump --split-files SRR2936348
gz1="$(_compress_if_exists SRR2936348_1 || true)"
gz2="$(_compress_if_exists SRR2936348_2 || true)"
gzs="$(_compress_if_exists SRR2936348 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_F10_ATGCCTGT.fq.gz
fi

fasterq-dump --split-files SRR2936349
gz1="$(_compress_if_exists SRR2936349_1 || true)"
gz2="$(_compress_if_exists SRR2936349_2 || true)"
gzs="$(_compress_if_exists SRR2936349 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_G03_CAAACAGT.fq.gz
fi

fasterq-dump --split-files SRR2936350
gz1="$(_compress_if_exists SRR2936350_1 || true)"
gz2="$(_compress_if_exists SRR2936350_2 || true)"
gzs="$(_compress_if_exists SRR2936350 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2936352
gz1="$(_compress_if_exists SRR2936352_1 || true)"
gz2="$(_compress_if_exists SRR2936352_2 || true)"
gzs="$(_compress_if_exists SRR2936352 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_G08_ACCATAGA.fq.gz
fi

fasterq-dump --split-files SRR2936353
gz1="$(_compress_if_exists SRR2936353_1 || true)"
gz2="$(_compress_if_exists SRR2936353_2 || true)"
gzs="$(_compress_if_exists SRR2936353 || true)"

fasterq-dump --split-files SRR2936354
gz1="$(_compress_if_exists SRR2936354_1 || true)"
gz2="$(_compress_if_exists SRR2936354_2 || true)"
gzs="$(_compress_if_exists SRR2936354 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2936355
gz1="$(_compress_if_exists SRR2936355_1 || true)"
gz2="$(_compress_if_exists SRR2936355_2 || true)"
gzs="$(_compress_if_exists SRR2936355 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_H04_TTGGTACA.fq.gz
fi

fasterq-dump --split-files SRR2936356
gz1="$(_compress_if_exists SRR2936356_1 || true)"
gz2="$(_compress_if_exists SRR2936356_2 || true)"
gzs="$(_compress_if_exists SRR2936356 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-141_R297_L5_1_H12_CCAAATGC.fq.gz
fi

fasterq-dump --split-files SRR2936357
gz1="$(_compress_if_exists SRR2936357_1 || true)"
gz2="$(_compress_if_exists SRR2936357_2 || true)"
gzs="$(_compress_if_exists SRR2936357 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A02_TAGCGAAC.fq.gz
fi

fasterq-dump --split-files SRR2936358
gz1="$(_compress_if_exists SRR2936358_1 || true)"
gz2="$(_compress_if_exists SRR2936358_2 || true)"
gzs="$(_compress_if_exists SRR2936358 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A03_GTCTGGTA.fq.gz
fi

fasterq-dump --split-files SRR2936359
gz1="$(_compress_if_exists SRR2936359_1 || true)"
gz2="$(_compress_if_exists SRR2936359_2 || true)"
gzs="$(_compress_if_exists SRR2936359 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A04_GTTGCTAG.fq.gz
fi

fasterq-dump --split-files SRR2936360
gz1="$(_compress_if_exists SRR2936360_1 || true)"
gz2="$(_compress_if_exists SRR2936360_2 || true)"
gzs="$(_compress_if_exists SRR2936360 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2936361
gz1="$(_compress_if_exists SRR2936361_1 || true)"
gz2="$(_compress_if_exists SRR2936361_2 || true)"
gzs="$(_compress_if_exists SRR2936361 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A07_AAACACCG.fq.gz
fi

fasterq-dump --split-files SRR2936362
gz1="$(_compress_if_exists SRR2936362_1 || true)"
gz2="$(_compress_if_exists SRR2936362_2 || true)"
gzs="$(_compress_if_exists SRR2936362 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A08_GTCTCTTG.fq.gz
fi

fasterq-dump --split-files SRR2936363
gz1="$(_compress_if_exists SRR2936363_1 || true)"
gz2="$(_compress_if_exists SRR2936363_2 || true)"
gzs="$(_compress_if_exists SRR2936363 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_A11_AATAGGGG.fq.gz
fi

fasterq-dump --split-files SRR2936364
gz1="$(_compress_if_exists SRR2936364_1 || true)"
gz2="$(_compress_if_exists SRR2936364_2 || true)"
gzs="$(_compress_if_exists SRR2936364 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_B01_CCCTTGTA.fq.gz
fi

fasterq-dump --split-files SRR2936365
gz1="$(_compress_if_exists SRR2936365_1 || true)"
gz2="$(_compress_if_exists SRR2936365_2 || true)"
gzs="$(_compress_if_exists SRR2936365 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_B03_GGTTGCAA.fq.gz
fi

fasterq-dump --split-files SRR2936366
gz1="$(_compress_if_exists SRR2936366_1 || true)"
gz2="$(_compress_if_exists SRR2936366_2 || true)"
gzs="$(_compress_if_exists SRR2936366 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2936367
gz1="$(_compress_if_exists SRR2936367_1 || true)"
gz2="$(_compress_if_exists SRR2936367_2 || true)"
gzs="$(_compress_if_exists SRR2936367 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2936368
gz1="$(_compress_if_exists SRR2936368_1 || true)"
gz2="$(_compress_if_exists SRR2936368_2 || true)"
gzs="$(_compress_if_exists SRR2936368 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936369
gz1="$(_compress_if_exists SRR2936369_1 || true)"
gz2="$(_compress_if_exists SRR2936369_2 || true)"
gzs="$(_compress_if_exists SRR2936369 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C03_CGTCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936370
gz1="$(_compress_if_exists SRR2936370_1 || true)"
gz2="$(_compress_if_exists SRR2936370_2 || true)"
gzs="$(_compress_if_exists SRR2936370 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C05_GCCTATAG.fq.gz
fi

fasterq-dump --split-files SRR2936371
gz1="$(_compress_if_exists SRR2936371_1 || true)"
gz2="$(_compress_if_exists SRR2936371_2 || true)"
gzs="$(_compress_if_exists SRR2936371 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C07_GTGGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2936372
gz1="$(_compress_if_exists SRR2936372_1 || true)"
gz2="$(_compress_if_exists SRR2936372_2 || true)"
gzs="$(_compress_if_exists SRR2936372 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C08_GACAACCA.fq.gz
fi

fasterq-dump --split-files SRR2936374
gz1="$(_compress_if_exists SRR2936374_1 || true)"
gz2="$(_compress_if_exists SRR2936374_2 || true)"
gzs="$(_compress_if_exists SRR2936374 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C11_TACGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936375
gz1="$(_compress_if_exists SRR2936375_1 || true)"
gz2="$(_compress_if_exists SRR2936375_2 || true)"
gzs="$(_compress_if_exists SRR2936375 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936376
gz1="$(_compress_if_exists SRR2936376_1 || true)"
gz2="$(_compress_if_exists SRR2936376_2 || true)"
gzs="$(_compress_if_exists SRR2936376 || true)"

fasterq-dump --split-files SRR2936378
gz1="$(_compress_if_exists SRR2936378_1 || true)"
gz2="$(_compress_if_exists SRR2936378_2 || true)"
gzs="$(_compress_if_exists SRR2936378 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_D08_AGATGCCT.fq.gz
fi

fasterq-dump --split-files SRR2936379
gz1="$(_compress_if_exists SRR2936379_1 || true)"
gz2="$(_compress_if_exists SRR2936379_2 || true)"
gzs="$(_compress_if_exists SRR2936379 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_D09_TGAGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2936380
gz1="$(_compress_if_exists SRR2936380_1 || true)"
gz2="$(_compress_if_exists SRR2936380_2 || true)"
gzs="$(_compress_if_exists SRR2936380 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936381
gz1="$(_compress_if_exists SRR2936381_1 || true)"
gz2="$(_compress_if_exists SRR2936381_2 || true)"
gzs="$(_compress_if_exists SRR2936381 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_D12_CTCTTCTC.fq.gz
fi

fasterq-dump --split-files SRR2936382
gz1="$(_compress_if_exists SRR2936382_1 || true)"
gz2="$(_compress_if_exists SRR2936382_2 || true)"
gzs="$(_compress_if_exists SRR2936382 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_E01_CTGCTCAT.fq.gz
fi

fasterq-dump --split-files SRR2936383
gz1="$(_compress_if_exists SRR2936383_1 || true)"
gz2="$(_compress_if_exists SRR2936383_2 || true)"
gzs="$(_compress_if_exists SRR2936383 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_E02_GAGCAATC.fq.gz
fi

fasterq-dump --split-files SRR2936384
gz1="$(_compress_if_exists SRR2936384_1 || true)"
gz2="$(_compress_if_exists SRR2936384_2 || true)"
gzs="$(_compress_if_exists SRR2936384 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_E04_CAGTACGT.fq.gz
fi

fasterq-dump --split-files SRR2936386
gz1="$(_compress_if_exists SRR2936386_1 || true)"
gz2="$(_compress_if_exists SRR2936386_2 || true)"
gzs="$(_compress_if_exists SRR2936386 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_E08_AGGTAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936387
gz1="$(_compress_if_exists SRR2936387_1 || true)"
gz2="$(_compress_if_exists SRR2936387_2 || true)"
gzs="$(_compress_if_exists SRR2936387 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_E09_GACATCAC.fq.gz
fi

fasterq-dump --split-files SRR2936388
gz1="$(_compress_if_exists SRR2936388_1 || true)"
gz2="$(_compress_if_exists SRR2936388_2 || true)"
gzs="$(_compress_if_exists SRR2936388 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2936389
gz1="$(_compress_if_exists SRR2936389_1 || true)"
gz2="$(_compress_if_exists SRR2936389_2 || true)"
gzs="$(_compress_if_exists SRR2936389 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_F04_GAGTTCAC.fq.gz
fi

fasterq-dump --split-files SRR2936390
gz1="$(_compress_if_exists SRR2936390_1 || true)"
gz2="$(_compress_if_exists SRR2936390_2 || true)"
gzs="$(_compress_if_exists SRR2936390 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_F09_CAACCGAT.fq.gz
fi

fasterq-dump --split-files SRR2936391
gz1="$(_compress_if_exists SRR2936391_1 || true)"
gz2="$(_compress_if_exists SRR2936391_2 || true)"
gzs="$(_compress_if_exists SRR2936391 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2936392
gz1="$(_compress_if_exists SRR2936392_1 || true)"
gz2="$(_compress_if_exists SRR2936392_2 || true)"
gzs="$(_compress_if_exists SRR2936392 || true)"

fasterq-dump --split-files SRR2936393
gz1="$(_compress_if_exists SRR2936393_1 || true)"
gz2="$(_compress_if_exists SRR2936393_2 || true)"
gzs="$(_compress_if_exists SRR2936393 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_G11_TGTGTAGG.fq.gz
fi

fasterq-dump --split-files SRR2936395
gz1="$(_compress_if_exists SRR2936395_1 || true)"
gz2="$(_compress_if_exists SRR2936395_2 || true)"
gzs="$(_compress_if_exists SRR2936395 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_H06_AGCGATAC.fq.gz
fi

fasterq-dump --split-files SRR2936396
gz1="$(_compress_if_exists SRR2936396_1 || true)"
gz2="$(_compress_if_exists SRR2936396_2 || true)"
gzs="$(_compress_if_exists SRR2936396 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_H07_GGTTACAC.fq.gz
fi

fasterq-dump --split-files SRR2936397
gz1="$(_compress_if_exists SRR2936397_1 || true)"
gz2="$(_compress_if_exists SRR2936397_2 || true)"
gzs="$(_compress_if_exists SRR2936397 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-144_R297_L5_1_H11_GTTCTGCT.fq.gz
fi

fasterq-dump --split-files SRR2936398
gz1="$(_compress_if_exists SRR2936398_1 || true)"
gz2="$(_compress_if_exists SRR2936398_2 || true)"
gzs="$(_compress_if_exists SRR2936398 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2936399
gz1="$(_compress_if_exists SRR2936399_1 || true)"
gz2="$(_compress_if_exists SRR2936399_2 || true)"
gzs="$(_compress_if_exists SRR2936399 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A02_TTAGCTCC.fq.gz
fi

fasterq-dump --split-files SRR2936401
gz1="$(_compress_if_exists SRR2936401_1 || true)"
gz2="$(_compress_if_exists SRR2936401_2 || true)"
gzs="$(_compress_if_exists SRR2936401 || true)"

fasterq-dump --split-files SRR2936402
gz1="$(_compress_if_exists SRR2936402_1 || true)"
gz2="$(_compress_if_exists SRR2936402_2 || true)"
gzs="$(_compress_if_exists SRR2936402 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2936403
gz1="$(_compress_if_exists SRR2936403_1 || true)"
gz2="$(_compress_if_exists SRR2936403_2 || true)"
gzs="$(_compress_if_exists SRR2936403 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A06_CTCTCTCA.fq.gz
fi

fasterq-dump --split-files SRR2936404
gz1="$(_compress_if_exists SRR2936404_1 || true)"
gz2="$(_compress_if_exists SRR2936404_2 || true)"
gzs="$(_compress_if_exists SRR2936404 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A07_GGCATAAC.fq.gz
fi

fasterq-dump --split-files SRR2936405
gz1="$(_compress_if_exists SRR2936405_1 || true)"
gz2="$(_compress_if_exists SRR2936405_2 || true)"
gzs="$(_compress_if_exists SRR2936405 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2936406
gz1="$(_compress_if_exists SRR2936406_1 || true)"
gz2="$(_compress_if_exists SRR2936406_2 || true)"
gzs="$(_compress_if_exists SRR2936406 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A10_CGGTTTGT.fq.gz
fi

fasterq-dump --split-files SRR2936407
gz1="$(_compress_if_exists SRR2936407_1 || true)"
gz2="$(_compress_if_exists SRR2936407_2 || true)"
gzs="$(_compress_if_exists SRR2936407 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A11_GCCATCAA.fq.gz
fi

fasterq-dump --split-files SRR2936408
gz1="$(_compress_if_exists SRR2936408_1 || true)"
gz2="$(_compress_if_exists SRR2936408_2 || true)"
gzs="$(_compress_if_exists SRR2936408 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_A12_AAACGACG.fq.gz
fi

fasterq-dump --split-files SRR2936409
gz1="$(_compress_if_exists SRR2936409_1 || true)"
gz2="$(_compress_if_exists SRR2936409_2 || true)"
gzs="$(_compress_if_exists SRR2936409 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2936410
gz1="$(_compress_if_exists SRR2936410_1 || true)"
gz2="$(_compress_if_exists SRR2936410_2 || true)"
gzs="$(_compress_if_exists SRR2936410 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_B05_AGTGCCAT.fq.gz
fi

fasterq-dump --split-files SRR2936412
gz1="$(_compress_if_exists SRR2936412_1 || true)"
gz2="$(_compress_if_exists SRR2936412_2 || true)"
gzs="$(_compress_if_exists SRR2936412 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_C05_ACCCTCTA.fq.gz
fi

fasterq-dump --split-files SRR2936413
gz1="$(_compress_if_exists SRR2936413_1 || true)"
gz2="$(_compress_if_exists SRR2936413_2 || true)"
gzs="$(_compress_if_exists SRR2936413 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2936414
gz1="$(_compress_if_exists SRR2936414_1 || true)"
gz2="$(_compress_if_exists SRR2936414_2 || true)"
gzs="$(_compress_if_exists SRR2936414 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936415
gz1="$(_compress_if_exists SRR2936415_1 || true)"
gz2="$(_compress_if_exists SRR2936415_2 || true)"
gzs="$(_compress_if_exists SRR2936415 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_C12_CTTCTCTG.fq.gz
fi

fasterq-dump --split-files SRR2936416
gz1="$(_compress_if_exists SRR2936416_1 || true)"
gz2="$(_compress_if_exists SRR2936416_2 || true)"
gzs="$(_compress_if_exists SRR2936416 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_D01_GGTACATC.fq.gz
fi

fasterq-dump --split-files SRR2936417
gz1="$(_compress_if_exists SRR2936417_1 || true)"
gz2="$(_compress_if_exists SRR2936417_2 || true)"
gzs="$(_compress_if_exists SRR2936417 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_D03_TCTGACTG.fq.gz
fi

fasterq-dump --split-files SRR2936418
gz1="$(_compress_if_exists SRR2936418_1 || true)"
gz2="$(_compress_if_exists SRR2936418_2 || true)"
gzs="$(_compress_if_exists SRR2936418 || true)"

fasterq-dump --split-files SRR2936420
gz1="$(_compress_if_exists SRR2936420_1 || true)"
gz2="$(_compress_if_exists SRR2936420_2 || true)"
gzs="$(_compress_if_exists SRR2936420 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_D09_TTGCTTCG.fq.gz
fi

fasterq-dump --split-files SRR2936422
gz1="$(_compress_if_exists SRR2936422_1 || true)"
gz2="$(_compress_if_exists SRR2936422_2 || true)"
gzs="$(_compress_if_exists SRR2936422 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2936423
gz1="$(_compress_if_exists SRR2936423_1 || true)"
gz2="$(_compress_if_exists SRR2936423_2 || true)"
gzs="$(_compress_if_exists SRR2936423 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_E07_AGCAGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936424
gz1="$(_compress_if_exists SRR2936424_1 || true)"
gz2="$(_compress_if_exists SRR2936424_2 || true)"
gzs="$(_compress_if_exists SRR2936424 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_E09_AATCTCGG.fq.gz
fi

fasterq-dump --split-files SRR2936425
gz1="$(_compress_if_exists SRR2936425_1 || true)"
gz2="$(_compress_if_exists SRR2936425_2 || true)"
gzs="$(_compress_if_exists SRR2936425 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_E10_GTCAAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936427
gz1="$(_compress_if_exists SRR2936427_1 || true)"
gz2="$(_compress_if_exists SRR2936427_2 || true)"
gzs="$(_compress_if_exists SRR2936427 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_E12_TAGAGGTG.fq.gz
fi

fasterq-dump --split-files SRR2936428
gz1="$(_compress_if_exists SRR2936428_1 || true)"
gz2="$(_compress_if_exists SRR2936428_2 || true)"
gzs="$(_compress_if_exists SRR2936428 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2936429
gz1="$(_compress_if_exists SRR2936429_1 || true)"
gz2="$(_compress_if_exists SRR2936429_2 || true)"
gzs="$(_compress_if_exists SRR2936429 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_F06_TGAAGCCA.fq.gz
fi

fasterq-dump --split-files SRR2936430
gz1="$(_compress_if_exists SRR2936430_1 || true)"
gz2="$(_compress_if_exists SRR2936430_2 || true)"
gzs="$(_compress_if_exists SRR2936430 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_F09_TAGCAGAG.fq.gz
fi

fasterq-dump --split-files SRR2936431
gz1="$(_compress_if_exists SRR2936431_1 || true)"
gz2="$(_compress_if_exists SRR2936431_2 || true)"
gzs="$(_compress_if_exists SRR2936431 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_F10_AAGCCACA.fq.gz
fi

fasterq-dump --split-files SRR2936432
gz1="$(_compress_if_exists SRR2936432_1 || true)"
gz2="$(_compress_if_exists SRR2936432_2 || true)"
gzs="$(_compress_if_exists SRR2936432 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_F11_TTCCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936433
gz1="$(_compress_if_exists SRR2936433_1 || true)"
gz2="$(_compress_if_exists SRR2936433_2 || true)"
gzs="$(_compress_if_exists SRR2936433 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_F12_GTCCAACT.fq.gz
fi

fasterq-dump --split-files SRR2936434
gz1="$(_compress_if_exists SRR2936434_1 || true)"
gz2="$(_compress_if_exists SRR2936434_2 || true)"
gzs="$(_compress_if_exists SRR2936434 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_G05_TGGCATCA.fq.gz
fi

fasterq-dump --split-files SRR2936435
gz1="$(_compress_if_exists SRR2936435_1 || true)"
gz2="$(_compress_if_exists SRR2936435_2 || true)"
gzs="$(_compress_if_exists SRR2936435 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_G09_CGCAACTA.fq.gz
fi

fasterq-dump --split-files SRR2936436
gz1="$(_compress_if_exists SRR2936436_1 || true)"
gz2="$(_compress_if_exists SRR2936436_2 || true)"
gzs="$(_compress_if_exists SRR2936436 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_H11_CTGCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936437
gz1="$(_compress_if_exists SRR2936437_1 || true)"
gz2="$(_compress_if_exists SRR2936437_2 || true)"
gzs="$(_compress_if_exists SRR2936437 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-145_R295_L4_1_H12_AGACAGAG.fq.gz
fi

fasterq-dump --split-files SRR2936439
gz1="$(_compress_if_exists SRR2936439_1 || true)"
gz2="$(_compress_if_exists SRR2936439_2 || true)"
gzs="$(_compress_if_exists SRR2936439 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_A07_AAACACCG.fq.gz
fi

fasterq-dump --split-files SRR2936440
gz1="$(_compress_if_exists SRR2936440_1 || true)"
gz2="$(_compress_if_exists SRR2936440_2 || true)"
gzs="$(_compress_if_exists SRR2936440 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2936441
gz1="$(_compress_if_exists SRR2936441_1 || true)"
gz2="$(_compress_if_exists SRR2936441_2 || true)"
gzs="$(_compress_if_exists SRR2936441 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_A11_AATAGGGG.fq.gz
fi

fasterq-dump --split-files SRR2936442
gz1="$(_compress_if_exists SRR2936442_1 || true)"
gz2="$(_compress_if_exists SRR2936442_2 || true)"
gzs="$(_compress_if_exists SRR2936442 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_B01_CCCTTGTA.fq.gz
fi

fasterq-dump --split-files SRR2936443
gz1="$(_compress_if_exists SRR2936443_1 || true)"
gz2="$(_compress_if_exists SRR2936443_2 || true)"
gzs="$(_compress_if_exists SRR2936443 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_B04_GGTAGGAA.fq.gz
fi

fasterq-dump --split-files SRR2936444
gz1="$(_compress_if_exists SRR2936444_1 || true)"
gz2="$(_compress_if_exists SRR2936444_2 || true)"
gzs="$(_compress_if_exists SRR2936444 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_B05_AGAATCGG.fq.gz
fi

fasterq-dump --split-files SRR2936445
gz1="$(_compress_if_exists SRR2936445_1 || true)"
gz2="$(_compress_if_exists SRR2936445_2 || true)"
gzs="$(_compress_if_exists SRR2936445 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2936446
gz1="$(_compress_if_exists SRR2936446_1 || true)"
gz2="$(_compress_if_exists SRR2936446_2 || true)"
gzs="$(_compress_if_exists SRR2936446 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2936447
gz1="$(_compress_if_exists SRR2936447_1 || true)"
gz2="$(_compress_if_exists SRR2936447_2 || true)"
gzs="$(_compress_if_exists SRR2936447 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936448
gz1="$(_compress_if_exists SRR2936448_1 || true)"
gz2="$(_compress_if_exists SRR2936448_2 || true)"
gzs="$(_compress_if_exists SRR2936448 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_C03_CGTCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936449
gz1="$(_compress_if_exists SRR2936449_1 || true)"
gz2="$(_compress_if_exists SRR2936449_2 || true)"
gzs="$(_compress_if_exists SRR2936449 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_C06_CGGAACAA.fq.gz
fi

fasterq-dump --split-files SRR2936450
gz1="$(_compress_if_exists SRR2936450_1 || true)"
gz2="$(_compress_if_exists SRR2936450_2 || true)"
gzs="$(_compress_if_exists SRR2936450 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_D07_TGCAGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936451
gz1="$(_compress_if_exists SRR2936451_1 || true)"
gz2="$(_compress_if_exists SRR2936451_2 || true)"
gzs="$(_compress_if_exists SRR2936451 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_E08_AGGTAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936452
gz1="$(_compress_if_exists SRR2936452_1 || true)"
gz2="$(_compress_if_exists SRR2936452_2 || true)"
gzs="$(_compress_if_exists SRR2936452 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_E09_GACATCAC.fq.gz
fi

fasterq-dump --split-files SRR2936453
gz1="$(_compress_if_exists SRR2936453_1 || true)"
gz2="$(_compress_if_exists SRR2936453_2 || true)"
gzs="$(_compress_if_exists SRR2936453 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2936454
gz1="$(_compress_if_exists SRR2936454_1 || true)"
gz2="$(_compress_if_exists SRR2936454_2 || true)"
gzs="$(_compress_if_exists SRR2936454 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_F06_CATTCTCG.fq.gz
fi

fasterq-dump --split-files SRR2936455
gz1="$(_compress_if_exists SRR2936455_1 || true)"
gz2="$(_compress_if_exists SRR2936455_2 || true)"
gzs="$(_compress_if_exists SRR2936455 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_F07_ATCCCACT.fq.gz
fi

fasterq-dump --split-files SRR2936457
gz1="$(_compress_if_exists SRR2936457_1 || true)"
gz2="$(_compress_if_exists SRR2936457_2 || true)"
gzs="$(_compress_if_exists SRR2936457 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_G06_CTATAGCG.fq.gz
fi

fasterq-dump --split-files SRR2936458
gz1="$(_compress_if_exists SRR2936458_1 || true)"
gz2="$(_compress_if_exists SRR2936458_2 || true)"
gzs="$(_compress_if_exists SRR2936458 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_G07_TTGTCCCT.fq.gz
fi

fasterq-dump --split-files SRR2936459
gz1="$(_compress_if_exists SRR2936459_1 || true)"
gz2="$(_compress_if_exists SRR2936459_2 || true)"
gzs="$(_compress_if_exists SRR2936459 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_G09_GGAAATGG.fq.gz
fi

fasterq-dump --split-files SRR2936460
gz1="$(_compress_if_exists SRR2936460_1 || true)"
gz2="$(_compress_if_exists SRR2936460_2 || true)"
gzs="$(_compress_if_exists SRR2936460 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_H07_GGTTACAC.fq.gz
fi

fasterq-dump --split-files SRR2936461
gz1="$(_compress_if_exists SRR2936461_1 || true)"
gz2="$(_compress_if_exists SRR2936461_2 || true)"
gzs="$(_compress_if_exists SRR2936461 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-158_R293_L3_1_H11_GTTCTGCT.fq.gz
fi

fasterq-dump --split-files SRR2936463
gz1="$(_compress_if_exists SRR2936463_1 || true)"
gz2="$(_compress_if_exists SRR2936463_2 || true)"
gzs="$(_compress_if_exists SRR2936463 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_A03_AACGTTGG.fq.gz
fi

fasterq-dump --split-files SRR2936465
gz1="$(_compress_if_exists SRR2936465_1 || true)"
gz2="$(_compress_if_exists SRR2936465_2 || true)"
gzs="$(_compress_if_exists SRR2936465 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2936466
gz1="$(_compress_if_exists SRR2936466_1 || true)"
gz2="$(_compress_if_exists SRR2936466_2 || true)"
gzs="$(_compress_if_exists SRR2936466 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2936467
gz1="$(_compress_if_exists SRR2936467_1 || true)"
gz2="$(_compress_if_exists SRR2936467_2 || true)"
gzs="$(_compress_if_exists SRR2936467 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2936469
gz1="$(_compress_if_exists SRR2936469_1 || true)"
gz2="$(_compress_if_exists SRR2936469_2 || true)"
gzs="$(_compress_if_exists SRR2936469 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_B09_TAGTCACC.fq.gz
fi

fasterq-dump --split-files SRR2936470
gz1="$(_compress_if_exists SRR2936470_1 || true)"
gz2="$(_compress_if_exists SRR2936470_2 || true)"
gzs="$(_compress_if_exists SRR2936470 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_B11_CCCATGTT.fq.gz
fi

fasterq-dump --split-files SRR2936471
gz1="$(_compress_if_exists SRR2936471_1 || true)"
gz2="$(_compress_if_exists SRR2936471_2 || true)"
gzs="$(_compress_if_exists SRR2936471 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_B12_ATAGCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936472
gz1="$(_compress_if_exists SRR2936472_1 || true)"
gz2="$(_compress_if_exists SRR2936472_2 || true)"
gzs="$(_compress_if_exists SRR2936472 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_C02_CGAGAACT.fq.gz
fi

fasterq-dump --split-files SRR2936473
gz1="$(_compress_if_exists SRR2936473_1 || true)"
gz2="$(_compress_if_exists SRR2936473_2 || true)"
gzs="$(_compress_if_exists SRR2936473 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_C03_TTGTTGCC.fq.gz
fi

fasterq-dump --split-files SRR2936474
gz1="$(_compress_if_exists SRR2936474_1 || true)"
gz2="$(_compress_if_exists SRR2936474_2 || true)"
gzs="$(_compress_if_exists SRR2936474 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_C05_ACCCTCTA.fq.gz
fi

fasterq-dump --split-files SRR2936475
gz1="$(_compress_if_exists SRR2936475_1 || true)"
gz2="$(_compress_if_exists SRR2936475_2 || true)"
gzs="$(_compress_if_exists SRR2936475 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_C06_CTAACACC.fq.gz
fi

fasterq-dump --split-files SRR2936476
gz1="$(_compress_if_exists SRR2936476_1 || true)"
gz2="$(_compress_if_exists SRR2936476_2 || true)"
gzs="$(_compress_if_exists SRR2936476 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_C08_TGCCTTGT.fq.gz
fi

fasterq-dump --split-files SRR2936477
gz1="$(_compress_if_exists SRR2936477_1 || true)"
gz2="$(_compress_if_exists SRR2936477_2 || true)"
gzs="$(_compress_if_exists SRR2936477 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2936480
gz1="$(_compress_if_exists SRR2936480_1 || true)"
gz2="$(_compress_if_exists SRR2936480_2 || true)"
gzs="$(_compress_if_exists SRR2936480 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_D06_GGTAAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936482
gz1="$(_compress_if_exists SRR2936482_1 || true)"
gz2="$(_compress_if_exists SRR2936482_2 || true)"
gzs="$(_compress_if_exists SRR2936482 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_D09_TTGCTTCG.fq.gz
fi

fasterq-dump --split-files SRR2936483
gz1="$(_compress_if_exists SRR2936483_1 || true)"
gz2="$(_compress_if_exists SRR2936483_2 || true)"
gzs="$(_compress_if_exists SRR2936483 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_D11_TCCGCTTT.fq.gz
fi

fasterq-dump --split-files SRR2936484
gz1="$(_compress_if_exists SRR2936484_1 || true)"
gz2="$(_compress_if_exists SRR2936484_2 || true)"
gzs="$(_compress_if_exists SRR2936484 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_E02_ATACGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936487
gz1="$(_compress_if_exists SRR2936487_1 || true)"
gz2="$(_compress_if_exists SRR2936487_2 || true)"
gzs="$(_compress_if_exists SRR2936487 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-161_R293_L3_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2936493
gz1="$(_compress_if_exists SRR2936493_1 || true)"
gz2="$(_compress_if_exists SRR2936493_2 || true)"
gzs="$(_compress_if_exists SRR2936493 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_A02_ATAGAGCC.fq.gz
fi

fasterq-dump --split-files SRR2936495
gz1="$(_compress_if_exists SRR2936495_1 || true)"
gz2="$(_compress_if_exists SRR2936495_2 || true)"
gzs="$(_compress_if_exists SRR2936495 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_A05_GCTTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2936497
gz1="$(_compress_if_exists SRR2936497_1 || true)"
gz2="$(_compress_if_exists SRR2936497_2 || true)"
gzs="$(_compress_if_exists SRR2936497 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_A08_AGCTACCA.fq.gz
fi

fasterq-dump --split-files SRR2936500
gz1="$(_compress_if_exists SRR2936500_1 || true)"
gz2="$(_compress_if_exists SRR2936500_2 || true)"
gzs="$(_compress_if_exists SRR2936500 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936501
gz1="$(_compress_if_exists SRR2936501_1 || true)"
gz2="$(_compress_if_exists SRR2936501_2 || true)"
gzs="$(_compress_if_exists SRR2936501 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_B02_GTGCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2936502
gz1="$(_compress_if_exists SRR2936502_1 || true)"
gz2="$(_compress_if_exists SRR2936502_2 || true)"
gzs="$(_compress_if_exists SRR2936502 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2936503
gz1="$(_compress_if_exists SRR2936503_1 || true)"
gz2="$(_compress_if_exists SRR2936503_2 || true)"
gzs="$(_compress_if_exists SRR2936503 || true)"

fasterq-dump --split-files SRR2936505
gz1="$(_compress_if_exists SRR2936505_1 || true)"
gz2="$(_compress_if_exists SRR2936505_2 || true)"
gzs="$(_compress_if_exists SRR2936505 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_B06_TCTCTCTC.fq.gz
fi

fasterq-dump --split-files SRR2936507
gz1="$(_compress_if_exists SRR2936507_1 || true)"
gz2="$(_compress_if_exists SRR2936507_2 || true)"
gzs="$(_compress_if_exists SRR2936507 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2936508
gz1="$(_compress_if_exists SRR2936508_1 || true)"
gz2="$(_compress_if_exists SRR2936508_2 || true)"
gzs="$(_compress_if_exists SRR2936508 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C01_AAATGCGG.fq.gz
fi

fasterq-dump --split-files SRR2936509
gz1="$(_compress_if_exists SRR2936509_1 || true)"
gz2="$(_compress_if_exists SRR2936509_2 || true)"
gzs="$(_compress_if_exists SRR2936509 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C02_GTGACATG.fq.gz
fi

fasterq-dump --split-files SRR2936510
gz1="$(_compress_if_exists SRR2936510_1 || true)"
gz2="$(_compress_if_exists SRR2936510_2 || true)"
gzs="$(_compress_if_exists SRR2936510 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C03_AGGTGATC.fq.gz
fi

fasterq-dump --split-files SRR2936512
gz1="$(_compress_if_exists SRR2936512_1 || true)"
gz2="$(_compress_if_exists SRR2936512_2 || true)"
gzs="$(_compress_if_exists SRR2936512 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C05_GAGCTATG.fq.gz
fi

fasterq-dump --split-files SRR2936513
gz1="$(_compress_if_exists SRR2936513_1 || true)"
gz2="$(_compress_if_exists SRR2936513_2 || true)"
gzs="$(_compress_if_exists SRR2936513 || true)"

fasterq-dump --split-files SRR2936514
gz1="$(_compress_if_exists SRR2936514_1 || true)"
gz2="$(_compress_if_exists SRR2936514_2 || true)"
gzs="$(_compress_if_exists SRR2936514 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C08_ACTGATGC.fq.gz
fi

fasterq-dump --split-files SRR2936515
gz1="$(_compress_if_exists SRR2936515_1 || true)"
gz2="$(_compress_if_exists SRR2936515_2 || true)"
gzs="$(_compress_if_exists SRR2936515 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C09_CCTCATGA.fq.gz
fi

fasterq-dump --split-files SRR2936516
gz1="$(_compress_if_exists SRR2936516_1 || true)"
gz2="$(_compress_if_exists SRR2936516_2 || true)"
gzs="$(_compress_if_exists SRR2936516 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_C10_GCGAATCA.fq.gz
fi

fasterq-dump --split-files SRR2936519
gz1="$(_compress_if_exists SRR2936519_1 || true)"
gz2="$(_compress_if_exists SRR2936519_2 || true)"
gzs="$(_compress_if_exists SRR2936519 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D03_CTTCGATC.fq.gz
fi

fasterq-dump --split-files SRR2936520
gz1="$(_compress_if_exists SRR2936520_1 || true)"
gz2="$(_compress_if_exists SRR2936520_2 || true)"
gzs="$(_compress_if_exists SRR2936520 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D04_CCCGAATA.fq.gz
fi

fasterq-dump --split-files SRR2936521
gz1="$(_compress_if_exists SRR2936521_1 || true)"
gz2="$(_compress_if_exists SRR2936521_2 || true)"
gzs="$(_compress_if_exists SRR2936521 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D05_AGATGGGT.fq.gz
fi

fasterq-dump --split-files SRR2936522
gz1="$(_compress_if_exists SRR2936522_1 || true)"
gz2="$(_compress_if_exists SRR2936522_2 || true)"
gzs="$(_compress_if_exists SRR2936522 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2936523
gz1="$(_compress_if_exists SRR2936523_1 || true)"
gz2="$(_compress_if_exists SRR2936523_2 || true)"
gzs="$(_compress_if_exists SRR2936523 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D07_GAAACCCA.fq.gz
fi

fasterq-dump --split-files SRR2936524
gz1="$(_compress_if_exists SRR2936524_1 || true)"
gz2="$(_compress_if_exists SRR2936524_2 || true)"
gzs="$(_compress_if_exists SRR2936524 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D08_GCGTATTG.fq.gz
fi

fasterq-dump --split-files SRR2936525
gz1="$(_compress_if_exists SRR2936525_1 || true)"
gz2="$(_compress_if_exists SRR2936525_2 || true)"
gzs="$(_compress_if_exists SRR2936525 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D10_TGCACGAT.fq.gz
fi

fasterq-dump --split-files SRR2936526
gz1="$(_compress_if_exists SRR2936526_1 || true)"
gz2="$(_compress_if_exists SRR2936526_2 || true)"
gzs="$(_compress_if_exists SRR2936526 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2936527
gz1="$(_compress_if_exists SRR2936527_1 || true)"
gz2="$(_compress_if_exists SRR2936527_2 || true)"
gzs="$(_compress_if_exists SRR2936527 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_D12_TGCGTGTT.fq.gz
fi

fasterq-dump --split-files SRR2936528
gz1="$(_compress_if_exists SRR2936528_1 || true)"
gz2="$(_compress_if_exists SRR2936528_2 || true)"
gzs="$(_compress_if_exists SRR2936528 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E01_TCCATCCT.fq.gz
fi

fasterq-dump --split-files SRR2936529
gz1="$(_compress_if_exists SRR2936529_1 || true)"
gz2="$(_compress_if_exists SRR2936529_2 || true)"
gzs="$(_compress_if_exists SRR2936529 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936530
gz1="$(_compress_if_exists SRR2936530_1 || true)"
gz2="$(_compress_if_exists SRR2936530_2 || true)"
gzs="$(_compress_if_exists SRR2936530 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E04_TCACCAAC.fq.gz
fi

fasterq-dump --split-files SRR2936531
gz1="$(_compress_if_exists SRR2936531_1 || true)"
gz2="$(_compress_if_exists SRR2936531_2 || true)"
gzs="$(_compress_if_exists SRR2936531 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E06_GTTTGCTC.fq.gz
fi

fasterq-dump --split-files SRR2936532
gz1="$(_compress_if_exists SRR2936532_1 || true)"
gz2="$(_compress_if_exists SRR2936532_2 || true)"
gzs="$(_compress_if_exists SRR2936532 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E07_ATGGACTG.fq.gz
fi

fasterq-dump --split-files SRR2936533
gz1="$(_compress_if_exists SRR2936533_1 || true)"
gz2="$(_compress_if_exists SRR2936533_2 || true)"
gzs="$(_compress_if_exists SRR2936533 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E09_CATCATCC.fq.gz
fi

fasterq-dump --split-files SRR2936534
gz1="$(_compress_if_exists SRR2936534_1 || true)"
gz2="$(_compress_if_exists SRR2936534_2 || true)"
gzs="$(_compress_if_exists SRR2936534 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E11_CTTTGGAC.fq.gz
fi

fasterq-dump --split-files SRR2936535
gz1="$(_compress_if_exists SRR2936535_1 || true)"
gz2="$(_compress_if_exists SRR2936535_2 || true)"
gzs="$(_compress_if_exists SRR2936535 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_E12_CTTCTTGC.fq.gz
fi

fasterq-dump --split-files SRR2936539
gz1="$(_compress_if_exists SRR2936539_1 || true)"
gz2="$(_compress_if_exists SRR2936539_2 || true)"
gzs="$(_compress_if_exists SRR2936539 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_F11_AGAAGCAG.fq.gz
fi

fasterq-dump --split-files SRR2936540
gz1="$(_compress_if_exists SRR2936540_1 || true)"
gz2="$(_compress_if_exists SRR2936540_2 || true)"
gzs="$(_compress_if_exists SRR2936540 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_F12_TGTGCATG.fq.gz
fi

fasterq-dump --split-files SRR2936541
gz1="$(_compress_if_exists SRR2936541_1 || true)"
gz2="$(_compress_if_exists SRR2936541_2 || true)"
gzs="$(_compress_if_exists SRR2936541 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G01_CTCACAGA.fq.gz
fi

fasterq-dump --split-files SRR2936542
gz1="$(_compress_if_exists SRR2936542_1 || true)"
gz2="$(_compress_if_exists SRR2936542_2 || true)"
gzs="$(_compress_if_exists SRR2936542 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G02_CCTGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2936543
gz1="$(_compress_if_exists SRR2936543_1 || true)"
gz2="$(_compress_if_exists SRR2936543_2 || true)"
gzs="$(_compress_if_exists SRR2936543 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G03_GGATAGTG.fq.gz
fi

fasterq-dump --split-files SRR2936544
gz1="$(_compress_if_exists SRR2936544_1 || true)"
gz2="$(_compress_if_exists SRR2936544_2 || true)"
gzs="$(_compress_if_exists SRR2936544 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2936545
gz1="$(_compress_if_exists SRR2936545_1 || true)"
gz2="$(_compress_if_exists SRR2936545_2 || true)"
gzs="$(_compress_if_exists SRR2936545 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G05_TCCGAGAA.fq.gz
fi

fasterq-dump --split-files SRR2936546
gz1="$(_compress_if_exists SRR2936546_1 || true)"
gz2="$(_compress_if_exists SRR2936546_2 || true)"
gzs="$(_compress_if_exists SRR2936546 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G08_AGTGCTGA.fq.gz
fi

fasterq-dump --split-files SRR2936547
gz1="$(_compress_if_exists SRR2936547_1 || true)"
gz2="$(_compress_if_exists SRR2936547_2 || true)"
gzs="$(_compress_if_exists SRR2936547 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G09_ACTCGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936549
gz1="$(_compress_if_exists SRR2936549_1 || true)"
gz2="$(_compress_if_exists SRR2936549_2 || true)"
gzs="$(_compress_if_exists SRR2936549 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_G11_TGTAGGGT.fq.gz
fi

fasterq-dump --split-files SRR2936550
gz1="$(_compress_if_exists SRR2936550_1 || true)"
gz2="$(_compress_if_exists SRR2936550_2 || true)"
gzs="$(_compress_if_exists SRR2936550 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_H01_ATCGTGGT.fq.gz
fi

fasterq-dump --split-files SRR2936551
gz1="$(_compress_if_exists SRR2936551_1 || true)"
gz2="$(_compress_if_exists SRR2936551_2 || true)"
gzs="$(_compress_if_exists SRR2936551 || true)"

fasterq-dump --split-files SRR2936552
gz1="$(_compress_if_exists SRR2936552_1 || true)"
gz2="$(_compress_if_exists SRR2936552_2 || true)"
gzs="$(_compress_if_exists SRR2936552 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_H06_CTGACCTT.fq.gz
fi

fasterq-dump --split-files SRR2936553
gz1="$(_compress_if_exists SRR2936553_1 || true)"
gz2="$(_compress_if_exists SRR2936553_2 || true)"
gzs="$(_compress_if_exists SRR2936553 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-162_R297_L5_1_H09_GGAGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936555
gz1="$(_compress_if_exists SRR2936555_1 || true)"
gz2="$(_compress_if_exists SRR2936555_2 || true)"
gzs="$(_compress_if_exists SRR2936555 || true)"

fasterq-dump --split-files SRR2936556
gz1="$(_compress_if_exists SRR2936556_1 || true)"
gz2="$(_compress_if_exists SRR2936556_2 || true)"
gzs="$(_compress_if_exists SRR2936556 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_A01_CTGAACAC.fq.gz
fi

fasterq-dump --split-files SRR2936557
gz1="$(_compress_if_exists SRR2936557_1 || true)"
gz2="$(_compress_if_exists SRR2936557_2 || true)"
gzs="$(_compress_if_exists SRR2936557 || true)"

fasterq-dump --split-files SRR2936558
gz1="$(_compress_if_exists SRR2936558_1 || true)"
gz2="$(_compress_if_exists SRR2936558_2 || true)"
gzs="$(_compress_if_exists SRR2936558 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_A04_ACCGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936559
gz1="$(_compress_if_exists SRR2936559_1 || true)"
gz2="$(_compress_if_exists SRR2936559_2 || true)"
gzs="$(_compress_if_exists SRR2936559 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_A05_TAGGATCG.fq.gz
fi

fasterq-dump --split-files SRR2936560
gz1="$(_compress_if_exists SRR2936560_1 || true)"
gz2="$(_compress_if_exists SRR2936560_2 || true)"
gzs="$(_compress_if_exists SRR2936560 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_A07_GGCATAAC.fq.gz
fi

fasterq-dump --split-files SRR2936561
gz1="$(_compress_if_exists SRR2936561_1 || true)"
gz2="$(_compress_if_exists SRR2936561_2 || true)"
gzs="$(_compress_if_exists SRR2936561 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_A09_ACTAGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936562
gz1="$(_compress_if_exists SRR2936562_1 || true)"
gz2="$(_compress_if_exists SRR2936562_2 || true)"
gzs="$(_compress_if_exists SRR2936562 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_A10_CGGTTTGT.fq.gz
fi

fasterq-dump --split-files SRR2936563
gz1="$(_compress_if_exists SRR2936563_1 || true)"
gz2="$(_compress_if_exists SRR2936563_2 || true)"
gzs="$(_compress_if_exists SRR2936563 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_B01_AGACGAGA.fq.gz
fi

fasterq-dump --split-files SRR2936564
gz1="$(_compress_if_exists SRR2936564_1 || true)"
gz2="$(_compress_if_exists SRR2936564_2 || true)"
gzs="$(_compress_if_exists SRR2936564 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2936565
gz1="$(_compress_if_exists SRR2936565_1 || true)"
gz2="$(_compress_if_exists SRR2936565_2 || true)"
gzs="$(_compress_if_exists SRR2936565 || true)"

fasterq-dump --split-files SRR2936566
gz1="$(_compress_if_exists SRR2936566_1 || true)"
gz2="$(_compress_if_exists SRR2936566_2 || true)"
gzs="$(_compress_if_exists SRR2936566 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_B09_TAGTCACC.fq.gz
fi

fasterq-dump --split-files SRR2936567
gz1="$(_compress_if_exists SRR2936567_1 || true)"
gz2="$(_compress_if_exists SRR2936567_2 || true)"
gzs="$(_compress_if_exists SRR2936567 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_B11_CCCATGTT.fq.gz
fi

fasterq-dump --split-files SRR2936568
gz1="$(_compress_if_exists SRR2936568_1 || true)"
gz2="$(_compress_if_exists SRR2936568_2 || true)"
gzs="$(_compress_if_exists SRR2936568 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_C01_TCACCGTA.fq.gz
fi

fasterq-dump --split-files SRR2936569
gz1="$(_compress_if_exists SRR2936569_1 || true)"
gz2="$(_compress_if_exists SRR2936569_2 || true)"
gzs="$(_compress_if_exists SRR2936569 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_C03_TTGTTGCC.fq.gz
fi

fasterq-dump --split-files SRR2936570
gz1="$(_compress_if_exists SRR2936570_1 || true)"
gz2="$(_compress_if_exists SRR2936570_2 || true)"
gzs="$(_compress_if_exists SRR2936570 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_C04_AGTACGAG.fq.gz
fi

fasterq-dump --split-files SRR2936572
gz1="$(_compress_if_exists SRR2936572_1 || true)"
gz2="$(_compress_if_exists SRR2936572_2 || true)"
gzs="$(_compress_if_exists SRR2936572 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2936573
gz1="$(_compress_if_exists SRR2936573_1 || true)"
gz2="$(_compress_if_exists SRR2936573_2 || true)"
gzs="$(_compress_if_exists SRR2936573 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_C11_AGGCTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936574
gz1="$(_compress_if_exists SRR2936574_1 || true)"
gz2="$(_compress_if_exists SRR2936574_2 || true)"
gzs="$(_compress_if_exists SRR2936574 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_C12_CTTCTCTG.fq.gz
fi

fasterq-dump --split-files SRR2936575
gz1="$(_compress_if_exists SRR2936575_1 || true)"
gz2="$(_compress_if_exists SRR2936575_2 || true)"
gzs="$(_compress_if_exists SRR2936575 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_D05_GACGATAC.fq.gz
fi

fasterq-dump --split-files SRR2936576
gz1="$(_compress_if_exists SRR2936576_1 || true)"
gz2="$(_compress_if_exists SRR2936576_2 || true)"
gzs="$(_compress_if_exists SRR2936576 || true)"

fasterq-dump --split-files SRR2936577
gz1="$(_compress_if_exists SRR2936577_1 || true)"
gz2="$(_compress_if_exists SRR2936577_2 || true)"
gzs="$(_compress_if_exists SRR2936577 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_D09_TTGCTTCG.fq.gz
fi

fasterq-dump --split-files SRR2936579
gz1="$(_compress_if_exists SRR2936579_1 || true)"
gz2="$(_compress_if_exists SRR2936579_2 || true)"
gzs="$(_compress_if_exists SRR2936579 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_E04_GTGGACAA.fq.gz
fi

fasterq-dump --split-files SRR2936580
gz1="$(_compress_if_exists SRR2936580_1 || true)"
gz2="$(_compress_if_exists SRR2936580_2 || true)"
gzs="$(_compress_if_exists SRR2936580 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_E06_GGTTGTCT.fq.gz
fi

fasterq-dump --split-files SRR2936581
gz1="$(_compress_if_exists SRR2936581_1 || true)"
gz2="$(_compress_if_exists SRR2936581_2 || true)"
gzs="$(_compress_if_exists SRR2936581 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_E07_AGCAGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936582
gz1="$(_compress_if_exists SRR2936582_1 || true)"
gz2="$(_compress_if_exists SRR2936582_2 || true)"
gzs="$(_compress_if_exists SRR2936582 || true)"

fasterq-dump --split-files SRR2936583
gz1="$(_compress_if_exists SRR2936583_1 || true)"
gz2="$(_compress_if_exists SRR2936583_2 || true)"
gzs="$(_compress_if_exists SRR2936583 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_E09_AATCTCGG.fq.gz
fi

fasterq-dump --split-files SRR2936584
gz1="$(_compress_if_exists SRR2936584_1 || true)"
gz2="$(_compress_if_exists SRR2936584_2 || true)"
gzs="$(_compress_if_exists SRR2936584 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2936585
gz1="$(_compress_if_exists SRR2936585_1 || true)"
gz2="$(_compress_if_exists SRR2936585_2 || true)"
gzs="$(_compress_if_exists SRR2936585 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_F01_GAACCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936586
gz1="$(_compress_if_exists SRR2936586_1 || true)"
gz2="$(_compress_if_exists SRR2936586_2 || true)"
gzs="$(_compress_if_exists SRR2936586 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_F02_CACGTACT.fq.gz
fi

fasterq-dump --split-files SRR2936588
gz1="$(_compress_if_exists SRR2936588_1 || true)"
gz2="$(_compress_if_exists SRR2936588_2 || true)"
gzs="$(_compress_if_exists SRR2936588 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_F04_GGTCCAAT.fq.gz
fi

fasterq-dump --split-files SRR2936591
gz1="$(_compress_if_exists SRR2936591_1 || true)"
gz2="$(_compress_if_exists SRR2936591_2 || true)"
gzs="$(_compress_if_exists SRR2936591 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_G02_TCACCTCT.fq.gz
fi

fasterq-dump --split-files SRR2936592
gz1="$(_compress_if_exists SRR2936592_1 || true)"
gz2="$(_compress_if_exists SRR2936592_2 || true)"
gzs="$(_compress_if_exists SRR2936592 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_G04_GCCTTTCA.fq.gz
fi

fasterq-dump --split-files SRR2936593
gz1="$(_compress_if_exists SRR2936593_1 || true)"
gz2="$(_compress_if_exists SRR2936593_2 || true)"
gzs="$(_compress_if_exists SRR2936593 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_G08_GTTGGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936594
gz1="$(_compress_if_exists SRR2936594_1 || true)"
gz2="$(_compress_if_exists SRR2936594_2 || true)"
gzs="$(_compress_if_exists SRR2936594 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_G09_CGCAACTA.fq.gz
fi

fasterq-dump --split-files SRR2936595
gz1="$(_compress_if_exists SRR2936595_1 || true)"
gz2="$(_compress_if_exists SRR2936595_2 || true)"
gzs="$(_compress_if_exists SRR2936595 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_H02_ATCTTCCC.fq.gz
fi

fasterq-dump --split-files SRR2936596
gz1="$(_compress_if_exists SRR2936596_1 || true)"
gz2="$(_compress_if_exists SRR2936596_2 || true)"
gzs="$(_compress_if_exists SRR2936596 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_H08_GTTATGCG.fq.gz
fi

fasterq-dump --split-files SRR2936597
gz1="$(_compress_if_exists SRR2936597_1 || true)"
gz2="$(_compress_if_exists SRR2936597_2 || true)"
gzs="$(_compress_if_exists SRR2936597 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-165_R297_L5_1_H11_CTGCCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936598
gz1="$(_compress_if_exists SRR2936598_1 || true)"
gz2="$(_compress_if_exists SRR2936598_2 || true)"
gzs="$(_compress_if_exists SRR2936598 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_A03_CTTGAAGG.fq.gz
fi

fasterq-dump --split-files SRR2936599
gz1="$(_compress_if_exists SRR2936599_1 || true)"
gz2="$(_compress_if_exists SRR2936599_2 || true)"
gzs="$(_compress_if_exists SRR2936599 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_A04_TTGTACAG.fq.gz
fi

fasterq-dump --split-files SRR2936600
gz1="$(_compress_if_exists SRR2936600_1 || true)"
gz2="$(_compress_if_exists SRR2936600_2 || true)"
gzs="$(_compress_if_exists SRR2936600 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_A06_CACGGTGT.fq.gz
fi

fasterq-dump --split-files SRR2936601
gz1="$(_compress_if_exists SRR2936601_1 || true)"
gz2="$(_compress_if_exists SRR2936601_2 || true)"
gzs="$(_compress_if_exists SRR2936601 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_A07_TATAGGAC.fq.gz
fi

fasterq-dump --split-files SRR2936603
gz1="$(_compress_if_exists SRR2936603_1 || true)"
gz2="$(_compress_if_exists SRR2936603_2 || true)"
gzs="$(_compress_if_exists SRR2936603 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_A11_GCGTCTAA.fq.gz
fi

fasterq-dump --split-files SRR2936604
gz1="$(_compress_if_exists SRR2936604_1 || true)"
gz2="$(_compress_if_exists SRR2936604_2 || true)"
gzs="$(_compress_if_exists SRR2936604 || true)"

fasterq-dump --split-files SRR2936606
gz1="$(_compress_if_exists SRR2936606_1 || true)"
gz2="$(_compress_if_exists SRR2936606_2 || true)"
gzs="$(_compress_if_exists SRR2936606 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_B02_GTGTGAGA.fq.gz
fi

fasterq-dump --split-files SRR2936607
gz1="$(_compress_if_exists SRR2936607_1 || true)"
gz2="$(_compress_if_exists SRR2936607_2 || true)"
gzs="$(_compress_if_exists SRR2936607 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_B05_TGGTGGCT.fq.gz
fi

fasterq-dump --split-files SRR2936608
gz1="$(_compress_if_exists SRR2936608_1 || true)"
gz2="$(_compress_if_exists SRR2936608_2 || true)"
gzs="$(_compress_if_exists SRR2936608 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_B07_CAGCGTAG.fq.gz
fi

fasterq-dump --split-files SRR2936609
gz1="$(_compress_if_exists SRR2936609_1 || true)"
gz2="$(_compress_if_exists SRR2936609_2 || true)"
gzs="$(_compress_if_exists SRR2936609 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_B08_CGTCGCAT.fq.gz
fi

fasterq-dump --split-files SRR2936611
gz1="$(_compress_if_exists SRR2936611_1 || true)"
gz2="$(_compress_if_exists SRR2936611_2 || true)"
gzs="$(_compress_if_exists SRR2936611 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_B10_GCATGATT.fq.gz
fi

fasterq-dump --split-files SRR2936612
gz1="$(_compress_if_exists SRR2936612_1 || true)"
gz2="$(_compress_if_exists SRR2936612_2 || true)"
gzs="$(_compress_if_exists SRR2936612 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_B12_GATAAGTG.fq.gz
fi

fasterq-dump --split-files SRR2936613
gz1="$(_compress_if_exists SRR2936613_1 || true)"
gz2="$(_compress_if_exists SRR2936613_2 || true)"
gzs="$(_compress_if_exists SRR2936613 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_C02_TACCAGTA.fq.gz
fi

fasterq-dump --split-files SRR2936614
gz1="$(_compress_if_exists SRR2936614_1 || true)"
gz2="$(_compress_if_exists SRR2936614_2 || true)"
gzs="$(_compress_if_exists SRR2936614 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_C03_TCAGTGTG.fq.gz
fi

fasterq-dump --split-files SRR2936615
gz1="$(_compress_if_exists SRR2936615_1 || true)"
gz2="$(_compress_if_exists SRR2936615_2 || true)"
gzs="$(_compress_if_exists SRR2936615 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_C05_TGATTACC.fq.gz
fi

fasterq-dump --split-files SRR2936616
gz1="$(_compress_if_exists SRR2936616_1 || true)"
gz2="$(_compress_if_exists SRR2936616_2 || true)"
gzs="$(_compress_if_exists SRR2936616 || true)"

fasterq-dump --split-files SRR2936618
gz1="$(_compress_if_exists SRR2936618_1 || true)"
gz2="$(_compress_if_exists SRR2936618_2 || true)"
gzs="$(_compress_if_exists SRR2936618 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_C11_GGCAGACT.fq.gz
fi

fasterq-dump --split-files SRR2936619
gz1="$(_compress_if_exists SRR2936619_1 || true)"
gz2="$(_compress_if_exists SRR2936619_2 || true)"
gzs="$(_compress_if_exists SRR2936619 || true)"

fasterq-dump --split-files SRR2936620
gz1="$(_compress_if_exists SRR2936620_1 || true)"
gz2="$(_compress_if_exists SRR2936620_2 || true)"
gzs="$(_compress_if_exists SRR2936620 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D02_CCTATCGT.fq.gz
fi

fasterq-dump --split-files SRR2936621
gz1="$(_compress_if_exists SRR2936621_1 || true)"
gz2="$(_compress_if_exists SRR2936621_2 || true)"
gzs="$(_compress_if_exists SRR2936621 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D03_CCTGTAAC.fq.gz
fi

fasterq-dump --split-files SRR2936622
gz1="$(_compress_if_exists SRR2936622_1 || true)"
gz2="$(_compress_if_exists SRR2936622_2 || true)"
gzs="$(_compress_if_exists SRR2936622 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D04_CTAATGAC.fq.gz
fi

fasterq-dump --split-files SRR2936623
gz1="$(_compress_if_exists SRR2936623_1 || true)"
gz2="$(_compress_if_exists SRR2936623_2 || true)"
gzs="$(_compress_if_exists SRR2936623 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D05_TGGACTGG.fq.gz
fi

fasterq-dump --split-files SRR2936624
gz1="$(_compress_if_exists SRR2936624_1 || true)"
gz2="$(_compress_if_exists SRR2936624_2 || true)"
gzs="$(_compress_if_exists SRR2936624 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D07_CTACATCA.fq.gz
fi

fasterq-dump --split-files SRR2936625
gz1="$(_compress_if_exists SRR2936625_1 || true)"
gz2="$(_compress_if_exists SRR2936625_2 || true)"
gzs="$(_compress_if_exists SRR2936625 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D08_TTCACCCG.fq.gz
fi

fasterq-dump --split-files SRR2936626
gz1="$(_compress_if_exists SRR2936626_1 || true)"
gz2="$(_compress_if_exists SRR2936626_2 || true)"
gzs="$(_compress_if_exists SRR2936626 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_D10_CTTTACCT.fq.gz
fi

fasterq-dump --split-files SRR2936628
gz1="$(_compress_if_exists SRR2936628_1 || true)"
gz2="$(_compress_if_exists SRR2936628_2 || true)"
gzs="$(_compress_if_exists SRR2936628 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E01_CGCTAAAT.fq.gz
fi

fasterq-dump --split-files SRR2936629
gz1="$(_compress_if_exists SRR2936629_1 || true)"
gz2="$(_compress_if_exists SRR2936629_2 || true)"
gzs="$(_compress_if_exists SRR2936629 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E02_TCGACATC.fq.gz
fi

fasterq-dump --split-files SRR2936630
gz1="$(_compress_if_exists SRR2936630_1 || true)"
gz2="$(_compress_if_exists SRR2936630_2 || true)"
gzs="$(_compress_if_exists SRR2936630 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E04_AAGGAGCT.fq.gz
fi

fasterq-dump --split-files SRR2936631
gz1="$(_compress_if_exists SRR2936631_1 || true)"
gz2="$(_compress_if_exists SRR2936631_2 || true)"
gzs="$(_compress_if_exists SRR2936631 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E06_TTTCCGAA.fq.gz
fi

fasterq-dump --split-files SRR2936632
gz1="$(_compress_if_exists SRR2936632_1 || true)"
gz2="$(_compress_if_exists SRR2936632_2 || true)"
gzs="$(_compress_if_exists SRR2936632 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E08_AAGATGGC.fq.gz
fi

fasterq-dump --split-files SRR2936633
gz1="$(_compress_if_exists SRR2936633_1 || true)"
gz2="$(_compress_if_exists SRR2936633_2 || true)"
gzs="$(_compress_if_exists SRR2936633 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E10_AGTTGTGG.fq.gz
fi

fasterq-dump --split-files SRR2936634
gz1="$(_compress_if_exists SRR2936634_1 || true)"
gz2="$(_compress_if_exists SRR2936634_2 || true)"
gzs="$(_compress_if_exists SRR2936634 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E11_CAGCAAGA.fq.gz
fi

fasterq-dump --split-files SRR2936635
gz1="$(_compress_if_exists SRR2936635_1 || true)"
gz2="$(_compress_if_exists SRR2936635_2 || true)"
gzs="$(_compress_if_exists SRR2936635 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_E12_CACCTTTC.fq.gz
fi

fasterq-dump --split-files SRR2936636
gz1="$(_compress_if_exists SRR2936636_1 || true)"
gz2="$(_compress_if_exists SRR2936636_2 || true)"
gzs="$(_compress_if_exists SRR2936636 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F02_ACCCGTAA.fq.gz
fi

fasterq-dump --split-files SRR2936637
gz1="$(_compress_if_exists SRR2936637_1 || true)"
gz2="$(_compress_if_exists SRR2936637_2 || true)"
gzs="$(_compress_if_exists SRR2936637 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F03_GAACGGAA.fq.gz
fi

fasterq-dump --split-files SRR2936638
gz1="$(_compress_if_exists SRR2936638_1 || true)"
gz2="$(_compress_if_exists SRR2936638_2 || true)"
gzs="$(_compress_if_exists SRR2936638 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F04_TCGGGTGA.fq.gz
fi

fasterq-dump --split-files SRR2936639
gz1="$(_compress_if_exists SRR2936639_1 || true)"
gz2="$(_compress_if_exists SRR2936639_2 || true)"
gzs="$(_compress_if_exists SRR2936639 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F06_ACACAACT.fq.gz
fi

fasterq-dump --split-files SRR2936640
gz1="$(_compress_if_exists SRR2936640_1 || true)"
gz2="$(_compress_if_exists SRR2936640_2 || true)"
gzs="$(_compress_if_exists SRR2936640 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F09_ATTGCGTC.fq.gz
fi

fasterq-dump --split-files SRR2936641
gz1="$(_compress_if_exists SRR2936641_1 || true)"
gz2="$(_compress_if_exists SRR2936641_2 || true)"
gzs="$(_compress_if_exists SRR2936641 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F11_GTTGTCCC.fq.gz
fi

fasterq-dump --split-files SRR2936642
gz1="$(_compress_if_exists SRR2936642_1 || true)"
gz2="$(_compress_if_exists SRR2936642_2 || true)"
gzs="$(_compress_if_exists SRR2936642 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_F12_TACAACGT.fq.gz
fi

fasterq-dump --split-files SRR2936643
gz1="$(_compress_if_exists SRR2936643_1 || true)"
gz2="$(_compress_if_exists SRR2936643_2 || true)"
gzs="$(_compress_if_exists SRR2936643 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_G02_ATGCTGTG.fq.gz
fi

fasterq-dump --split-files SRR2936645
gz1="$(_compress_if_exists SRR2936645_1 || true)"
gz2="$(_compress_if_exists SRR2936645_2 || true)"
gzs="$(_compress_if_exists SRR2936645 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_G05_GGTTTGTC.fq.gz
fi

fasterq-dump --split-files SRR2936646
gz1="$(_compress_if_exists SRR2936646_1 || true)"
gz2="$(_compress_if_exists SRR2936646_2 || true)"
gzs="$(_compress_if_exists SRR2936646 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_G06_ATGTGCTT.fq.gz
fi

fasterq-dump --split-files SRR2936647
gz1="$(_compress_if_exists SRR2936647_1 || true)"
gz2="$(_compress_if_exists SRR2936647_2 || true)"
gzs="$(_compress_if_exists SRR2936647 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_G07_TGCCCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936648
gz1="$(_compress_if_exists SRR2936648_1 || true)"
gz2="$(_compress_if_exists SRR2936648_2 || true)"
gzs="$(_compress_if_exists SRR2936648 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_G08_ACCATAGA.fq.gz
fi

fasterq-dump --split-files SRR2936649
gz1="$(_compress_if_exists SRR2936649_1 || true)"
gz2="$(_compress_if_exists SRR2936649_2 || true)"
gzs="$(_compress_if_exists SRR2936649 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_G10_GACACAAA.fq.gz
fi

fasterq-dump --split-files SRR2936650
gz1="$(_compress_if_exists SRR2936650_1 || true)"
gz2="$(_compress_if_exists SRR2936650_2 || true)"
gzs="$(_compress_if_exists SRR2936650 || true)"

fasterq-dump --split-files SRR2936651
gz1="$(_compress_if_exists SRR2936651_1 || true)"
gz2="$(_compress_if_exists SRR2936651_2 || true)"
gzs="$(_compress_if_exists SRR2936651 || true)"

fasterq-dump --split-files SRR2936652
gz1="$(_compress_if_exists SRR2936652_1 || true)"
gz2="$(_compress_if_exists SRR2936652_2 || true)"
gzs="$(_compress_if_exists SRR2936652 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-168_R297_L4_1_H10_TATGCTCA.fq.gz
fi

fasterq-dump --split-files SRR2936654
gz1="$(_compress_if_exists SRR2936654_1 || true)"
gz2="$(_compress_if_exists SRR2936654_2 || true)"
gzs="$(_compress_if_exists SRR2936654 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_A02_ATAGAGCC.fq.gz
fi

fasterq-dump --split-files SRR2936655
gz1="$(_compress_if_exists SRR2936655_1 || true)"
gz2="$(_compress_if_exists SRR2936655_2 || true)"
gzs="$(_compress_if_exists SRR2936655 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_A04_GCTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2936657
gz1="$(_compress_if_exists SRR2936657_1 || true)"
gz2="$(_compress_if_exists SRR2936657_2 || true)"
gzs="$(_compress_if_exists SRR2936657 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_A06_GGTCTGAA.fq.gz
fi

fasterq-dump --split-files SRR2936659
gz1="$(_compress_if_exists SRR2936659_1 || true)"
gz2="$(_compress_if_exists SRR2936659_2 || true)"
gzs="$(_compress_if_exists SRR2936659 || true)"

fasterq-dump --split-files SRR2936660
gz1="$(_compress_if_exists SRR2936660_1 || true)"
gz2="$(_compress_if_exists SRR2936660_2 || true)"
gzs="$(_compress_if_exists SRR2936660 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_A10_AGCTCTGT.fq.gz
fi

fasterq-dump --split-files SRR2936661
gz1="$(_compress_if_exists SRR2936661_1 || true)"
gz2="$(_compress_if_exists SRR2936661_2 || true)"
gzs="$(_compress_if_exists SRR2936661 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_A11_TATCGCGA.fq.gz
fi

fasterq-dump --split-files SRR2936662
gz1="$(_compress_if_exists SRR2936662_1 || true)"
gz2="$(_compress_if_exists SRR2936662_2 || true)"
gzs="$(_compress_if_exists SRR2936662 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_B01_GTCGTAAG.fq.gz
fi

fasterq-dump --split-files SRR2936663
gz1="$(_compress_if_exists SRR2936663_1 || true)"
gz2="$(_compress_if_exists SRR2936663_2 || true)"
gzs="$(_compress_if_exists SRR2936663 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_B03_GGAACTAG.fq.gz
fi

fasterq-dump --split-files SRR2936664
gz1="$(_compress_if_exists SRR2936664_1 || true)"
gz2="$(_compress_if_exists SRR2936664_2 || true)"
gzs="$(_compress_if_exists SRR2936664 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_B04_TTAGACGG.fq.gz
fi

fasterq-dump --split-files SRR2936665
gz1="$(_compress_if_exists SRR2936665_1 || true)"
gz2="$(_compress_if_exists SRR2936665_2 || true)"
gzs="$(_compress_if_exists SRR2936665 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_B05_TTACGCGT.fq.gz
fi

fasterq-dump --split-files SRR2936668
gz1="$(_compress_if_exists SRR2936668_1 || true)"
gz2="$(_compress_if_exists SRR2936668_2 || true)"
gzs="$(_compress_if_exists SRR2936668 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_B11_ATTCGTCC.fq.gz
fi

fasterq-dump --split-files SRR2936669
gz1="$(_compress_if_exists SRR2936669_1 || true)"
gz2="$(_compress_if_exists SRR2936669_2 || true)"
gzs="$(_compress_if_exists SRR2936669 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_B12_TGTACTCC.fq.gz
fi

fasterq-dump --split-files SRR2936670
gz1="$(_compress_if_exists SRR2936670_1 || true)"
gz2="$(_compress_if_exists SRR2936670_2 || true)"
gzs="$(_compress_if_exists SRR2936670 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_C02_GTGACATG.fq.gz
fi

fasterq-dump --split-files SRR2936673
gz1="$(_compress_if_exists SRR2936673_1 || true)"
gz2="$(_compress_if_exists SRR2936673_2 || true)"
gzs="$(_compress_if_exists SRR2936673 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_C07_TTTCGCAG.fq.gz
fi

fasterq-dump --split-files SRR2936674
gz1="$(_compress_if_exists SRR2936674_1 || true)"
gz2="$(_compress_if_exists SRR2936674_2 || true)"
gzs="$(_compress_if_exists SRR2936674 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_C11_CTTGTCGA.fq.gz
fi

fasterq-dump --split-files SRR2936675
gz1="$(_compress_if_exists SRR2936675_1 || true)"
gz2="$(_compress_if_exists SRR2936675_2 || true)"
gzs="$(_compress_if_exists SRR2936675 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_C12_AAGTACCG.fq.gz
fi

fasterq-dump --split-files SRR2936676
gz1="$(_compress_if_exists SRR2936676_1 || true)"
gz2="$(_compress_if_exists SRR2936676_2 || true)"
gzs="$(_compress_if_exists SRR2936676 || true)"

fasterq-dump --split-files SRR2936679
gz1="$(_compress_if_exists SRR2936679_1 || true)"
gz2="$(_compress_if_exists SRR2936679_2 || true)"
gzs="$(_compress_if_exists SRR2936679 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_D06_CTTGGTCA.fq.gz
fi

fasterq-dump --split-files SRR2936680
gz1="$(_compress_if_exists SRR2936680_1 || true)"
gz2="$(_compress_if_exists SRR2936680_2 || true)"
gzs="$(_compress_if_exists SRR2936680 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_D11_TGCTGTTC.fq.gz
fi

fasterq-dump --split-files SRR2936681
gz1="$(_compress_if_exists SRR2936681_1 || true)"
gz2="$(_compress_if_exists SRR2936681_2 || true)"
gzs="$(_compress_if_exists SRR2936681 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_E01_TCCATCCT.fq.gz
fi

fasterq-dump --split-files SRR2936682
gz1="$(_compress_if_exists SRR2936682_1 || true)"
gz2="$(_compress_if_exists SRR2936682_2 || true)"
gzs="$(_compress_if_exists SRR2936682 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_E02_AAGCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936684
gz1="$(_compress_if_exists SRR2936684_1 || true)"
gz2="$(_compress_if_exists SRR2936684_2 || true)"
gzs="$(_compress_if_exists SRR2936684 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_E08_TTCCCCTA.fq.gz
fi

fasterq-dump --split-files SRR2936685
gz1="$(_compress_if_exists SRR2936685_1 || true)"
gz2="$(_compress_if_exists SRR2936685_2 || true)"
gzs="$(_compress_if_exists SRR2936685 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_E09_CATCATCC.fq.gz
fi

fasterq-dump --split-files SRR2936687
gz1="$(_compress_if_exists SRR2936687_1 || true)"
gz2="$(_compress_if_exists SRR2936687_2 || true)"
gzs="$(_compress_if_exists SRR2936687 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_E11_CTTTGGAC.fq.gz
fi

fasterq-dump --split-files SRR2936688
gz1="$(_compress_if_exists SRR2936688_1 || true)"
gz2="$(_compress_if_exists SRR2936688_2 || true)"
gzs="$(_compress_if_exists SRR2936688 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_E12_CTTCTTGC.fq.gz
fi

fasterq-dump --split-files SRR2936690
gz1="$(_compress_if_exists SRR2936690_1 || true)"
gz2="$(_compress_if_exists SRR2936690_2 || true)"
gzs="$(_compress_if_exists SRR2936690 || true)"

fasterq-dump --split-files SRR2936691
gz1="$(_compress_if_exists SRR2936691_1 || true)"
gz2="$(_compress_if_exists SRR2936691_2 || true)"
gzs="$(_compress_if_exists SRR2936691 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_F05_CGATTGGA.fq.gz
fi

fasterq-dump --split-files SRR2936693
gz1="$(_compress_if_exists SRR2936693_1 || true)"
gz2="$(_compress_if_exists SRR2936693_2 || true)"
gzs="$(_compress_if_exists SRR2936693 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_F07_GTAAGTCG.fq.gz
fi

fasterq-dump --split-files SRR2936694
gz1="$(_compress_if_exists SRR2936694_1 || true)"
gz2="$(_compress_if_exists SRR2936694_2 || true)"
gzs="$(_compress_if_exists SRR2936694 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_F09_AGAGTGCT.fq.gz
fi

fasterq-dump --split-files SRR2936695
gz1="$(_compress_if_exists SRR2936695_1 || true)"
gz2="$(_compress_if_exists SRR2936695_2 || true)"
gzs="$(_compress_if_exists SRR2936695 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_F10_GGCGAAAA.fq.gz
fi

fasterq-dump --split-files SRR2936696
gz1="$(_compress_if_exists SRR2936696_1 || true)"
gz2="$(_compress_if_exists SRR2936696_2 || true)"
gzs="$(_compress_if_exists SRR2936696 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_F12_TGTGCATG.fq.gz
fi

fasterq-dump --split-files SRR2936698
gz1="$(_compress_if_exists SRR2936698_1 || true)"
gz2="$(_compress_if_exists SRR2936698_2 || true)"
gzs="$(_compress_if_exists SRR2936698 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_G04_CTCAAGTC.fq.gz
fi

fasterq-dump --split-files SRR2936699
gz1="$(_compress_if_exists SRR2936699_1 || true)"
gz2="$(_compress_if_exists SRR2936699_2 || true)"
gzs="$(_compress_if_exists SRR2936699 || true)"

fasterq-dump --split-files SRR2936700
gz1="$(_compress_if_exists SRR2936700_1 || true)"
gz2="$(_compress_if_exists SRR2936700_2 || true)"
gzs="$(_compress_if_exists SRR2936700 || true)"

fasterq-dump --split-files SRR2936701
gz1="$(_compress_if_exists SRR2936701_1 || true)"
gz2="$(_compress_if_exists SRR2936701_2 || true)"
gzs="$(_compress_if_exists SRR2936701 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_G10_AGTCTCCT.fq.gz
fi

fasterq-dump --split-files SRR2936703
gz1="$(_compress_if_exists SRR2936703_1 || true)"
gz2="$(_compress_if_exists SRR2936703_2 || true)"
gzs="$(_compress_if_exists SRR2936703 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_H02_ACGGCTTA.fq.gz
fi

fasterq-dump --split-files SRR2936704
gz1="$(_compress_if_exists SRR2936704_1 || true)"
gz2="$(_compress_if_exists SRR2936704_2 || true)"
gzs="$(_compress_if_exists SRR2936704 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_H10_ATCGGAAC.fq.gz
fi

fasterq-dump --split-files SRR2936705
gz1="$(_compress_if_exists SRR2936705_1 || true)"
gz2="$(_compress_if_exists SRR2936705_2 || true)"
gzs="$(_compress_if_exists SRR2936705 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_H11_AAGGACGA.fq.gz
fi

fasterq-dump --split-files SRR2936706
gz1="$(_compress_if_exists SRR2936706_1 || true)"
gz2="$(_compress_if_exists SRR2936706_2 || true)"
gzs="$(_compress_if_exists SRR2936706 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-171_R297_L4_1_H12_AGTTCGCT.fq.gz
fi

fasterq-dump --split-files SRR2936707
gz1="$(_compress_if_exists SRR2936707_1 || true)"
gz2="$(_compress_if_exists SRR2936707_2 || true)"
gzs="$(_compress_if_exists SRR2936707 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_A02_TTAGCTCC.fq.gz
fi

fasterq-dump --split-files SRR2936708
gz1="$(_compress_if_exists SRR2936708_1 || true)"
gz2="$(_compress_if_exists SRR2936708_2 || true)"
gzs="$(_compress_if_exists SRR2936708 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_A04_ACCGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936710
gz1="$(_compress_if_exists SRR2936710_1 || true)"
gz2="$(_compress_if_exists SRR2936710_2 || true)"
gzs="$(_compress_if_exists SRR2936710 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_A08_CTCGTTTG.fq.gz
fi

fasterq-dump --split-files SRR2936711
gz1="$(_compress_if_exists SRR2936711_1 || true)"
gz2="$(_compress_if_exists SRR2936711_2 || true)"
gzs="$(_compress_if_exists SRR2936711 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_A09_ACTAGCAC.fq.gz
fi

fasterq-dump --split-files SRR2936712
gz1="$(_compress_if_exists SRR2936712_1 || true)"
gz2="$(_compress_if_exists SRR2936712_2 || true)"
gzs="$(_compress_if_exists SRR2936712 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_A10_CGGTTTGT.fq.gz
fi

fasterq-dump --split-files SRR2936713
gz1="$(_compress_if_exists SRR2936713_1 || true)"
gz2="$(_compress_if_exists SRR2936713_2 || true)"
gzs="$(_compress_if_exists SRR2936713 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_B02_AATGGGGT.fq.gz
fi

fasterq-dump --split-files SRR2936714
gz1="$(_compress_if_exists SRR2936714_1 || true)"
gz2="$(_compress_if_exists SRR2936714_2 || true)"
gzs="$(_compress_if_exists SRR2936714 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_B03_AAATCCCC.fq.gz
fi

fasterq-dump --split-files SRR2936715
gz1="$(_compress_if_exists SRR2936715_1 || true)"
gz2="$(_compress_if_exists SRR2936715_2 || true)"
gzs="$(_compress_if_exists SRR2936715 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_B06_TCTACAGG.fq.gz
fi

fasterq-dump --split-files SRR2936716
gz1="$(_compress_if_exists SRR2936716_1 || true)"
gz2="$(_compress_if_exists SRR2936716_2 || true)"
gzs="$(_compress_if_exists SRR2936716 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_B09_TAGTCACC.fq.gz
fi

fasterq-dump --split-files SRR2936717
gz1="$(_compress_if_exists SRR2936717_1 || true)"
gz2="$(_compress_if_exists SRR2936717_2 || true)"
gzs="$(_compress_if_exists SRR2936717 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_B11_CCCATGTT.fq.gz
fi

fasterq-dump --split-files SRR2936718
gz1="$(_compress_if_exists SRR2936718_1 || true)"
gz2="$(_compress_if_exists SRR2936718_2 || true)"
gzs="$(_compress_if_exists SRR2936718 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_B12_ATAGCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936719
gz1="$(_compress_if_exists SRR2936719_1 || true)"
gz2="$(_compress_if_exists SRR2936719_2 || true)"
gzs="$(_compress_if_exists SRR2936719 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_C03_TTGTTGCC.fq.gz
fi

fasterq-dump --split-files SRR2936720
gz1="$(_compress_if_exists SRR2936720_1 || true)"
gz2="$(_compress_if_exists SRR2936720_2 || true)"
gzs="$(_compress_if_exists SRR2936720 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_C04_AGTACGAG.fq.gz
fi

fasterq-dump --split-files SRR2936721
gz1="$(_compress_if_exists SRR2936721_1 || true)"
gz2="$(_compress_if_exists SRR2936721_2 || true)"
gzs="$(_compress_if_exists SRR2936721 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_C06_CTAACACC.fq.gz
fi

fasterq-dump --split-files SRR2936722
gz1="$(_compress_if_exists SRR2936722_1 || true)"
gz2="$(_compress_if_exists SRR2936722_2 || true)"
gzs="$(_compress_if_exists SRR2936722 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_C08_TGCCTTGT.fq.gz
fi

fasterq-dump --split-files SRR2936723
gz1="$(_compress_if_exists SRR2936723_1 || true)"
gz2="$(_compress_if_exists SRR2936723_2 || true)"
gzs="$(_compress_if_exists SRR2936723 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_C09_CACTAACC.fq.gz
fi

fasterq-dump --split-files SRR2936724
gz1="$(_compress_if_exists SRR2936724_1 || true)"
gz2="$(_compress_if_exists SRR2936724_2 || true)"
gzs="$(_compress_if_exists SRR2936724 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_C10_GACATGAG.fq.gz
fi

fasterq-dump --split-files SRR2936726
gz1="$(_compress_if_exists SRR2936726_1 || true)"
gz2="$(_compress_if_exists SRR2936726_2 || true)"
gzs="$(_compress_if_exists SRR2936726 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_D02_TCCTTGGT.fq.gz
fi

fasterq-dump --split-files SRR2936727
gz1="$(_compress_if_exists SRR2936727_1 || true)"
gz2="$(_compress_if_exists SRR2936727_2 || true)"
gzs="$(_compress_if_exists SRR2936727 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_D06_GGTAAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936728
gz1="$(_compress_if_exists SRR2936728_1 || true)"
gz2="$(_compress_if_exists SRR2936728_2 || true)"
gzs="$(_compress_if_exists SRR2936728 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_D07_TCATCTGG.fq.gz
fi

fasterq-dump --split-files SRR2936729
gz1="$(_compress_if_exists SRR2936729_1 || true)"
gz2="$(_compress_if_exists SRR2936729_2 || true)"
gzs="$(_compress_if_exists SRR2936729 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_E03_AGCTTTCG.fq.gz
fi

fasterq-dump --split-files SRR2936731
gz1="$(_compress_if_exists SRR2936731_1 || true)"
gz2="$(_compress_if_exists SRR2936731_2 || true)"
gzs="$(_compress_if_exists SRR2936731 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_E06_GGTTGTCT.fq.gz
fi

fasterq-dump --split-files SRR2936732
gz1="$(_compress_if_exists SRR2936732_1 || true)"
gz2="$(_compress_if_exists SRR2936732_2 || true)"
gzs="$(_compress_if_exists SRR2936732 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_E09_AATCTCGG.fq.gz
fi

fasterq-dump --split-files SRR2936733
gz1="$(_compress_if_exists SRR2936733_1 || true)"
gz2="$(_compress_if_exists SRR2936733_2 || true)"
gzs="$(_compress_if_exists SRR2936733 || true)"

fasterq-dump --split-files SRR2936734
gz1="$(_compress_if_exists SRR2936734_1 || true)"
gz2="$(_compress_if_exists SRR2936734_2 || true)"
gzs="$(_compress_if_exists SRR2936734 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_E11_GACCATTG.fq.gz
fi

fasterq-dump --split-files SRR2936735
gz1="$(_compress_if_exists SRR2936735_1 || true)"
gz2="$(_compress_if_exists SRR2936735_2 || true)"
gzs="$(_compress_if_exists SRR2936735 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_E12_TAGAGGTG.fq.gz
fi

fasterq-dump --split-files SRR2936738
gz1="$(_compress_if_exists SRR2936738_1 || true)"
gz2="$(_compress_if_exists SRR2936738_2 || true)"
gzs="$(_compress_if_exists SRR2936738 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_F08_GCCCTATT.fq.gz
fi

fasterq-dump --split-files SRR2936739
gz1="$(_compress_if_exists SRR2936739_1 || true)"
gz2="$(_compress_if_exists SRR2936739_2 || true)"
gzs="$(_compress_if_exists SRR2936739 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_F11_TTCCGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936740
gz1="$(_compress_if_exists SRR2936740_1 || true)"
gz2="$(_compress_if_exists SRR2936740_2 || true)"
gzs="$(_compress_if_exists SRR2936740 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_G01_TTGAGAGG.fq.gz
fi

fasterq-dump --split-files SRR2936742
gz1="$(_compress_if_exists SRR2936742_1 || true)"
gz2="$(_compress_if_exists SRR2936742_2 || true)"
gzs="$(_compress_if_exists SRR2936742 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_G08_GTTGGGTT.fq.gz
fi

fasterq-dump --split-files SRR2936743
gz1="$(_compress_if_exists SRR2936743_1 || true)"
gz2="$(_compress_if_exists SRR2936743_2 || true)"
gzs="$(_compress_if_exists SRR2936743 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_G11_CCAGAGTT.fq.gz
fi

fasterq-dump --split-files SRR2936745
gz1="$(_compress_if_exists SRR2936745_1 || true)"
gz2="$(_compress_if_exists SRR2936745_2 || true)"
gzs="$(_compress_if_exists SRR2936745 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_H01_GTGCATAC.fq.gz
fi

fasterq-dump --split-files SRR2936746
gz1="$(_compress_if_exists SRR2936746_1 || true)"
gz2="$(_compress_if_exists SRR2936746_2 || true)"
gzs="$(_compress_if_exists SRR2936746 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_H04_GCACATGT.fq.gz
fi

fasterq-dump --split-files SRR2936747
gz1="$(_compress_if_exists SRR2936747_1 || true)"
gz2="$(_compress_if_exists SRR2936747_2 || true)"
gzs="$(_compress_if_exists SRR2936747 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-172_R297_L4_1_H08_GTTATGCG.fq.gz
fi

fasterq-dump --split-files SRR2936748
gz1="$(_compress_if_exists SRR2936748_1 || true)"
gz2="$(_compress_if_exists SRR2936748_2 || true)"
gzs="$(_compress_if_exists SRR2936748 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_A05_CTATACGC.fq.gz
fi

fasterq-dump --split-files SRR2936749
gz1="$(_compress_if_exists SRR2936749_1 || true)"
gz2="$(_compress_if_exists SRR2936749_2 || true)"
gzs="$(_compress_if_exists SRR2936749 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2936750
gz1="$(_compress_if_exists SRR2936750_1 || true)"
gz2="$(_compress_if_exists SRR2936750_2 || true)"
gzs="$(_compress_if_exists SRR2936750 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2936751
gz1="$(_compress_if_exists SRR2936751_1 || true)"
gz2="$(_compress_if_exists SRR2936751_2 || true)"
gzs="$(_compress_if_exists SRR2936751 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_B01_CCCTTGTA.fq.gz
fi

fasterq-dump --split-files SRR2936752
gz1="$(_compress_if_exists SRR2936752_1 || true)"
gz2="$(_compress_if_exists SRR2936752_2 || true)"
gzs="$(_compress_if_exists SRR2936752 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_B03_GGTTGCAA.fq.gz
fi

fasterq-dump --split-files SRR2936754
gz1="$(_compress_if_exists SRR2936754_1 || true)"
gz2="$(_compress_if_exists SRR2936754_2 || true)"
gzs="$(_compress_if_exists SRR2936754 || true)"

fasterq-dump --split-files SRR2936755
gz1="$(_compress_if_exists SRR2936755_1 || true)"
gz2="$(_compress_if_exists SRR2936755_2 || true)"
gzs="$(_compress_if_exists SRR2936755 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_B08_TTACGGAC.fq.gz
fi

fasterq-dump --split-files SRR2936756
gz1="$(_compress_if_exists SRR2936756_1 || true)"
gz2="$(_compress_if_exists SRR2936756_2 || true)"
gzs="$(_compress_if_exists SRR2936756 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_B10_AATGGCGA.fq.gz
fi

fasterq-dump --split-files SRR2936757
gz1="$(_compress_if_exists SRR2936757_1 || true)"
gz2="$(_compress_if_exists SRR2936757_2 || true)"
gzs="$(_compress_if_exists SRR2936757 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2936758
gz1="$(_compress_if_exists SRR2936758_1 || true)"
gz2="$(_compress_if_exists SRR2936758_2 || true)"
gzs="$(_compress_if_exists SRR2936758 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_C02_TAGGCAGA.fq.gz
fi

fasterq-dump --split-files SRR2936759
gz1="$(_compress_if_exists SRR2936759_1 || true)"
gz2="$(_compress_if_exists SRR2936759_2 || true)"
gzs="$(_compress_if_exists SRR2936759 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_C04_AGCTAGGA.fq.gz
fi

fasterq-dump --split-files SRR2936761
gz1="$(_compress_if_exists SRR2936761_1 || true)"
gz2="$(_compress_if_exists SRR2936761_2 || true)"
gzs="$(_compress_if_exists SRR2936761 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_C09_TGAGGGAA.fq.gz
fi

fasterq-dump --split-files SRR2936762
gz1="$(_compress_if_exists SRR2936762_1 || true)"
gz2="$(_compress_if_exists SRR2936762_2 || true)"
gzs="$(_compress_if_exists SRR2936762 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936763
gz1="$(_compress_if_exists SRR2936763_1 || true)"
gz2="$(_compress_if_exists SRR2936763_2 || true)"
gzs="$(_compress_if_exists SRR2936763 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_D04_TCAGAACC.fq.gz
fi

fasterq-dump --split-files SRR2936764
gz1="$(_compress_if_exists SRR2936764_1 || true)"
gz2="$(_compress_if_exists SRR2936764_2 || true)"
gzs="$(_compress_if_exists SRR2936764 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_D08_AGATGCCT.fq.gz
fi

fasterq-dump --split-files SRR2936765
gz1="$(_compress_if_exists SRR2936765_1 || true)"
gz2="$(_compress_if_exists SRR2936765_2 || true)"
gzs="$(_compress_if_exists SRR2936765 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_D10_TTGTCAGG.fq.gz
fi

fasterq-dump --split-files SRR2936767
gz1="$(_compress_if_exists SRR2936767_1 || true)"
gz2="$(_compress_if_exists SRR2936767_2 || true)"
gzs="$(_compress_if_exists SRR2936767 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_E05_TGTCACTG.fq.gz
fi

fasterq-dump --split-files SRR2936768
gz1="$(_compress_if_exists SRR2936768_1 || true)"
gz2="$(_compress_if_exists SRR2936768_2 || true)"
gzs="$(_compress_if_exists SRR2936768 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_E08_AGGTAGAC.fq.gz
fi

fasterq-dump --split-files SRR2936769
gz1="$(_compress_if_exists SRR2936769_1 || true)"
gz2="$(_compress_if_exists SRR2936769_2 || true)"
gzs="$(_compress_if_exists SRR2936769 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_E09_GACATCAC.fq.gz
fi

fasterq-dump --split-files SRR2936771
gz1="$(_compress_if_exists SRR2936771_1 || true)"
gz2="$(_compress_if_exists SRR2936771_2 || true)"
gzs="$(_compress_if_exists SRR2936771 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_E12_CGATTACG.fq.gz
fi

fasterq-dump --split-files SRR2936772
gz1="$(_compress_if_exists SRR2936772_1 || true)"
gz2="$(_compress_if_exists SRR2936772_2 || true)"
gzs="$(_compress_if_exists SRR2936772 || true)"

fasterq-dump --split-files SRR2936774
gz1="$(_compress_if_exists SRR2936774_1 || true)"
gz2="$(_compress_if_exists SRR2936774_2 || true)"
gzs="$(_compress_if_exists SRR2936774 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_F06_CATTCTCG.fq.gz
fi

fasterq-dump --split-files SRR2936776
gz1="$(_compress_if_exists SRR2936776_1 || true)"
gz2="$(_compress_if_exists SRR2936776_2 || true)"
gzs="$(_compress_if_exists SRR2936776 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_F10_ATACCGCA.fq.gz
fi

fasterq-dump --split-files SRR2936777
gz1="$(_compress_if_exists SRR2936777_1 || true)"
gz2="$(_compress_if_exists SRR2936777_2 || true)"
gzs="$(_compress_if_exists SRR2936777 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_F11_GGTATCTG.fq.gz
fi

fasterq-dump --split-files SRR2936778
gz1="$(_compress_if_exists SRR2936778_1 || true)"
gz2="$(_compress_if_exists SRR2936778_2 || true)"
gzs="$(_compress_if_exists SRR2936778 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_F12_TGCATTCG.fq.gz
fi

fasterq-dump --split-files SRR2936780
gz1="$(_compress_if_exists SRR2936780_1 || true)"
gz2="$(_compress_if_exists SRR2936780_2 || true)"
gzs="$(_compress_if_exists SRR2936780 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_G05_GCTCCTAT.fq.gz
fi

fasterq-dump --split-files SRR2936785
gz1="$(_compress_if_exists SRR2936785_1 || true)"
gz2="$(_compress_if_exists SRR2936785_2 || true)"
gzs="$(_compress_if_exists SRR2936785 || true)"

fasterq-dump --split-files SRR2936787
gz1="$(_compress_if_exists SRR2936787_1 || true)"
gz2="$(_compress_if_exists SRR2936787_2 || true)"
gzs="$(_compress_if_exists SRR2936787 || true)"

fasterq-dump --split-files SRR2936788
gz1="$(_compress_if_exists SRR2936788_1 || true)"
gz2="$(_compress_if_exists SRR2936788_2 || true)"
gzs="$(_compress_if_exists SRR2936788 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-173_R297_L6_1_H11_GTTCTGCT.fq.gz
fi

fasterq-dump --split-files SRR2936791
gz1="$(_compress_if_exists SRR2936791_1 || true)"
gz2="$(_compress_if_exists SRR2936791_2 || true)"
gzs="$(_compress_if_exists SRR2936791 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_A06_AGCGTCTA.fq.gz
fi

fasterq-dump --split-files SRR2936792
gz1="$(_compress_if_exists SRR2936792_1 || true)"
gz2="$(_compress_if_exists SRR2936792_2 || true)"
gzs="$(_compress_if_exists SRR2936792 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_A09_GTTACAGC.fq.gz
fi

fasterq-dump --split-files SRR2936794
gz1="$(_compress_if_exists SRR2936794_1 || true)"
gz2="$(_compress_if_exists SRR2936794_2 || true)"
gzs="$(_compress_if_exists SRR2936794 || true)"

fasterq-dump --split-files SRR2936797
gz1="$(_compress_if_exists SRR2936797_1 || true)"
gz2="$(_compress_if_exists SRR2936797_2 || true)"
gzs="$(_compress_if_exists SRR2936797 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_B11_GCAGGATA.fq.gz
fi

fasterq-dump --split-files SRR2936798
gz1="$(_compress_if_exists SRR2936798_1 || true)"
gz2="$(_compress_if_exists SRR2936798_2 || true)"
gzs="$(_compress_if_exists SRR2936798 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_B12_GCCTGTTT.fq.gz
fi

fasterq-dump --split-files SRR2936799
gz1="$(_compress_if_exists SRR2936799_1 || true)"
gz2="$(_compress_if_exists SRR2936799_2 || true)"
gzs="$(_compress_if_exists SRR2936799 || true)"

fasterq-dump --split-files SRR2936800
gz1="$(_compress_if_exists SRR2936800_1 || true)"
gz2="$(_compress_if_exists SRR2936800_2 || true)"
gzs="$(_compress_if_exists SRR2936800 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_C04_AGCTAGGA.fq.gz
fi

fasterq-dump --split-files SRR2936801
gz1="$(_compress_if_exists SRR2936801_1 || true)"
gz2="$(_compress_if_exists SRR2936801_2 || true)"
gzs="$(_compress_if_exists SRR2936801 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_C05_GCCTATAG.fq.gz
fi

fasterq-dump --split-files SRR2936802
gz1="$(_compress_if_exists SRR2936802_1 || true)"
gz2="$(_compress_if_exists SRR2936802_2 || true)"
gzs="$(_compress_if_exists SRR2936802 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_C07_GTGGTTCT.fq.gz
fi

fasterq-dump --split-files SRR2936805
gz1="$(_compress_if_exists SRR2936805_1 || true)"
gz2="$(_compress_if_exists SRR2936805_2 || true)"
gzs="$(_compress_if_exists SRR2936805 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_C12_GAGGATCA.fq.gz
fi

fasterq-dump --split-files SRR2936807
gz1="$(_compress_if_exists SRR2936807_1 || true)"
gz2="$(_compress_if_exists SRR2936807_2 || true)"
gzs="$(_compress_if_exists SRR2936807 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_D04_TCAGAACC.fq.gz
fi

fasterq-dump --split-files SRR2936814
gz1="$(_compress_if_exists SRR2936814_1 || true)"
gz2="$(_compress_if_exists SRR2936814_2 || true)"
gzs="$(_compress_if_exists SRR2936814 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_E10_GCTGTCTT.fq.gz
fi

fasterq-dump --split-files SRR2936816
gz1="$(_compress_if_exists SRR2936816_1 || true)"
gz2="$(_compress_if_exists SRR2936816_2 || true)"
gzs="$(_compress_if_exists SRR2936816 || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" C1-1772096-175_R297_L7_1_F04_GAGTTCAC.fq.gz
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934320/SRR2934320
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934321/SRR2934321
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934322/SRR2934322
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934323/SRR2934323
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934324/SRR2934324
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934325/SRR2934325
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934326/SRR2934326
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934327/SRR2934327
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934328/SRR2934328
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934329/SRR2934329
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934330/SRR2934330
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934331/SRR2934331
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934332/SRR2934332
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934333/SRR2934333
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934334/SRR2934334
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934335/SRR2934335
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934336/SRR2934336
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934337/SRR2934337
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934338/SRR2934338
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934339/SRR2934339
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934340/SRR2934340
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934341/SRR2934341
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934342/SRR2934342
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934343/SRR2934343
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934344/SRR2934344
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934345/SRR2934345
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934346/SRR2934346
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934347/SRR2934347
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934348/SRR2934348
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934349/SRR2934349
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934350/SRR2934350
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934351/SRR2934351
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934352/SRR2934352
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934354/SRR2934354
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934355/SRR2934355
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934356/SRR2934356
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934357/SRR2934357
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934358/SRR2934358
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934359/SRR2934359
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934360/SRR2934360
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934361/SRR2934361
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934362/SRR2934362
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934363/SRR2934363
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934364/SRR2934364
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934365/SRR2934365
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934366/SRR2934366
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934367/SRR2934367
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934368/SRR2934368
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934369/SRR2934369
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934370/SRR2934370
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934371/SRR2934371
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934372/SRR2934372
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934373/SRR2934373
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934374/SRR2934374
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934376/SRR2934376
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934377/SRR2934377
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934378/SRR2934378
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934379/SRR2934379
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934380/SRR2934380
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934381/SRR2934381
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934382/SRR2934382
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934383/SRR2934383
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934384/SRR2934384
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934385/SRR2934385
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934386/SRR2934386
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934387/SRR2934387
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934388/SRR2934388
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934389/SRR2934389
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934390/SRR2934390
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934391/SRR2934391
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934392/SRR2934392
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934393/SRR2934393
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934394/SRR2934394
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934396/SRR2934396
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934399/SRR2934399
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934400/SRR2934400
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934401/SRR2934401
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934402/SRR2934402
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934404/SRR2934404
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934405/SRR2934405
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934406/SRR2934406
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934407/SRR2934407
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934409/SRR2934409
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934411/SRR2934411
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934412/SRR2934412
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934413/SRR2934413
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934414/SRR2934414
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934415/SRR2934415
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934416/SRR2934416
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934417/SRR2934417
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934418/SRR2934418
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934419/SRR2934419
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934420/SRR2934420
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934421/SRR2934421
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934422/SRR2934422
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934423/SRR2934423
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934424/SRR2934424
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934425/SRR2934425
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934426/SRR2934426
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934427/SRR2934427
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934429/SRR2934429
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934430/SRR2934430
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934431/SRR2934431
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934432/SRR2934432
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934433/SRR2934433
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934520/SRR2934520
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934521/SRR2934521
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934522/SRR2934522
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934523/SRR2934523
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934525/SRR2934525
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934526/SRR2934526
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934527/SRR2934527
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934529/SRR2934529
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934530/SRR2934530
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934531/SRR2934531
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934532/SRR2934532
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934533/SRR2934533
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934534/SRR2934534
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934536/SRR2934536
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934537/SRR2934537
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934538/SRR2934538
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934539/SRR2934539
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934540/SRR2934540
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934541/SRR2934541
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934542/SRR2934542
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934546/SRR2934546
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934547/SRR2934547
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934549/SRR2934549
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934551/SRR2934551
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934554/SRR2934554
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934555/SRR2934555
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934556/SRR2934556
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934557/SRR2934557
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934560/SRR2934560
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934561/SRR2934561
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934563/SRR2934563
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934564/SRR2934564
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934565/SRR2934565
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934566/SRR2934566
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934567/SRR2934567
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934569/SRR2934569
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934570/SRR2934570
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934571/SRR2934571
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934572/SRR2934572
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934573/SRR2934573
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934574/SRR2934574
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934575/SRR2934575
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934576/SRR2934576
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934577/SRR2934577
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934578/SRR2934578
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934579/SRR2934579
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934580/SRR2934580
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934581/SRR2934581
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934582/SRR2934582
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934583/SRR2934583
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934584/SRR2934584
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934585/SRR2934585
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934586/SRR2934586
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934587/SRR2934587
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934588/SRR2934588
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934589/SRR2934589
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934590/SRR2934590
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934591/SRR2934591
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934592/SRR2934592
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934593/SRR2934593
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934594/SRR2934594
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934595/SRR2934595
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934596/SRR2934596
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934597/SRR2934597
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934598/SRR2934598
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934599/SRR2934599
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934600/SRR2934600
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934601/SRR2934601
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934602/SRR2934602
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934603/SRR2934603
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934604/C1-1772084-017_R297_L7_1_F11_AGAAGCAG.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934605/SRR2934605
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934606/SRR2934606
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934607/SRR2934607
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934608/SRR2934608
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934609/SRR2934609
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934610/SRR2934610
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934611/SRR2934611
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934612/SRR2934612
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934613/SRR2934613
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934614/SRR2934614
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934615/SRR2934615
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934616/SRR2934616
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934617/SRR2934617
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934618/SRR2934618
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934619/SRR2934619
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934620/SRR2934620
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934622/SRR2934622
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934623/SRR2934623
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934624/SRR2934624
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934625/SRR2934625
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934627/SRR2934627
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934629/SRR2934629
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934631/SRR2934631
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934635/SRR2934635
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934636/SRR2934636
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934637/SRR2934637
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934639/SRR2934639
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934640/SRR2934640
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934641/SRR2934641
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934642/SRR2934642
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934643/SRR2934643
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934644/SRR2934644
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934645/SRR2934645
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934646/SRR2934646
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934647/SRR2934647
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934648/SRR2934648
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934649/SRR2934649
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934650/SRR2934650
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934651/SRR2934651
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934656/SRR2934656
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934657/SRR2934657
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934660/SRR2934660
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934661/SRR2934661
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934662/SRR2934662
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934663/SRR2934663
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934664/SRR2934664
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934665/SRR2934665
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934666/SRR2934666
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934667/SRR2934667
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934668/SRR2934668
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934669/SRR2934669
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934670/SRR2934670
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934671/SRR2934671
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934672/SRR2934672
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934675/SRR2934675
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934676/SRR2934676
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934677/SRR2934677
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934678/SRR2934678
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934679/SRR2934679
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934680/SRR2934680
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934681/SRR2934681
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934682/SRR2934682
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934683/SRR2934683
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934684/SRR2934684
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934686/SRR2934686
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934687/SRR2934687
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934688/SRR2934688
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934689/SRR2934689
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934690/SRR2934690
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934691/SRR2934691
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934692/SRR2934692
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934693/SRR2934693
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934694/SRR2934694
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934695/SRR2934695
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934696/SRR2934696
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934697/SRR2934697
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934698/SRR2934698
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934699/SRR2934699
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934700/SRR2934700
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934701/SRR2934701
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934702/SRR2934702
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934703/C1-1772084-021_R297_L7_1_F10_ATGCCTGT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934704/SRR2934704
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934705/SRR2934705
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934706/SRR2934706
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934707/SRR2934707
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934709/SRR2934709
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934711/SRR2934711
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934712/SRR2934712
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934714/SRR2934714
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934715/SRR2934715
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934716/SRR2934716
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934717/SRR2934717
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934719/SRR2934719
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934721/SRR2934721
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934722/SRR2934722
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934723/SRR2934723
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934724/SRR2934724
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934725/SRR2934725
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934726/SRR2934726
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934727/SRR2934727
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934728/SRR2934728
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934729/SRR2934729
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934730/SRR2934730
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934731/SRR2934731
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934732/SRR2934732
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934733/SRR2934733
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934734/SRR2934734
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934735/SRR2934735
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934736/SRR2934736
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934737/SRR2934737
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934738/SRR2934738
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934739/SRR2934739
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934741/SRR2934741
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934742/SRR2934742
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934743/SRR2934743
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934744/SRR2934744
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934745/SRR2934745
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934748/SRR2934748
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934749/SRR2934749
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934750/SRR2934750
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934751/SRR2934751
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934752/SRR2934752
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934754/SRR2934754
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934756/SRR2934756
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934757/SRR2934757
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934758/SRR2934758
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934759/SRR2934759
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934760/SRR2934760
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934761/SRR2934761
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934762/SRR2934762
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934763/SRR2934763
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934765/SRR2934765
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934766/C1-1772089-187_R279_L4_1_A07_TGAGGCAT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934767/SRR2934767
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934768/SRR2934768
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934769/SRR2934769
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934771/SRR2934771
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934772/SRR2934772
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934773/SRR2934773
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934774/SRR2934774
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934775/SRR2934775
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934776/SRR2934776
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934777/SRR2934777
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934778/SRR2934778
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934779/SRR2934779
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934780/SRR2934780
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934781/SRR2934781
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934782/SRR2934782
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934783/SRR2934783
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934784/SRR2934784
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934785/SRR2934785
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934786/SRR2934786
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934787/SRR2934787
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934788/SRR2934788
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934789/SRR2934789
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934791/C1-1772089-187_R279_L4_1_G05_TCCGAGAA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934793/SRR2934793
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934794/SRR2934794
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934795/SRR2934795
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934796/SRR2934796
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934797/SRR2934797
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934800/SRR2934800
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934801/SRR2934801
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934804/SRR2934804
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934805/SRR2934805
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934806/SRR2934806
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934807/SRR2934807
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934808/SRR2934808
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934809/SRR2934809
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934811/SRR2934811
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934813/SRR2934813
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934814/SRR2934814
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934815/SRR2934815
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934817/SRR2934817
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934818/SRR2934818
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934821/SRR2934821
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934822/SRR2934822
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934823/SRR2934823
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934824/SRR2934824
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934825/SRR2934825
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934826/SRR2934826
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934827/SRR2934827
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934829/SRR2934829
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934830/SRR2934830
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934831/SRR2934831
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934833/SRR2934833
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934834/SRR2934834
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934835/SRR2934835
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934836/SRR2934836
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934837/SRR2934837
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934838/SRR2934838
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934839/SRR2934839
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934840/SRR2934840
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934841/SRR2934841
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934842/SRR2934842
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934843/SRR2934843
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934844/SRR2934844
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934845/SRR2934845
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934846/SRR2934846
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934847/SRR2934847
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934848/SRR2934848
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934849/SRR2934849
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934850/SRR2934850
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934851/SRR2934851
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934852/SRR2934852
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934853/SRR2934853
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934854/SRR2934854
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934855/SRR2934855
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934856/SRR2934856
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934857/SRR2934857
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934858/SRR2934858
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934859/SRR2934859
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934860/SRR2934860
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934861/SRR2934861
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934862/SRR2934862
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934863/SRR2934863
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934864/SRR2934864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934865/SRR2934865
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934866/SRR2934866
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934867/SRR2934867
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934868/SRR2934868
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934869/SRR2934869
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934870/SRR2934870
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934871/SRR2934871
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934873/SRR2934873
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934875/SRR2934875
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934876/SRR2934876
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934877/SRR2934877
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934878/SRR2934878
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934879/SRR2934879
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934880/SRR2934880
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934881/SRR2934881
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934882/SRR2934882
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934883/SRR2934883
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934884/SRR2934884
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934885/SRR2934885
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934886/SRR2934886
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934887/SRR2934887
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934888/SRR2934888
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934889/SRR2934889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934890/SRR2934890
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934891/SRR2934891
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934892/SRR2934892
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934893/SRR2934893
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934894/SRR2934894
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934895/SRR2934895
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934896/SRR2934896
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934898/SRR2934898
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934899/SRR2934899
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934900/SRR2934900
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934901/SRR2934901
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934902/SRR2934902
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934903/SRR2934903
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934904/SRR2934904
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934905/SRR2934905
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934907/SRR2934907
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934909/SRR2934909
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934910/SRR2934910
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934912/SRR2934912
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934913/SRR2934913
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934915/SRR2934915
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934916/SRR2934916
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934917/SRR2934917
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934918/SRR2934918
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934919/SRR2934919
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934920/SRR2934920
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934921/SRR2934921
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934922/SRR2934922
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934923/SRR2934923
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934924/SRR2934924
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934925/SRR2934925
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934926/SRR2934926
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934927/SRR2934927
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934928/SRR2934928
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934929/SRR2934929
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934931/SRR2934931
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934932/SRR2934932
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934933/SRR2934933
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934934/SRR2934934
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934935/SRR2934935
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934936/SRR2934936
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934938/SRR2934938
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934939/SRR2934939
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934940/SRR2934940
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934941/SRR2934941
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934942/SRR2934942
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934945/SRR2934945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934946/SRR2934946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934950/SRR2934950
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934951/SRR2934951
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934953/SRR2934953
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934955/SRR2934955
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934956/SRR2934956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934957/SRR2934957
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934958/SRR2934958
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934959/SRR2934959
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934960/SRR2934960
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934962/SRR2934962
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934963/SRR2934963
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934964/SRR2934964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934965/SRR2934965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934966/SRR2934966
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934967/SRR2934967
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934968/SRR2934968
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934969/SRR2934969
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934972/SRR2934972
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934973/SRR2934973
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934976/SRR2934976
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934977/SRR2934977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934978/SRR2934978
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934979/SRR2934979
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934980/SRR2934980
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934981/SRR2934981
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934982/SRR2934982
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934983/SRR2934983
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934984/SRR2934984
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934985/SRR2934985
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934987/SRR2934987
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934989/SRR2934989
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934990/SRR2934990
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934991/SRR2934991
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934992/SRR2934992
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934993/SRR2934993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934994/SRR2934994
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934995/SRR2934995
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934996/SRR2934996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934997/SRR2934997
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934998/SRR2934998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934999/SRR2934999
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935000/SRR2935000
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935001/SRR2935001
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935002/SRR2935002
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935004/SRR2935004
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935005/SRR2935005
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935006/SRR2935006
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935008/SRR2935008
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935010/SRR2935010
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935012/SRR2935012
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935013/SRR2935013
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935014/SRR2935014
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935015/SRR2935015
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935016/SRR2935016
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935018/SRR2935018
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935019/SRR2935019
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935020/SRR2935020
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935021/SRR2935021
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935022/SRR2935022
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935023/SRR2935023
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935024/SRR2935024
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935025/SRR2935025
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935026/SRR2935026
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935027/SRR2935027
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935029/SRR2935029
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935030/SRR2935030
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935031/SRR2935031
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935032/SRR2935032
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935035/SRR2935035
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935036/SRR2935036
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935037/SRR2935037
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935038/SRR2935038
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935039/SRR2935039
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935041/SRR2935041
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935042/SRR2935042
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935043/SRR2935043
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935044/SRR2935044
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935045/SRR2935045
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935046/SRR2935046
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935047/SRR2935047
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935048/SRR2935048
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935049/SRR2935049
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935050/SRR2935050
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935051/SRR2935051
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935052/SRR2935052
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935053/SRR2935053
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935054/SRR2935054
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935055/SRR2935055
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935056/SRR2935056
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935057/SRR2935057
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935058/SRR2935058
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935059/SRR2935059
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935061/SRR2935061
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935062/SRR2935062
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935063/SRR2935063
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935064/SRR2935064
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935065/SRR2935065
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935066/SRR2935066
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935067/SRR2935067
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935068/SRR2935068
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935069/SRR2935069
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935070/SRR2935070
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935071/SRR2935071
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935073/SRR2935073
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935075/SRR2935075
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935077/SRR2935077
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935078/SRR2935078
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935079/SRR2935079
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935080/SRR2935080
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935081/SRR2935081
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935082/SRR2935082
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935083/SRR2935083
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935084/SRR2935084
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935085/SRR2935085
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935086/SRR2935086
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935087/SRR2935087
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935088/SRR2935088
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935089/SRR2935089
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935090/SRR2935090
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935091/SRR2935091
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935092/SRR2935092
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935093/SRR2935093
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935094/SRR2935094
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935095/SRR2935095
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935097/SRR2935097
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935098/SRR2935098
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935099/SRR2935099
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935100/SRR2935100
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935101/SRR2935101
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935102/SRR2935102
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935103/SRR2935103
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935104/SRR2935104
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935105/SRR2935105
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935106/SRR2935106
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935107/SRR2935107
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935108/SRR2935108
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935109/SRR2935109
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935110/SRR2935110
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935111/SRR2935111
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935112/SRR2935112
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935113/SRR2935113
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935114/SRR2935114
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935115/SRR2935115
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935116/SRR2935116
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935119/SRR2935119
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935120/SRR2935120
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935121/SRR2935121
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935122/SRR2935122
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935124/SRR2935124
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935125/SRR2935125
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935126/SRR2935126
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935128/SRR2935128
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935129/SRR2935129
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935130/SRR2935130
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935131/SRR2935131
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935133/SRR2935133
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935135/SRR2935135
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935136/SRR2935136
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935138/SRR2935138
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935139/SRR2935139
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935141/SRR2935141
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935142/SRR2935142
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935145/SRR2935145
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935146/SRR2935146
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935147/SRR2935147
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935148/SRR2935148
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935150/SRR2935150
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935152/SRR2935152
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935153/SRR2935153
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935154/SRR2935154
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935156/SRR2935156
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935157/SRR2935157
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935158/SRR2935158
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935159/SRR2935159
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935161/SRR2935161
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935162/SRR2935162
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935163/SRR2935163
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935165/SRR2935165
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935166/SRR2935166
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935167/SRR2935167
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935168/SRR2935168
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935169/SRR2935169
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935170/SRR2935170
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935171/SRR2935171
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935172/SRR2935172
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935174/SRR2935174
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935175/SRR2935175
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935176/SRR2935176
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935177/SRR2935177
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935178/SRR2935178
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935179/SRR2935179
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935181/SRR2935181
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935182/SRR2935182
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935183/SRR2935183
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935184/SRR2935184
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935185/SRR2935185
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935186/SRR2935186
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935187/SRR2935187
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935190/SRR2935190
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935191/SRR2935191
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935193/SRR2935193
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935194/SRR2935194
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935195/SRR2935195
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935196/SRR2935196
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935197/SRR2935197
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935199/SRR2935199
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935200/SRR2935200
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935201/SRR2935201
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935202/SRR2935202
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935203/SRR2935203
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935204/SRR2935204
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935207/SRR2935207
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935208/SRR2935208
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935209/SRR2935209
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935211/SRR2935211
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935212/SRR2935212
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935213/SRR2935213
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935214/SRR2935214
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935215/SRR2935215
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935216/SRR2935216
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935218/SRR2935218
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935219/SRR2935219
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935220/SRR2935220
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935222/SRR2935222
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935223/SRR2935223
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935224/SRR2935224
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935225/SRR2935225
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935228/SRR2935228
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935230/SRR2935230
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935232/SRR2935232
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935234/SRR2935234
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935237/SRR2935237
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935238/SRR2935238
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935240/SRR2935240
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935241/SRR2935241
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935242/SRR2935242
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935243/SRR2935243
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935244/SRR2935244
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935245/SRR2935245
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935246/SRR2935246
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935248/SRR2935248
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935249/SRR2935249
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935250/SRR2935250
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935252/SRR2935252
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935253/SRR2935253
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935255/SRR2935255
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935257/SRR2935257
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935258/SRR2935258
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935259/SRR2935259
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935260/SRR2935260
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935261/SRR2935261
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935262/SRR2935262
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935263/SRR2935263
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935264/SRR2935264
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935265/SRR2935265
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935266/SRR2935266
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935267/SRR2935267
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935268/SRR2935268
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935269/SRR2935269
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935270/SRR2935270
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935271/SRR2935271
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935272/SRR2935272
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935273/SRR2935273
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935275/SRR2935275
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935276/SRR2935276
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935278/SRR2935278
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935279/SRR2935279
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935280/SRR2935280
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935281/SRR2935281
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935282/SRR2935282
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935283/SRR2935283
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935284/SRR2935284
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935285/C1-1772092-012_R278_L6_1_E06_GTTTGCTC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935286/SRR2935286
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935287/SRR2935287
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935288/SRR2935288
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935289/SRR2935289
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935290/SRR2935290
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935291/SRR2935291
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935292/SRR2935292
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935293/SRR2935293
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935294/SRR2935294
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935295/SRR2935295
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935296/SRR2935296
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935297/SRR2935297
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935298/SRR2935298
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935299/SRR2935299
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935300/SRR2935300
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935301/SRR2935301
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935302/SRR2935302
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935303/SRR2935303
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935304/SRR2935304
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935305/SRR2935305
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935306/SRR2935306
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935307/SRR2935307
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935308/SRR2935308
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935309/SRR2935309
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935310/SRR2935310
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935311/SRR2935311
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935312/SRR2935312
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935313/SRR2935313
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935314/SRR2935314
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935315/SRR2935315
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935316/SRR2935316
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935317/SRR2935317
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935318/SRR2935318
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935319/SRR2935319
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935320/SRR2935320
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935321/SRR2935321
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935322/SRR2935322
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935323/SRR2935323
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935324/SRR2935324
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935325/SRR2935325
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935326/SRR2935326
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935327/SRR2935327
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935328/SRR2935328
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935329/SRR2935329
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935330/SRR2935330
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935331/SRR2935331
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935332/SRR2935332
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935333/SRR2935333
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935334/SRR2935334
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935335/SRR2935335
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935336/SRR2935336
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935337/SRR2935337
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935338/SRR2935338
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935339/SRR2935339
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935340/SRR2935340
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935341/SRR2935341
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935342/SRR2935342
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935343/SRR2935343
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935344/SRR2935344
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935345/SRR2935345
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935346/SRR2935346
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935347/SRR2935347
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935348/SRR2935348
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935349/SRR2935349
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935351/SRR2935351
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935354/SRR2935354
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935356/SRR2935356
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935357/SRR2935357
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935358/SRR2935358
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935359/SRR2935359
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935360/SRR2935360
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935361/SRR2935361
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935362/SRR2935362
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935363/SRR2935363
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935364/SRR2935364
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935365/SRR2935365
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935369/SRR2935369
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935370/SRR2935370
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935371/SRR2935371
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935373/SRR2935373
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935374/SRR2935374
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935375/SRR2935375
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935376/SRR2935376
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935377/SRR2935377
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935378/SRR2935378
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935379/SRR2935379
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935380/SRR2935380
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935381/SRR2935381
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935382/SRR2935382
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935383/SRR2935383
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935384/SRR2935384
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935385/SRR2935385
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935386/SRR2935386
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935387/SRR2935387
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935388/SRR2935388
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935391/SRR2935391
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935395/SRR2935395
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935396/SRR2935396
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935397/SRR2935397
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935398/SRR2935398
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935399/SRR2935399
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935400/SRR2935400
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935401/SRR2935401
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935402/SRR2935402
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935403/SRR2935403
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935404/SRR2935404
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935405/SRR2935405
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935407/SRR2935407
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935408/SRR2935408
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935409/SRR2935409
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935412/SRR2935412
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935413/SRR2935413
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935414/SRR2935414
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935415/SRR2935415
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935417/SRR2935417
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935418/SRR2935418
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935419/SRR2935419
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935422/SRR2935422
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935424/SRR2935424
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935425/SRR2935425
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935426/SRR2935426
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935428/SRR2935428
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935429/SRR2935429
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935431/SRR2935431
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935432/SRR2935432
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935436/SRR2935436
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935438/SRR2935438
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935440/SRR2935440
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935442/SRR2935442
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935447/SRR2935447
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935449/SRR2935449
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935450/SRR2935450
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935451/SRR2935451
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935452/SRR2935452
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935454/SRR2935454
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935455/SRR2935455
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935456/SRR2935456
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935457/SRR2935457
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935458/SRR2935458
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935459/SRR2935459
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935460/SRR2935460
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935461/SRR2935461
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935462/SRR2935462
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935463/SRR2935463
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935464/SRR2935464
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935465/SRR2935465
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935466/SRR2935466
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935467/SRR2935467
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935468/SRR2935468
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935469/SRR2935469
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935470/SRR2935470
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935471/SRR2935471
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935472/SRR2935472
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935473/SRR2935473
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935474/SRR2935474
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935475/SRR2935475
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935477/SRR2935477
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935478/SRR2935478
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935479/SRR2935479
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935480/SRR2935480
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935481/SRR2935481
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935482/SRR2935482
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935483/SRR2935483
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935484/SRR2935484
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935485/SRR2935485
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935487/SRR2935487
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935488/SRR2935488
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935490/SRR2935490
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935491/SRR2935491
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935492/SRR2935492
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935495/SRR2935495
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935499/SRR2935499
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935500/SRR2935500
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935501/SRR2935501
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935502/SRR2935502
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935503/SRR2935503
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935504/SRR2935504
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935505/SRR2935505
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935506/SRR2935506
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935508/SRR2935508
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935509/SRR2935509
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935510/SRR2935510
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935511/SRR2935511
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935512/SRR2935512
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935513/SRR2935513
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935514/SRR2935514
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935515/SRR2935515
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935516/SRR2935516
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935517/SRR2935517
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935518/SRR2935518
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935519/SRR2935519
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935520/SRR2935520
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935521/SRR2935521
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935522/SRR2935522
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935524/SRR2935524
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935525/SRR2935525
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935526/SRR2935526
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935527/SRR2935527
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935528/SRR2935528
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935529/SRR2935529
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935530/SRR2935530
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935531/C1-1772096-100_R295_L6_1_D06_GTGACCTA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935532/SRR2935532
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935533/SRR2935533
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935534/SRR2935534
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935535/SRR2935535
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935537/SRR2935537
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935538/SRR2935538
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935539/SRR2935539
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935540/SRR2935540
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935541/SRR2935541
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935542/SRR2935542
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935543/SRR2935543
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935544/SRR2935544
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935545/SRR2935545
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935546/SRR2935546
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935547/SRR2935547
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935548/SRR2935548
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935549/SRR2935549
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935550/SRR2935550
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935552/SRR2935552
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935553/SRR2935553
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935555/SRR2935555
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935556/SRR2935556
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935557/SRR2935557
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935559/SRR2935559
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935560/SRR2935560
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935561/SRR2935561
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935562/SRR2935562
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935563/SRR2935563
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935564/SRR2935564
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935565/SRR2935565
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935566/SRR2935566
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935567/SRR2935567
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935568/SRR2935568
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935570/SRR2935570
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935571/SRR2935571
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935572/SRR2935572
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935573/SRR2935573
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935575/SRR2935575
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935576/SRR2935576
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935577/SRR2935577
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935578/SRR2935578
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935579/SRR2935579
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935580/SRR2935580
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935581/SRR2935581
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935582/SRR2935582
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935583/SRR2935583
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935585/SRR2935585
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935587/SRR2935587
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935588/SRR2935588
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935589/SRR2935589
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935590/SRR2935590
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935591/SRR2935591
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935592/SRR2935592
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935593/SRR2935593
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935594/SRR2935594
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935595/SRR2935595
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935596/SRR2935596
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935597/SRR2935597
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935598/SRR2935598
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935599/SRR2935599
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935600/SRR2935600
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935601/SRR2935601
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935603/SRR2935603
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935604/SRR2935604
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935605/SRR2935605
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935606/SRR2935606
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935607/SRR2935607
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935608/SRR2935608
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935609/C1-1772096-101_R293_L5_1_H01_ATCGTGGT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935610/SRR2935610
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935611/SRR2935611
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935613/SRR2935613
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935615/SRR2935615
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935616/SRR2935616
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935617/SRR2935617
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935618/SRR2935618
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935620/SRR2935620
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935621/SRR2935621
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935623/SRR2935623
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935627/SRR2935627
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935630/SRR2935630
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935631/SRR2935631
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935632/SRR2935632
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935634/SRR2935634
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935635/SRR2935635
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935637/SRR2935637
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935639/SRR2935639
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935640/SRR2935640
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935641/SRR2935641
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935643/SRR2935643
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935645/SRR2935645
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935647/SRR2935647
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935648/SRR2935648
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935649/SRR2935649
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935650/SRR2935650
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935651/SRR2935651
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935652/SRR2935652
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935654/SRR2935654
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935655/SRR2935655
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935656/SRR2935656
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935657/SRR2935657
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935658/SRR2935658
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935659/SRR2935659
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935662/SRR2935662
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935663/SRR2935663
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935664/SRR2935664
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935665/SRR2935665
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935666/SRR2935666
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935667/SRR2935667
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935668/SRR2935668
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935669/SRR2935669
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935670/SRR2935670
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935673/SRR2935673
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935674/SRR2935674
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935675/SRR2935675
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935676/SRR2935676
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935677/SRR2935677
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935678/SRR2935678
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935679/SRR2935679
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935680/SRR2935680
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935681/SRR2935681
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935682/SRR2935682
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935683/SRR2935683
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935684/SRR2935684
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935685/SRR2935685
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935686/SRR2935686
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935687/SRR2935687
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935688/SRR2935688
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935689/SRR2935689
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935690/SRR2935690
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935691/SRR2935691
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935692/SRR2935692
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935694/SRR2935694
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935695/SRR2935695
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935696/SRR2935696
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935697/SRR2935697
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935699/SRR2935699
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935700/SRR2935700
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935701/SRR2935701
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935702/SRR2935702
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935703/SRR2935703
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935704/SRR2935704
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935705/SRR2935705
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935707/SRR2935707
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935709/SRR2935709
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935710/SRR2935710
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935711/SRR2935711
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935714/SRR2935714
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935715/SRR2935715
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935717/SRR2935717
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935718/SRR2935718
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935719/SRR2935719
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935720/SRR2935720
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935721/SRR2935721
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935722/SRR2935722
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935723/SRR2935723
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935724/SRR2935724
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935725/SRR2935725
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935726/SRR2935726
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935727/SRR2935727
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935728/SRR2935728
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935729/SRR2935729
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935730/SRR2935730
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935731/SRR2935731
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935732/SRR2935732
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935733/SRR2935733
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935734/SRR2935734
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935735/SRR2935735
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935736/SRR2935736
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935737/SRR2935737
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935738/SRR2935738
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935739/SRR2935739
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935740/SRR2935740
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935741/SRR2935741
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935742/SRR2935742
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935743/SRR2935743
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935744/SRR2935744
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935745/SRR2935745
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935746/SRR2935746
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935748/SRR2935748
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935749/SRR2935749
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935750/SRR2935750
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935751/SRR2935751
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935752/SRR2935752
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935753/SRR2935753
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935754/SRR2935754
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935755/SRR2935755
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935756/SRR2935756
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935757/SRR2935757
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935758/SRR2935758
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935759/SRR2935759
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935760/SRR2935760
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935761/SRR2935761
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935762/SRR2935762
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935763/SRR2935763
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935764/SRR2935764
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935765/SRR2935765
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935766/SRR2935766
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935767/SRR2935767
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935768/SRR2935768
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935769/SRR2935769
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935770/SRR2935770
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935771/SRR2935771
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935772/SRR2935772
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935775/SRR2935775
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935776/SRR2935776
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935778/SRR2935778
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935779/SRR2935779
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935780/SRR2935780
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935781/SRR2935781
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935782/SRR2935782
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935783/SRR2935783
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935784/SRR2935784
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935786/SRR2935786
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935787/SRR2935787
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935788/SRR2935788
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935789/SRR2935789
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935790/SRR2935790
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935791/SRR2935791
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935792/SRR2935792
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935793/SRR2935793
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935794/SRR2935794
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935795/SRR2935795
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935796/SRR2935796
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935797/SRR2935797
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935798/SRR2935798
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935800/SRR2935800
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935802/SRR2935802
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935805/SRR2935805
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935806/SRR2935806
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935808/SRR2935808
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935809/SRR2935809
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935810/SRR2935810
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935811/SRR2935811
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935815/SRR2935815
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935816/SRR2935816
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935817/SRR2935817
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935818/SRR2935818
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935819/SRR2935819
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935820/SRR2935820
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935821/SRR2935821
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935823/SRR2935823
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935824/SRR2935824
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935825/SRR2935825
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935826/SRR2935826
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935827/SRR2935827
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935828/SRR2935828
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935829/SRR2935829
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935830/SRR2935830
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935831/SRR2935831
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935832/SRR2935832
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935833/SRR2935833
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935836/SRR2935836
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935837/SRR2935837
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935840/SRR2935840
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935841/SRR2935841
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935842/SRR2935842
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935844/SRR2935844
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935845/SRR2935845
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935846/SRR2935846
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935847/SRR2935847
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935848/SRR2935848
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935849/SRR2935849
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935850/SRR2935850
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935851/SRR2935851
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935852/SRR2935852
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935853/SRR2935853
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935854/SRR2935854
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935855/SRR2935855
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935856/SRR2935856
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935857/SRR2935857
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935859/SRR2935859
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935860/SRR2935860
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935862/SRR2935862
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935863/SRR2935863
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935864/SRR2935864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935865/SRR2935865
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935866/SRR2935866
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935867/SRR2935867
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935868/SRR2935868
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935869/SRR2935869
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935870/SRR2935870
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935871/SRR2935871
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935872/SRR2935872
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935873/SRR2935873
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935875/SRR2935875
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935876/SRR2935876
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935877/SRR2935877
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935879/SRR2935879
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935880/SRR2935880
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935881/SRR2935881
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935882/SRR2935882
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935883/SRR2935883
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935884/SRR2935884
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935885/SRR2935885
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935887/SRR2935887
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935889/SRR2935889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935891/SRR2935891
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935892/SRR2935892
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935893/SRR2935893
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935894/SRR2935894
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935895/SRR2935895
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935896/SRR2935896
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935897/SRR2935897
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935898/SRR2935898
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935900/SRR2935900
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935901/SRR2935901
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935902/SRR2935902
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935903/SRR2935903
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935904/SRR2935904
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935905/SRR2935905
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935906/SRR2935906
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935907/SRR2935907
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935908/SRR2935908
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935909/SRR2935909
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935910/SRR2935910
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935911/SRR2935911
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935912/SRR2935912
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935913/SRR2935913
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935914/SRR2935914
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935915/SRR2935915
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935916/SRR2935916
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935917/SRR2935917
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935918/SRR2935918
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935919/SRR2935919
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935920/SRR2935920
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935921/SRR2935921
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935922/SRR2935922
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935923/SRR2935923
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935924/SRR2935924
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935925/SRR2935925
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935926/SRR2935926
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935927/SRR2935927
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935929/SRR2935929
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935930/SRR2935930
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935931/SRR2935931
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935932/SRR2935932
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935935/SRR2935935
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935936/SRR2935936
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935937/SRR2935937
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935938/SRR2935938
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935939/SRR2935939
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935940/SRR2935940
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935941/SRR2935941
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935943/SRR2935943
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935944/SRR2935944
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935945/SRR2935945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935946/SRR2935946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935947/SRR2935947
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935948/SRR2935948
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935950/SRR2935950
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935951/SRR2935951
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935952/SRR2935952
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935953/SRR2935953
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935954/SRR2935954
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935955/SRR2935955
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935956/SRR2935956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935957/SRR2935957
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935958/SRR2935958
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935959/SRR2935959
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935960/SRR2935960
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935961/SRR2935961
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935962/SRR2935962
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935963/SRR2935963
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935964/SRR2935964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935965/SRR2935965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935966/SRR2935966
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935967/SRR2935967
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935968/SRR2935968
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935969/SRR2935969
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935970/SRR2935970
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935971/SRR2935971
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935972/SRR2935972
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935973/SRR2935973
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935974/SRR2935974
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935975/SRR2935975
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935976/C1-1772096-133_R295_L4_1_B02_GTGTGAGA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935977/SRR2935977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935979/SRR2935979
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935980/SRR2935980
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935981/SRR2935981
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935982/SRR2935982
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935983/SRR2935983
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935984/SRR2935984
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935985/SRR2935985
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935986/SRR2935986
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935987/SRR2935987
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935988/SRR2935988
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935989/SRR2935989
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935991/SRR2935991
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935992/SRR2935992
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935993/SRR2935993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935994/SRR2935994
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935995/SRR2935995
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935996/SRR2935996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935997/SRR2935997
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935998/SRR2935998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936000/SRR2936000
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936001/SRR2936001
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936002/SRR2936002
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936003/SRR2936003
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936004/SRR2936004
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936005/SRR2936005
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936006/SRR2936006
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936007/SRR2936007
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936008/SRR2936008
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936009/SRR2936009
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936010/SRR2936010
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936011/SRR2936011
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936012/SRR2936012
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936013/SRR2936013
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936014/SRR2936014
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936015/SRR2936015
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936017/SRR2936017
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936018/SRR2936018
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936019/SRR2936019
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936020/SRR2936020
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936021/SRR2936021
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936022/SRR2936022
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936024/SRR2936024
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936025/SRR2936025
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936026/SRR2936026
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936027/SRR2936027
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936028/SRR2936028
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936030/SRR2936030
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936031/SRR2936031
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936032/SRR2936032
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936033/SRR2936033
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936034/SRR2936034
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936035/SRR2936035
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936038/C1-1772096-134_R295_L4_1_G02_GTACGAAG.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936039/SRR2936039
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936041/SRR2936041
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936042/SRR2936042
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936044/SRR2936044
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936045/SRR2936045
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936046/SRR2936046
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936047/C1-1772096-135_R297_L8_1_A01_GCACACTA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936048/SRR2936048
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936049/SRR2936049
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936050/SRR2936050
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936051/SRR2936051
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936052/SRR2936052
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936053/SRR2936053
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936054/SRR2936054
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936055/SRR2936055
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936056/SRR2936056
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936057/SRR2936057
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936059/SRR2936059
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936060/SRR2936060
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936061/SRR2936061
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936062/SRR2936062
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936063/SRR2936063
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936064/SRR2936064
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936065/SRR2936065
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936066/SRR2936066
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936068/SRR2936068
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936069/SRR2936069
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936071/SRR2936071
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936072/SRR2936072
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936073/SRR2936073
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936074/SRR2936074
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936075/SRR2936075
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936076/SRR2936076
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936077/SRR2936077
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936078/SRR2936078
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936080/SRR2936080
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936081/SRR2936081
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936082/SRR2936082
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936083/SRR2936083
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936084/SRR2936084
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936085/SRR2936085
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936086/SRR2936086
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936087/SRR2936087
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936088/SRR2936088
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936089/SRR2936089
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936090/SRR2936090
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936091/SRR2936091
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936092/SRR2936092
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936093/SRR2936093
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936094/SRR2936094
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936095/SRR2936095
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936096/SRR2936096
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936098/SRR2936098
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936099/SRR2936099
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936100/SRR2936100
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936101/SRR2936101
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936102/C1-1772096-136_R297_L8_1_C05_TGATTACC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936103/SRR2936103
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936104/SRR2936104
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936105/SRR2936105
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936106/SRR2936106
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936107/SRR2936107
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936108/SRR2936108
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936109/SRR2936109
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936110/SRR2936110
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936111/SRR2936111
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936112/SRR2936112
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936113/SRR2936113
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936114/SRR2936114
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936115/SRR2936115
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936116/SRR2936116
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936117/SRR2936117
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936118/SRR2936118
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936119/SRR2936119
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936120/SRR2936120
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936121/SRR2936121
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936123/SRR2936123
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936124/SRR2936124
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936125/SRR2936125
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936126/SRR2936126
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936127/SRR2936127
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936128/SRR2936128
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936129/SRR2936129
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936130/SRR2936130
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936131/SRR2936131
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936132/SRR2936132
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936133/SRR2936133
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936134/SRR2936134
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936135/SRR2936135
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936136/SRR2936136
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936137/SRR2936137
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936138/SRR2936138
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936139/SRR2936139
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936140/SRR2936140
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936141/SRR2936141
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936142/SRR2936142
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936143/SRR2936143
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936145/SRR2936145
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936146/SRR2936146
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936147/SRR2936147
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936148/SRR2936148
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936149/SRR2936149
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936150/SRR2936150
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936151/SRR2936151
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936152/SRR2936152
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936153/SRR2936153
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936154/SRR2936154
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936156/SRR2936156
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936157/SRR2936157
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936158/SRR2936158
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936159/SRR2936159
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936160/SRR2936160
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936161/SRR2936161
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936162/SRR2936162
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936163/SRR2936163
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936164/SRR2936164
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936165/SRR2936165
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936166/SRR2936166
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936167/SRR2936167
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936168/SRR2936168
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936169/SRR2936169
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936170/C1-1772096-138_R297_L7_1_E08_GAACTGGT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936172/SRR2936172
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936174/SRR2936174
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936175/SRR2936175
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936176/SRR2936176
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936177/SRR2936177
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936178/SRR2936178
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936179/SRR2936179
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936180/SRR2936180
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936181/SRR2936181
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936182/SRR2936182
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936183/SRR2936183
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936184/SRR2936184
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936185/SRR2936185
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936186/SRR2936186
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936187/C1-1772096-138_R297_L7_1_G07_AGTGAGTG.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936189/SRR2936189
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936191/SRR2936191
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936192/SRR2936192
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936193/SRR2936193
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936194/SRR2936194
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936195/SRR2936195
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936196/SRR2936196
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936197/SRR2936197
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936198/SRR2936198
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936199/SRR2936199
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936200/SRR2936200
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936201/SRR2936201
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936202/SRR2936202
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936203/SRR2936203
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936204/SRR2936204
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936205/SRR2936205
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936206/SRR2936206
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936207/SRR2936207
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936208/SRR2936208
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936209/SRR2936209
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936210/SRR2936210
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936212/SRR2936212
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936213/SRR2936213
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936214/SRR2936214
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936215/SRR2936215
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936216/SRR2936216
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936217/SRR2936217
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936218/SRR2936218
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936219/SRR2936219
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936220/SRR2936220
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936221/SRR2936221
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936222/SRR2936222
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936224/SRR2936224
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936225/SRR2936225
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936226/SRR2936226
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936227/SRR2936227
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936228/SRR2936228
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936229/SRR2936229
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936230/SRR2936230
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936232/SRR2936232
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936233/SRR2936233
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936259/SRR2936259
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936260/SRR2936260
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936261/SRR2936261
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936262/SRR2936262
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936263/SRR2936263
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936264/SRR2936264
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936265/SRR2936265
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936266/SRR2936266
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936267/SRR2936267
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936268/SRR2936268
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936269/SRR2936269
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936271/SRR2936271
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936272/SRR2936272
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936273/SRR2936273
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936274/SRR2936274
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936275/SRR2936275
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936276/SRR2936276
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936277/SRR2936277
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936278/SRR2936278
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936279/SRR2936279
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936280/C1-1772096-140_R297_L8_1_D12_GGACAATC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936281/SRR2936281
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936282/SRR2936282
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936283/SRR2936283
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936284/SRR2936284
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936285/SRR2936285
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936286/SRR2936286
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936287/SRR2936287
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936288/SRR2936288
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936289/SRR2936289
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936290/SRR2936290
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936291/SRR2936291
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936292/SRR2936292
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936293/SRR2936293
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936294/SRR2936294
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936295/SRR2936295
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936296/SRR2936296
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936297/SRR2936297
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936298/SRR2936298
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936299/SRR2936299
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936300/SRR2936300
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936301/SRR2936301
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936302/SRR2936302
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936303/SRR2936303
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936304/SRR2936304
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936307/SRR2936307
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936308/SRR2936308
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936310/SRR2936310
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936311/SRR2936311
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936312/SRR2936312
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936313/SRR2936313
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936314/SRR2936314
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936315/SRR2936315
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936316/SRR2936316
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936317/SRR2936317
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936318/SRR2936318
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936319/SRR2936319
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936321/SRR2936321
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936322/SRR2936322
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936323/SRR2936323
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936325/SRR2936325
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936326/SRR2936326
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936327/SRR2936327
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936329/SRR2936329
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936330/SRR2936330
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936331/SRR2936331
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936332/SRR2936332
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936333/SRR2936333
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936334/SRR2936334
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936335/SRR2936335
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936336/SRR2936336
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936337/SRR2936337
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936338/SRR2936338
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936339/SRR2936339
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936340/SRR2936340
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936341/SRR2936341
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936343/SRR2936343
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936344/SRR2936344
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936345/SRR2936345
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936346/SRR2936346
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936347/SRR2936347
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936348/SRR2936348
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936349/SRR2936349
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936350/SRR2936350
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936352/SRR2936352
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936353/SRR2936353
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936354/SRR2936354
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936355/SRR2936355
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936356/SRR2936356
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936357/SRR2936357
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936358/SRR2936358
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936359/SRR2936359
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936360/SRR2936360
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936361/SRR2936361
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936362/SRR2936362
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936363/SRR2936363
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936364/SRR2936364
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936365/SRR2936365
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936366/SRR2936366
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936367/SRR2936367
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936368/SRR2936368
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936369/SRR2936369
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936370/SRR2936370
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936371/SRR2936371
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936372/C1-1772096-144_R297_L5_1_C08_GACAACCA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936374/SRR2936374
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936375/SRR2936375
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936376/SRR2936376
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936378/SRR2936378
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936379/SRR2936379
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936380/SRR2936380
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936381/SRR2936381
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936382/SRR2936382
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936383/SRR2936383
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936384/SRR2936384
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936386/SRR2936386
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936387/SRR2936387
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936388/SRR2936388
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936389/SRR2936389
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936390/SRR2936390
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936391/SRR2936391
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936392/SRR2936392
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936393/SRR2936393
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936395/SRR2936395
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936396/SRR2936396
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936397/SRR2936397
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936398/SRR2936398
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936399/SRR2936399
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936401/SRR2936401
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936402/SRR2936402
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936403/SRR2936403
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936404/SRR2936404
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936405/SRR2936405
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936406/SRR2936406
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936407/SRR2936407
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936408/SRR2936408
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936409/SRR2936409
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936410/SRR2936410
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936412/SRR2936412
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936413/SRR2936413
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936414/SRR2936414
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936415/SRR2936415
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936416/SRR2936416
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936417/SRR2936417
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936418/SRR2936418
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936420/SRR2936420
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936422/SRR2936422
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936423/SRR2936423
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936424/SRR2936424
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936425/SRR2936425
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936427/SRR2936427
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936428/SRR2936428
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936429/SRR2936429
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936430/SRR2936430
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936431/SRR2936431
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936432/SRR2936432
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936433/SRR2936433
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936434/SRR2936434
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936435/SRR2936435
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936436/SRR2936436
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936437/SRR2936437
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936439/SRR2936439
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936440/SRR2936440
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936441/SRR2936441
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936442/SRR2936442
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936443/SRR2936443
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936444/SRR2936444
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936445/SRR2936445
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936446/SRR2936446
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936447/SRR2936447
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936448/SRR2936448
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936449/SRR2936449
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936450/SRR2936450
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936451/SRR2936451
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936452/SRR2936452
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936453/SRR2936453
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936454/SRR2936454
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936455/SRR2936455
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936457/SRR2936457
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936458/SRR2936458
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936459/SRR2936459
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936460/SRR2936460
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936461/SRR2936461
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936463/SRR2936463
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936465/SRR2936465
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936466/SRR2936466
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936467/SRR2936467
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936469/SRR2936469
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936470/SRR2936470
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936471/SRR2936471
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936472/SRR2936472
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936473/SRR2936473
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936474/SRR2936474
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936475/SRR2936475
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936476/SRR2936476
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936477/SRR2936477
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936480/SRR2936480
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936482/SRR2936482
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936483/SRR2936483
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936484/SRR2936484
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936487/SRR2936487
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936493/SRR2936493
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936495/SRR2936495
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936497/SRR2936497
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936500/SRR2936500
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936501/SRR2936501
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936502/SRR2936502
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936503/SRR2936503
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936505/SRR2936505
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936507/SRR2936507
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936508/SRR2936508
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936509/SRR2936509
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936510/SRR2936510
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936512/SRR2936512
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936513/SRR2936513
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936514/SRR2936514
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936515/SRR2936515
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936516/SRR2936516
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936519/SRR2936519
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936520/SRR2936520
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936521/SRR2936521
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936522/SRR2936522
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936523/SRR2936523
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936524/SRR2936524
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936525/SRR2936525
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936526/SRR2936526
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936527/SRR2936527
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936528/SRR2936528
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936529/SRR2936529
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936530/SRR2936530
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936531/SRR2936531
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936532/SRR2936532
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936533/SRR2936533
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936534/SRR2936534
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936535/SRR2936535
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936539/SRR2936539
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936540/SRR2936540
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936541/SRR2936541
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936542/SRR2936542
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936543/SRR2936543
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936544/SRR2936544
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936545/SRR2936545
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936546/SRR2936546
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936547/SRR2936547
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936549/SRR2936549
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936550/SRR2936550
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936551/SRR2936551
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936552/SRR2936552
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936553/SRR2936553
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936555/SRR2936555
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936556/SRR2936556
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936557/SRR2936557
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936558/SRR2936558
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936559/SRR2936559
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936560/SRR2936560
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936561/SRR2936561
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936562/SRR2936562
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936563/SRR2936563
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936564/SRR2936564
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936565/SRR2936565
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936566/SRR2936566
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936567/SRR2936567
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936568/SRR2936568
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936569/SRR2936569
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936570/SRR2936570
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936572/SRR2936572
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936573/SRR2936573
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936574/SRR2936574
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936575/SRR2936575
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936576/SRR2936576
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936577/SRR2936577
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936579/SRR2936579
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936580/SRR2936580
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936581/SRR2936581
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936582/SRR2936582
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936583/SRR2936583
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936584/SRR2936584
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936585/SRR2936585
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936586/SRR2936586
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936588/SRR2936588
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936591/SRR2936591
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936592/SRR2936592
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936593/SRR2936593
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936594/SRR2936594
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936595/SRR2936595
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936596/SRR2936596
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936597/SRR2936597
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936598/SRR2936598
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936599/SRR2936599
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936600/SRR2936600
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936601/SRR2936601
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936603/SRR2936603
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936604/SRR2936604
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936606/SRR2936606
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936607/SRR2936607
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936608/SRR2936608
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936609/SRR2936609
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936611/SRR2936611
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936612/SRR2936612
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936613/SRR2936613
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936614/SRR2936614
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936615/SRR2936615
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936616/SRR2936616
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936618/SRR2936618
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936619/SRR2936619
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936620/SRR2936620
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936621/SRR2936621
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936622/SRR2936622
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936623/SRR2936623
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936624/SRR2936624
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936625/SRR2936625
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936626/SRR2936626
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936628/SRR2936628
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936629/SRR2936629
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936630/SRR2936630
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936631/SRR2936631
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936632/SRR2936632
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936633/SRR2936633
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936634/SRR2936634
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936635/SRR2936635
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936636/SRR2936636
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936637/SRR2936637
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936638/SRR2936638
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936639/SRR2936639
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936640/SRR2936640
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936641/SRR2936641
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936642/SRR2936642
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936643/SRR2936643
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936645/SRR2936645
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936646/SRR2936646
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936647/SRR2936647
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936648/SRR2936648
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936649/SRR2936649
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936650/SRR2936650
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936651/SRR2936651
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936652/SRR2936652
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936654/SRR2936654
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936655/SRR2936655
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936657/SRR2936657
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936659/SRR2936659
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936660/SRR2936660
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936661/SRR2936661
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936662/SRR2936662
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936663/SRR2936663
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936664/SRR2936664
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936665/SRR2936665
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936668/C1-1772096-171_R297_L4_1_B11_ATTCGTCC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936669/SRR2936669
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936670/SRR2936670
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936673/SRR2936673
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936674/SRR2936674
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936675/SRR2936675
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936676/SRR2936676
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936679/SRR2936679
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936680/SRR2936680
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936681/SRR2936681
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936682/SRR2936682
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936684/SRR2936684
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936685/SRR2936685
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936687/SRR2936687
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936688/SRR2936688
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936690/SRR2936690
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936691/SRR2936691
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936693/SRR2936693
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936694/SRR2936694
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936695/SRR2936695
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936696/SRR2936696
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936698/SRR2936698
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936699/SRR2936699
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936700/SRR2936700
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936701/SRR2936701
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936703/SRR2936703
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936704/SRR2936704
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936705/SRR2936705
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936706/SRR2936706
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936707/SRR2936707
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936708/SRR2936708
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936710/SRR2936710
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936711/SRR2936711
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936712/SRR2936712
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936713/SRR2936713
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936714/SRR2936714
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936715/SRR2936715
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936716/SRR2936716
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936717/SRR2936717
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936718/SRR2936718
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936719/SRR2936719
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936720/SRR2936720
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936721/SRR2936721
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936722/SRR2936722
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936723/SRR2936723
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936724/SRR2936724
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936726/SRR2936726
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936727/SRR2936727
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936728/SRR2936728
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936729/SRR2936729
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936731/SRR2936731
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936732/SRR2936732
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936733/SRR2936733
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936734/SRR2936734
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936735/SRR2936735
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936738/SRR2936738
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936739/SRR2936739
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936740/SRR2936740
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936742/SRR2936742
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936743/SRR2936743
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936745/SRR2936745
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936746/SRR2936746
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936747/SRR2936747
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936748/SRR2936748
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936749/SRR2936749
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936750/SRR2936750
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936751/SRR2936751
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936752/SRR2936752
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936754/SRR2936754
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936755/SRR2936755
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936756/SRR2936756
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936757/SRR2936757
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936758/SRR2936758
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936759/SRR2936759
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936761/SRR2936761
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936762/C1-1772096-173_R297_L6_1_C12_GAGGATCA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936763/SRR2936763
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936764/SRR2936764
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936765/SRR2936765
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936767/SRR2936767
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936768/SRR2936768
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936769/SRR2936769
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936771/SRR2936771
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936772/SRR2936772
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936774/SRR2936774
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936776/SRR2936776
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936777/SRR2936777
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936778/SRR2936778
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936780/SRR2936780
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936785/SRR2936785
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936787/SRR2936787
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936788/SRR2936788
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936791/SRR2936791
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936792/SRR2936792
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936794/SRR2936794
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936797/SRR2936797
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936798/SRR2936798
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936799/SRR2936799
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936800/SRR2936800
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936801/SRR2936801
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936802/SRR2936802
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936805/SRR2936805
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936807/SRR2936807
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936814/SRR2936814
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936816/SRR2936816

# --- Additional data files ---
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934320/SRR2934320
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934321/SRR2934321
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934322/SRR2934322
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934323/SRR2934323
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934324/SRR2934324
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934325/SRR2934325
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934326/SRR2934326
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934327/SRR2934327
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934328/SRR2934328
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934329/SRR2934329
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934331/SRR2934331
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934332/SRR2934332
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934333/SRR2934333
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934334/SRR2934334
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934335/SRR2934335
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934336/SRR2934336
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934337/SRR2934337
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934338/SRR2934338
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934340/SRR2934340
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934341/SRR2934341
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934342/SRR2934342
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934343/SRR2934343
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934344/SRR2934344
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934345/SRR2934345
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934346/SRR2934346
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934347/SRR2934347
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934348/SRR2934348
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934349/SRR2934349
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934350/SRR2934350
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934351/SRR2934351
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934354/SRR2934354
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934355/SRR2934355
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934356/SRR2934356
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934357/SRR2934357
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934358/SRR2934358
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934359/SRR2934359
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934360/SRR2934360
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934361/SRR2934361
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934362/SRR2934362
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934363/SRR2934363
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934364/SRR2934364
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934365/SRR2934365
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934366/SRR2934366
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934367/SRR2934367
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934368/SRR2934368
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934369/SRR2934369
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934370/SRR2934370
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934371/SRR2934371
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934372/SRR2934372
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934373/SRR2934373
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934374/SRR2934374
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934376/SRR2934376
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934377/SRR2934377
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934378/SRR2934378
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934379/SRR2934379
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934380/SRR2934380
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934381/SRR2934381
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934382/SRR2934382
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934383/SRR2934383
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934384/SRR2934384
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934385/SRR2934385
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934386/SRR2934386
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934387/SRR2934387
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934388/SRR2934388
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934389/SRR2934389
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934390/SRR2934390
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934391/SRR2934391
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934393/SRR2934393
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934394/SRR2934394
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934396/SRR2934396
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934399/SRR2934399
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934400/SRR2934400
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934401/SRR2934401
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934402/SRR2934402
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934404/SRR2934404
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934405/SRR2934405
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934406/SRR2934406
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934407/SRR2934407
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934409/SRR2934409
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934411/SRR2934411
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934412/SRR2934412
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934413/SRR2934413
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934414/SRR2934414
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934415/SRR2934415
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934416/SRR2934416
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934417/SRR2934417
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934418/SRR2934418
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934419/SRR2934419
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934420/SRR2934420
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934421/SRR2934421
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934422/SRR2934422
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934423/SRR2934423
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934424/SRR2934424
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934425/SRR2934425
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934426/SRR2934426
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934427/SRR2934427
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934429/SRR2934429
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934430/SRR2934430
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934431/SRR2934431
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934432/SRR2934432
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934433/SRR2934433
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934520/SRR2934520
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934521/SRR2934521
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934522/SRR2934522
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934523/SRR2934523
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934525/SRR2934525
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934526/SRR2934526
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934527/SRR2934527
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934529/SRR2934529
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934530/SRR2934530
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934531/SRR2934531
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934532/SRR2934532
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934533/SRR2934533
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934534/SRR2934534
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934536/SRR2934536
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934537/SRR2934537
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934538/SRR2934538
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934540/SRR2934540
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934541/SRR2934541
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934542/SRR2934542
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934546/SRR2934546
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934549/SRR2934549
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934551/SRR2934551
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934554/SRR2934554
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934555/SRR2934555
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934556/SRR2934556
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934557/SRR2934557
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934560/SRR2934560
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934561/SRR2934561
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934563/SRR2934563
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934564/SRR2934564
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934565/SRR2934565
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934567/SRR2934567
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934569/SRR2934569
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934570/SRR2934570
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934571/SRR2934571
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934572/SRR2934572
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934573/SRR2934573
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934574/SRR2934574
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934575/SRR2934575
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934576/SRR2934576
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934577/SRR2934577
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934578/SRR2934578
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934579/SRR2934579
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934580/SRR2934580
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934581/SRR2934581
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934582/SRR2934582
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934583/SRR2934583
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934584/SRR2934584
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934585/SRR2934585
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934586/SRR2934586
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934587/SRR2934587
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934588/SRR2934588
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934589/SRR2934589
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934590/SRR2934590
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934591/SRR2934591
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934592/SRR2934592
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934593/SRR2934593
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934594/SRR2934594
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934595/SRR2934595
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934596/SRR2934596
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934600/SRR2934600
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934602/SRR2934602
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934603/SRR2934603
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934604/C1-1772084-017_R297_L7_1_F11_AGAAGCAG.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934605/SRR2934605
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934606/SRR2934606
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934607/SRR2934607
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934608/SRR2934608
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934609/SRR2934609
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934610/SRR2934610
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934611/SRR2934611
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934612/SRR2934612
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934613/SRR2934613
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934614/SRR2934614
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934615/SRR2934615
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934616/SRR2934616
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934617/SRR2934617
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934618/SRR2934618
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934619/SRR2934619
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934620/SRR2934620
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934623/SRR2934623
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934624/SRR2934624
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934625/SRR2934625
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934627/SRR2934627
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934629/SRR2934629
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934631/SRR2934631
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934635/SRR2934635
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934636/SRR2934636
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934637/SRR2934637
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934640/SRR2934640
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934641/SRR2934641
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934642/SRR2934642
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934643/SRR2934643
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934645/SRR2934645
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934646/SRR2934646
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934647/SRR2934647
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934648/SRR2934648
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934649/SRR2934649
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934650/SRR2934650
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934651/SRR2934651
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934656/SRR2934656
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934657/SRR2934657
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934660/SRR2934660
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934661/SRR2934661
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934662/SRR2934662
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934663/SRR2934663
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934664/SRR2934664
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934665/SRR2934665
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934666/SRR2934666
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934667/SRR2934667
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934668/SRR2934668
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934669/SRR2934669
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934670/SRR2934670
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934671/SRR2934671
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934672/SRR2934672
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934675/SRR2934675
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934677/SRR2934677
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934678/SRR2934678
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934679/SRR2934679
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934680/SRR2934680
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934681/SRR2934681
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934682/SRR2934682
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934683/SRR2934683
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934684/SRR2934684
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934686/SRR2934686
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934687/SRR2934687
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934688/SRR2934688
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934689/SRR2934689
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934690/SRR2934690
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934691/SRR2934691
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934692/SRR2934692
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934693/SRR2934693
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934694/SRR2934694
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934695/SRR2934695
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934696/SRR2934696
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934697/SRR2934697
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934699/SRR2934699
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934700/SRR2934700
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934701/SRR2934701
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934702/SRR2934702
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934703/C1-1772084-021_R297_L7_1_F10_ATGCCTGT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934704/SRR2934704
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934705/SRR2934705
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934706/SRR2934706
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934707/SRR2934707
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934709/SRR2934709
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934711/SRR2934711
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934714/SRR2934714
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934715/SRR2934715
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934716/SRR2934716
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934719/SRR2934719
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934722/SRR2934722
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934723/SRR2934723
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934724/SRR2934724
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934725/SRR2934725
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934726/SRR2934726
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934728/SRR2934728
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934729/SRR2934729
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934730/SRR2934730
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934731/SRR2934731
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934732/SRR2934732
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934733/SRR2934733
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934734/SRR2934734
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934736/SRR2934736
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934737/SRR2934737
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934738/SRR2934738
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934739/SRR2934739
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934741/SRR2934741
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934742/SRR2934742
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934744/SRR2934744
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934745/SRR2934745
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934748/SRR2934748
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934749/SRR2934749
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934750/SRR2934750
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934751/SRR2934751
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934752/SRR2934752
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934754/SRR2934754
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934756/SRR2934756
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934757/SRR2934757
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934760/SRR2934760
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934761/SRR2934761
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934762/SRR2934762
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934763/SRR2934763
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934765/SRR2934765
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934766/C1-1772089-187_R279_L4_1_A07_TGAGGCAT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934767/SRR2934767
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934769/SRR2934769
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934771/SRR2934771
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934772/SRR2934772
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934773/SRR2934773
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934774/SRR2934774
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934775/SRR2934775
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934776/SRR2934776
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934777/SRR2934777
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934778/SRR2934778
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934779/SRR2934779
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934780/SRR2934780
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934782/SRR2934782
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934783/SRR2934783
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934784/SRR2934784
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934785/SRR2934785
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934786/SRR2934786
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934787/SRR2934787
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934788/SRR2934788
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934789/SRR2934789
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2934791/C1-1772089-187_R279_L4_1_G05_TCCGAGAA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934793/SRR2934793
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934794/SRR2934794
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934795/SRR2934795
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934796/SRR2934796
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934797/SRR2934797
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934800/SRR2934800
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934801/SRR2934801
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934804/SRR2934804
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934806/SRR2934806
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934807/SRR2934807
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934808/SRR2934808
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934809/SRR2934809
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934811/SRR2934811
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934813/SRR2934813
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934814/SRR2934814
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934815/SRR2934815
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934817/SRR2934817
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934818/SRR2934818
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934821/SRR2934821
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934822/SRR2934822
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934823/SRR2934823
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934824/SRR2934824
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934825/SRR2934825
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934826/SRR2934826
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934827/SRR2934827
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934829/SRR2934829
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934830/SRR2934830
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934831/SRR2934831
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934833/SRR2934833
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934835/SRR2934835
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934836/SRR2934836
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934837/SRR2934837
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934839/SRR2934839
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934840/SRR2934840
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934841/SRR2934841
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934842/SRR2934842
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934843/SRR2934843
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934844/SRR2934844
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934845/SRR2934845
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934846/SRR2934846
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934847/SRR2934847
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934848/SRR2934848
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934849/SRR2934849
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934850/SRR2934850
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934851/SRR2934851
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934852/SRR2934852
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934853/SRR2934853
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934854/SRR2934854
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934855/SRR2934855
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934856/SRR2934856
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934857/SRR2934857
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934858/SRR2934858
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934859/SRR2934859
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934860/SRR2934860
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934861/SRR2934861
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934863/SRR2934863
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934864/SRR2934864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934865/SRR2934865
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934867/SRR2934867
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934868/SRR2934868
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934869/SRR2934869
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934870/SRR2934870
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934871/SRR2934871
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934876/SRR2934876
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934877/SRR2934877
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934878/SRR2934878
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934879/SRR2934879
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934880/SRR2934880
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934881/SRR2934881
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934884/SRR2934884
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934885/SRR2934885
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934886/SRR2934886
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934887/SRR2934887
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934889/SRR2934889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934890/SRR2934890
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934891/SRR2934891
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934892/SRR2934892
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934893/SRR2934893
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934894/SRR2934894
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934895/SRR2934895
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934896/SRR2934896
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934898/SRR2934898
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934899/SRR2934899
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934900/SRR2934900
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934902/SRR2934902
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934903/SRR2934903
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934904/SRR2934904
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934905/SRR2934905
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934912/SRR2934912
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934913/SRR2934913
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934915/SRR2934915
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934916/SRR2934916
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934917/SRR2934917
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934918/SRR2934918
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934919/SRR2934919
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934920/SRR2934920
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934922/SRR2934922
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934923/SRR2934923
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934924/SRR2934924
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934925/SRR2934925
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934926/SRR2934926
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934927/SRR2934927
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934928/SRR2934928
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934929/SRR2934929
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934931/SRR2934931
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934933/SRR2934933
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934934/SRR2934934
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934935/SRR2934935
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934936/SRR2934936
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934939/SRR2934939
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934940/SRR2934940
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934941/SRR2934941
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934942/SRR2934942
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934945/SRR2934945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934946/SRR2934946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934950/SRR2934950
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934951/SRR2934951
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934953/SRR2934953
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934955/SRR2934955
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934956/SRR2934956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934957/SRR2934957
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934958/SRR2934958
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934960/SRR2934960
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934962/SRR2934962
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934963/SRR2934963
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934964/SRR2934964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934965/SRR2934965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934966/SRR2934966
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934967/SRR2934967
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934968/SRR2934968
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934969/SRR2934969
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934972/SRR2934972
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934973/SRR2934973
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934976/SRR2934976
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934977/SRR2934977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934978/SRR2934978
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934979/SRR2934979
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934980/SRR2934980
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934981/SRR2934981
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934982/SRR2934982
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934983/SRR2934983
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934984/SRR2934984
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934985/SRR2934985
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934987/SRR2934987
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934989/SRR2934989
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934990/SRR2934990
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934991/SRR2934991
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934992/SRR2934992
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934993/SRR2934993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934994/SRR2934994
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934995/SRR2934995
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934996/SRR2934996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934997/SRR2934997
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934998/SRR2934998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934999/SRR2934999
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935000/SRR2935000
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935001/SRR2935001
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935002/SRR2935002
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935004/SRR2935004
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935005/SRR2935005
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935006/SRR2935006
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935008/SRR2935008
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935010/SRR2935010
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935012/SRR2935012
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935013/SRR2935013
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935014/SRR2935014
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935015/SRR2935015
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935016/SRR2935016
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935018/SRR2935018
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935019/SRR2935019
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935020/SRR2935020
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935022/SRR2935022
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935023/SRR2935023
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935024/SRR2935024
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935025/SRR2935025
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935027/SRR2935027
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935029/SRR2935029
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935030/SRR2935030
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935031/SRR2935031
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935032/SRR2935032
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935035/SRR2935035
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935036/SRR2935036
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935037/SRR2935037
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935038/SRR2935038
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935039/SRR2935039
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935041/SRR2935041
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935042/SRR2935042
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935043/SRR2935043
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935044/SRR2935044
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935045/SRR2935045
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935046/SRR2935046
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935047/SRR2935047
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935048/SRR2935048
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935049/SRR2935049
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935050/SRR2935050
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935051/SRR2935051
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935052/SRR2935052
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935053/SRR2935053
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935054/SRR2935054
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935055/SRR2935055
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935056/SRR2935056
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935057/SRR2935057
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935058/SRR2935058
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935059/SRR2935059
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935061/SRR2935061
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935062/SRR2935062
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935063/SRR2935063
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935064/SRR2935064
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935065/SRR2935065
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935066/SRR2935066
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935067/SRR2935067
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935068/SRR2935068
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935069/SRR2935069
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935070/SRR2935070
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935071/SRR2935071
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935075/SRR2935075
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935077/SRR2935077
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935078/SRR2935078
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935079/SRR2935079
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935080/SRR2935080
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935081/SRR2935081
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935082/SRR2935082
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935083/SRR2935083
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935084/SRR2935084
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935085/SRR2935085
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935086/SRR2935086
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935087/SRR2935087
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935088/SRR2935088
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935089/SRR2935089
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935090/SRR2935090
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935091/SRR2935091
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935092/SRR2935092
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935093/SRR2935093
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935094/SRR2935094
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935095/SRR2935095
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935097/SRR2935097
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935098/SRR2935098
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935099/SRR2935099
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935100/SRR2935100
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935101/SRR2935101
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935102/SRR2935102
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935103/SRR2935103
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935104/SRR2935104
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935106/SRR2935106
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935107/SRR2935107
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935108/SRR2935108
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935109/SRR2935109
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935110/SRR2935110
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935111/SRR2935111
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935112/SRR2935112
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935113/SRR2935113
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935114/SRR2935114
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935115/SRR2935115
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935116/SRR2935116
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935119/SRR2935119
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935120/SRR2935120
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935121/SRR2935121
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935122/SRR2935122
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935124/SRR2935124
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935125/SRR2935125
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935126/SRR2935126
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935128/SRR2935128
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935129/SRR2935129
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935130/SRR2935130
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935131/SRR2935131
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935133/SRR2935133
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935135/SRR2935135
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935136/SRR2935136
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935138/SRR2935138
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935139/SRR2935139
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935141/SRR2935141
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935145/SRR2935145
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935146/SRR2935146
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935147/SRR2935147
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935148/SRR2935148
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935150/SRR2935150
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935152/SRR2935152
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935153/SRR2935153
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935154/SRR2935154
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935156/SRR2935156
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935157/SRR2935157
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935158/SRR2935158
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935159/SRR2935159
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935161/SRR2935161
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935162/SRR2935162
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935163/SRR2935163
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935165/SRR2935165
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935166/SRR2935166
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935167/SRR2935167
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935168/SRR2935168
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935169/SRR2935169
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935170/SRR2935170
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935171/SRR2935171
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935172/SRR2935172
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935174/SRR2935174
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935175/SRR2935175
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935176/SRR2935176
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935177/SRR2935177
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935178/SRR2935178
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935179/SRR2935179
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935181/SRR2935181
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935182/SRR2935182
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935183/SRR2935183
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935184/SRR2935184
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935185/SRR2935185
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935186/SRR2935186
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935187/SRR2935187
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935190/SRR2935190
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935191/SRR2935191
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935193/SRR2935193
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935194/SRR2935194
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935195/SRR2935195
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935196/SRR2935196
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935197/SRR2935197
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935199/SRR2935199
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935200/SRR2935200
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935202/SRR2935202
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935203/SRR2935203
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935204/SRR2935204
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935207/SRR2935207
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935208/SRR2935208
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935209/SRR2935209
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935211/SRR2935211
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935212/SRR2935212
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935213/SRR2935213
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935214/SRR2935214
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935215/SRR2935215
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935216/SRR2935216
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935218/SRR2935218
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935219/SRR2935219
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935220/SRR2935220
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935222/SRR2935222
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935223/SRR2935223
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935224/SRR2935224
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935225/SRR2935225
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935228/SRR2935228
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935230/SRR2935230
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935232/SRR2935232
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935234/SRR2935234
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935237/SRR2935237
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935238/SRR2935238
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935240/SRR2935240
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935241/SRR2935241
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935242/SRR2935242
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935244/SRR2935244
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935245/SRR2935245
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935246/SRR2935246
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935248/SRR2935248
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935249/SRR2935249
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935250/SRR2935250
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935252/SRR2935252
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935253/SRR2935253
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935255/SRR2935255
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935257/SRR2935257
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935258/SRR2935258
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935259/SRR2935259
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935260/SRR2935260
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935261/SRR2935261
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935262/SRR2935262
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935263/SRR2935263
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935264/SRR2935264
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935266/SRR2935266
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935267/SRR2935267
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935268/SRR2935268
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935269/SRR2935269
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935270/SRR2935270
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935271/SRR2935271
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935272/SRR2935272
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935273/SRR2935273
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935275/SRR2935275
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935276/SRR2935276
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935278/SRR2935278
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935279/SRR2935279
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935280/SRR2935280
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935281/SRR2935281
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935282/SRR2935282
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935283/SRR2935283
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935284/SRR2935284
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935285/C1-1772092-012_R278_L6_1_E06_GTTTGCTC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935286/SRR2935286
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935287/SRR2935287
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935288/SRR2935288
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935289/SRR2935289
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935290/SRR2935290
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935292/SRR2935292
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935293/SRR2935293
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935294/SRR2935294
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935297/SRR2935297
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935298/SRR2935298
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935299/SRR2935299
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935300/SRR2935300
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935301/SRR2935301
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935302/SRR2935302
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935303/SRR2935303
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935304/SRR2935304
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935305/SRR2935305
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935306/SRR2935306
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935307/SRR2935307
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935308/SRR2935308
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935309/SRR2935309
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935310/SRR2935310
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935311/SRR2935311
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935312/SRR2935312
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935313/SRR2935313
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935314/SRR2935314
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935315/SRR2935315
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935316/SRR2935316
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935317/SRR2935317
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935318/SRR2935318
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935319/SRR2935319
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935320/SRR2935320
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935321/SRR2935321
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935322/SRR2935322
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935324/SRR2935324
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935325/SRR2935325
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935326/SRR2935326
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935328/SRR2935328
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935329/SRR2935329
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935330/SRR2935330
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935331/SRR2935331
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935332/SRR2935332
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935333/SRR2935333
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935334/SRR2935334
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935335/SRR2935335
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935336/SRR2935336
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935337/SRR2935337
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935338/SRR2935338
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935339/SRR2935339
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935340/SRR2935340
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935341/SRR2935341
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935342/SRR2935342
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935343/SRR2935343
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935344/SRR2935344
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935345/SRR2935345
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935346/SRR2935346
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935347/SRR2935347
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935348/SRR2935348
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935351/SRR2935351
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935354/SRR2935354
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935357/SRR2935357
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935358/SRR2935358
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935359/SRR2935359
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935361/SRR2935361
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935362/SRR2935362
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935363/SRR2935363
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935364/SRR2935364
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935365/SRR2935365
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935369/SRR2935369
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935370/SRR2935370
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935371/SRR2935371
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935373/SRR2935373
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935375/SRR2935375
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935376/SRR2935376
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935377/SRR2935377
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935378/SRR2935378
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935379/SRR2935379
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935380/SRR2935380
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935381/SRR2935381
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935382/SRR2935382
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935383/SRR2935383
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935384/SRR2935384
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935385/SRR2935385
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935386/SRR2935386
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935387/SRR2935387
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935388/SRR2935388
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935391/SRR2935391
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935395/SRR2935395
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935396/SRR2935396
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935398/SRR2935398
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935399/SRR2935399
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935400/SRR2935400
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935401/SRR2935401
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935402/SRR2935402
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935403/SRR2935403
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935404/SRR2935404
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935405/SRR2935405
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935407/SRR2935407
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935408/SRR2935408
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935409/SRR2935409
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935413/SRR2935413
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935414/SRR2935414
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935415/SRR2935415
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935417/SRR2935417
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935418/SRR2935418
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935419/SRR2935419
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935424/SRR2935424
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935425/SRR2935425
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935426/SRR2935426
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935428/SRR2935428
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935429/SRR2935429
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935431/SRR2935431
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935432/SRR2935432
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935436/SRR2935436
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935438/SRR2935438
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935440/SRR2935440
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935442/SRR2935442
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935449/SRR2935449
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935450/SRR2935450
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935451/SRR2935451
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935452/SRR2935452
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935454/SRR2935454
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935455/SRR2935455
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935456/SRR2935456
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935459/SRR2935459
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935462/SRR2935462
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935463/SRR2935463
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935464/SRR2935464
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935465/SRR2935465
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935466/SRR2935466
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935467/SRR2935467
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935468/SRR2935468
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935469/SRR2935469
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935470/SRR2935470
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935471/SRR2935471
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935472/SRR2935472
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935473/SRR2935473
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935475/SRR2935475
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935477/SRR2935477
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935478/SRR2935478
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935479/SRR2935479
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935481/SRR2935481
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935482/SRR2935482
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935483/SRR2935483
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935484/SRR2935484
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935485/SRR2935485
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935487/SRR2935487
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935488/SRR2935488
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935490/SRR2935490
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935491/SRR2935491
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935492/SRR2935492
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935495/SRR2935495
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935499/SRR2935499
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935500/SRR2935500
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935501/SRR2935501
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935504/SRR2935504
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935505/SRR2935505
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935506/SRR2935506
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935508/SRR2935508
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935510/SRR2935510
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935511/SRR2935511
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935512/SRR2935512
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935513/SRR2935513
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935514/SRR2935514
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935515/SRR2935515
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935516/SRR2935516
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935517/SRR2935517
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935518/SRR2935518
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935519/SRR2935519
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935520/SRR2935520
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935521/SRR2935521
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935522/SRR2935522
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935524/SRR2935524
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935525/SRR2935525
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935526/SRR2935526
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935527/SRR2935527
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935528/SRR2935528
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935529/SRR2935529
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935530/SRR2935530
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935531/C1-1772096-100_R295_L6_1_D06_GTGACCTA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935532/SRR2935532
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935533/SRR2935533
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935534/SRR2935534
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935535/SRR2935535
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935537/SRR2935537
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935538/SRR2935538
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935539/SRR2935539
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935540/SRR2935540
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935541/SRR2935541
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935542/SRR2935542
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935543/SRR2935543
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935544/SRR2935544
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935545/SRR2935545
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935546/SRR2935546
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935547/SRR2935547
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935548/SRR2935548
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935549/SRR2935549
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935550/SRR2935550
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935552/SRR2935552
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935553/SRR2935553
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935555/SRR2935555
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935556/SRR2935556
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935557/SRR2935557
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935559/SRR2935559
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935560/SRR2935560
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935561/SRR2935561
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935562/SRR2935562
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935563/SRR2935563
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935564/SRR2935564
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935565/SRR2935565
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935566/SRR2935566
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935567/SRR2935567
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935568/SRR2935568
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935570/SRR2935570
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935571/SRR2935571
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935573/SRR2935573
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935575/SRR2935575
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935576/SRR2935576
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935577/SRR2935577
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935578/SRR2935578
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935579/SRR2935579
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935580/SRR2935580
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935581/SRR2935581
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935582/SRR2935582
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935583/SRR2935583
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935587/SRR2935587
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935588/SRR2935588
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935589/SRR2935589
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935590/SRR2935590
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935591/SRR2935591
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935593/SRR2935593
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935594/SRR2935594
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935595/SRR2935595
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935597/SRR2935597
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935598/SRR2935598
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935599/SRR2935599
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935600/SRR2935600
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935603/SRR2935603
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935604/SRR2935604
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935605/SRR2935605
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935606/SRR2935606
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935607/SRR2935607
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935608/SRR2935608
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935609/C1-1772096-101_R293_L5_1_H01_ATCGTGGT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935610/SRR2935610
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935611/SRR2935611
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935613/SRR2935613
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935615/SRR2935615
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935616/SRR2935616
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935617/SRR2935617
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935618/SRR2935618
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935620/SRR2935620
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935621/SRR2935621
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935623/SRR2935623
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935627/SRR2935627
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935630/SRR2935630
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935631/SRR2935631
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935632/SRR2935632
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935634/SRR2935634
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935635/SRR2935635
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935639/SRR2935639
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935640/SRR2935640
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935641/SRR2935641
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935643/SRR2935643
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935645/SRR2935645
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935647/SRR2935647
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935648/SRR2935648
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935649/SRR2935649
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935650/SRR2935650
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935651/SRR2935651
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935652/SRR2935652
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935654/SRR2935654
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935655/SRR2935655
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935657/SRR2935657
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935658/SRR2935658
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935659/SRR2935659
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935662/SRR2935662
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935663/SRR2935663
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935664/SRR2935664
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935665/SRR2935665
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935666/SRR2935666
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935667/SRR2935667
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935668/SRR2935668
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935669/SRR2935669
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935670/SRR2935670
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935673/SRR2935673
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935674/SRR2935674
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935676/SRR2935676
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935678/SRR2935678
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935679/SRR2935679
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935680/SRR2935680
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935681/SRR2935681
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935682/SRR2935682
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935683/SRR2935683
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935684/SRR2935684
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935685/SRR2935685
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935686/SRR2935686
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935687/SRR2935687
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935688/SRR2935688
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935689/SRR2935689
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935690/SRR2935690
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935691/SRR2935691
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935692/SRR2935692
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935694/SRR2935694
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935696/SRR2935696
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935699/SRR2935699
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935700/SRR2935700
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935701/SRR2935701
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935702/SRR2935702
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935703/SRR2935703
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935704/SRR2935704
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935705/SRR2935705
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935709/SRR2935709
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935710/SRR2935710
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935711/SRR2935711
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935715/SRR2935715
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935717/SRR2935717
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935718/SRR2935718
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935720/SRR2935720
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935721/SRR2935721
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935722/SRR2935722
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935723/SRR2935723
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935725/SRR2935725
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935726/SRR2935726
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935727/SRR2935727
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935728/SRR2935728
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935729/SRR2935729
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935730/SRR2935730
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935731/SRR2935731
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935733/SRR2935733
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935734/SRR2935734
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935735/SRR2935735
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935736/SRR2935736
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935737/SRR2935737
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935738/SRR2935738
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935739/SRR2935739
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935740/SRR2935740
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935741/SRR2935741
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935743/SRR2935743
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935744/SRR2935744
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935746/SRR2935746
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935748/SRR2935748
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935749/SRR2935749
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935750/SRR2935750
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935751/SRR2935751
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935752/SRR2935752
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935753/SRR2935753
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935754/SRR2935754
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935755/SRR2935755
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935756/SRR2935756
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935757/SRR2935757
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935758/SRR2935758
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935759/SRR2935759
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935760/SRR2935760
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935761/SRR2935761
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935762/SRR2935762
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935763/SRR2935763
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935764/SRR2935764
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935765/SRR2935765
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935766/SRR2935766
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935767/SRR2935767
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935768/SRR2935768
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935769/SRR2935769
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935770/SRR2935770
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935771/SRR2935771
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935772/SRR2935772
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935775/SRR2935775
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935776/SRR2935776
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935778/SRR2935778
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935779/SRR2935779
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935780/SRR2935780
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935781/SRR2935781
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935782/SRR2935782
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935783/SRR2935783
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935784/SRR2935784
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935786/SRR2935786
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935787/SRR2935787
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935788/SRR2935788
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935789/SRR2935789
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935790/SRR2935790
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935791/SRR2935791
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935792/SRR2935792
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935793/SRR2935793
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935794/SRR2935794
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935795/SRR2935795
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935796/SRR2935796
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935797/SRR2935797
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935798/SRR2935798
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935800/SRR2935800
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935802/SRR2935802
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935805/SRR2935805
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935806/SRR2935806
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935808/SRR2935808
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935809/SRR2935809
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935810/SRR2935810
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935811/SRR2935811
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935816/SRR2935816
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935817/SRR2935817
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935818/SRR2935818
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935819/SRR2935819
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935820/SRR2935820
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935821/SRR2935821
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935823/SRR2935823
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935824/SRR2935824
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935825/SRR2935825
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935826/SRR2935826
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935827/SRR2935827
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935828/SRR2935828
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935829/SRR2935829
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935830/SRR2935830
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935831/SRR2935831
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935832/SRR2935832
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935833/SRR2935833
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935836/SRR2935836
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935837/SRR2935837
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935840/SRR2935840
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935841/SRR2935841
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935842/SRR2935842
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935844/SRR2935844
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935845/SRR2935845
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935846/SRR2935846
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935847/SRR2935847
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935848/SRR2935848
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935849/SRR2935849
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935850/SRR2935850
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935851/SRR2935851
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935852/SRR2935852
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935853/SRR2935853
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935855/SRR2935855
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935856/SRR2935856
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935857/SRR2935857
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935859/SRR2935859
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935860/SRR2935860
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935862/SRR2935862
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935863/SRR2935863
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935864/SRR2935864
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935865/SRR2935865
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935866/SRR2935866
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935867/SRR2935867
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935868/SRR2935868
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935869/SRR2935869
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935870/SRR2935870
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935871/SRR2935871
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935872/SRR2935872
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935875/SRR2935875
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935876/SRR2935876
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935877/SRR2935877
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935879/SRR2935879
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935880/SRR2935880
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935881/SRR2935881
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935882/SRR2935882
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935883/SRR2935883
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935884/SRR2935884
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935885/SRR2935885
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935887/SRR2935887
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935889/SRR2935889
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935891/SRR2935891
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935892/SRR2935892
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935893/SRR2935893
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935894/SRR2935894
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935895/SRR2935895
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935896/SRR2935896
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935897/SRR2935897
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935898/SRR2935898
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935900/SRR2935900
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935901/SRR2935901
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935902/SRR2935902
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935903/SRR2935903
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935904/SRR2935904
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935905/SRR2935905
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935906/SRR2935906
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935907/SRR2935907
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935908/SRR2935908
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935909/SRR2935909
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935910/SRR2935910
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935911/SRR2935911
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935912/SRR2935912
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935913/SRR2935913
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935914/SRR2935914
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935915/SRR2935915
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935916/SRR2935916
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935917/SRR2935917
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935918/SRR2935918
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935919/SRR2935919
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935920/SRR2935920
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935921/SRR2935921
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935922/SRR2935922
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935923/SRR2935923
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935924/SRR2935924
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935925/SRR2935925
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935926/SRR2935926
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935927/SRR2935927
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935929/SRR2935929
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935930/SRR2935930
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935931/SRR2935931
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935932/SRR2935932
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935935/SRR2935935
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935936/SRR2935936
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935937/SRR2935937
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935938/SRR2935938
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935940/SRR2935940
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935941/SRR2935941
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935943/SRR2935943
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935944/SRR2935944
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935945/SRR2935945
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935946/SRR2935946
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935948/SRR2935948
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935950/SRR2935950
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935951/SRR2935951
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935952/SRR2935952
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935953/SRR2935953
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935954/SRR2935954
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935955/SRR2935955
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935956/SRR2935956
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935957/SRR2935957
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935958/SRR2935958
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935959/SRR2935959
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935960/SRR2935960
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935962/SRR2935962
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935963/SRR2935963
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935964/SRR2935964
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935965/SRR2935965
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935966/SRR2935966
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935967/SRR2935967
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935968/SRR2935968
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935969/SRR2935969
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935970/SRR2935970
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935971/SRR2935971
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935972/SRR2935972
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935973/SRR2935973
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935974/SRR2935974
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935975/SRR2935975
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2935976/C1-1772096-133_R295_L4_1_B02_GTGTGAGA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935977/SRR2935977
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935979/SRR2935979
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935980/SRR2935980
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935981/SRR2935981
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935982/SRR2935982
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935983/SRR2935983
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935984/SRR2935984
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935985/SRR2935985
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935986/SRR2935986
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935987/SRR2935987
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935988/SRR2935988
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935989/SRR2935989
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935991/SRR2935991
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935992/SRR2935992
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935993/SRR2935993
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935994/SRR2935994
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935995/SRR2935995
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935996/SRR2935996
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935997/SRR2935997
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935998/SRR2935998
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936000/SRR2936000
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936001/SRR2936001
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936002/SRR2936002
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936003/SRR2936003
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936004/SRR2936004
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936005/SRR2936005
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936006/SRR2936006
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936007/SRR2936007
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936008/SRR2936008
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936009/SRR2936009
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936010/SRR2936010
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936011/SRR2936011
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936013/SRR2936013
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936014/SRR2936014
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936015/SRR2936015
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936017/SRR2936017
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936018/SRR2936018
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936019/SRR2936019
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936020/SRR2936020
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936021/SRR2936021
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936022/SRR2936022
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936024/SRR2936024
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936025/SRR2936025
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936026/SRR2936026
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936027/SRR2936027
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936028/SRR2936028
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936030/SRR2936030
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936031/SRR2936031
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936032/SRR2936032
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936033/SRR2936033
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936034/SRR2936034
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936038/C1-1772096-134_R295_L4_1_G02_GTACGAAG.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936042/SRR2936042
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936044/SRR2936044
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936045/SRR2936045
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936046/SRR2936046
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936047/C1-1772096-135_R297_L8_1_A01_GCACACTA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936048/SRR2936048
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936049/SRR2936049
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936050/SRR2936050
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936051/SRR2936051
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936053/SRR2936053
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936054/SRR2936054
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936055/SRR2936055
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936056/SRR2936056
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936057/SRR2936057
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936059/SRR2936059
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936060/SRR2936060
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936061/SRR2936061
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936062/SRR2936062
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936063/SRR2936063
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936064/SRR2936064
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936065/SRR2936065
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936066/SRR2936066
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936068/SRR2936068
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936069/SRR2936069
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936071/SRR2936071
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936072/SRR2936072
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936073/SRR2936073
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936074/SRR2936074
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936075/SRR2936075
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936076/SRR2936076
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936077/SRR2936077
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936078/SRR2936078
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936080/SRR2936080
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936081/SRR2936081
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936082/SRR2936082
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936083/SRR2936083
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936084/SRR2936084
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936085/SRR2936085
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936087/SRR2936087
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936088/SRR2936088
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936089/SRR2936089
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936091/SRR2936091
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936092/SRR2936092
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936093/SRR2936093
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936094/SRR2936094
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936095/SRR2936095
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936096/SRR2936096
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936098/SRR2936098
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936099/SRR2936099
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936100/SRR2936100
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936101/SRR2936101
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936102/C1-1772096-136_R297_L8_1_C05_TGATTACC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936103/SRR2936103
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936106/SRR2936106
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936107/SRR2936107
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936108/SRR2936108
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936109/SRR2936109
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936110/SRR2936110
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936111/SRR2936111
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936112/SRR2936112
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936113/SRR2936113
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936114/SRR2936114
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936115/SRR2936115
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936116/SRR2936116
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936117/SRR2936117
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936118/SRR2936118
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936119/SRR2936119
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936120/SRR2936120
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936121/SRR2936121
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936123/SRR2936123
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936124/SRR2936124
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936125/SRR2936125
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936126/SRR2936126
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936127/SRR2936127
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936128/SRR2936128
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936129/SRR2936129
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936130/SRR2936130
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936131/SRR2936131
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936132/SRR2936132
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936133/SRR2936133
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936134/SRR2936134
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936135/SRR2936135
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936136/SRR2936136
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936137/SRR2936137
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936138/SRR2936138
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936139/SRR2936139
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936140/SRR2936140
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936141/SRR2936141
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936142/SRR2936142
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936143/SRR2936143
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936145/SRR2936145
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936146/SRR2936146
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936147/SRR2936147
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936148/SRR2936148
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936149/SRR2936149
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936150/SRR2936150
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936151/SRR2936151
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936152/SRR2936152
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936153/SRR2936153
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936154/SRR2936154
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936157/SRR2936157
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936158/SRR2936158
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936159/SRR2936159
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936160/SRR2936160
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936162/SRR2936162
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936163/SRR2936163
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936164/SRR2936164
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936165/SRR2936165
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936166/SRR2936166
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936167/SRR2936167
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936168/SRR2936168
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936170/C1-1772096-138_R297_L7_1_E08_GAACTGGT.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936172/SRR2936172
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936174/SRR2936174
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936175/SRR2936175
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936176/SRR2936176
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936177/SRR2936177
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936178/SRR2936178
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936179/SRR2936179
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936180/SRR2936180
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936181/SRR2936181
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936182/SRR2936182
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936184/SRR2936184
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936185/SRR2936185
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936186/SRR2936186
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936187/C1-1772096-138_R297_L7_1_G07_AGTGAGTG.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936189/SRR2936189
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936191/SRR2936191
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936192/SRR2936192
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936193/SRR2936193
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936194/SRR2936194
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936195/SRR2936195
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936196/SRR2936196
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936198/SRR2936198
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936199/SRR2936199
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936200/SRR2936200
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936201/SRR2936201
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936202/SRR2936202
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936203/SRR2936203
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936204/SRR2936204
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936205/SRR2936205
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936206/SRR2936206
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936207/SRR2936207
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936208/SRR2936208
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936209/SRR2936209
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936210/SRR2936210
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936213/SRR2936213
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936214/SRR2936214
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936216/SRR2936216
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936217/SRR2936217
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936218/SRR2936218
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936219/SRR2936219
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936222/SRR2936222
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936224/SRR2936224
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936225/SRR2936225
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936226/SRR2936226
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936227/SRR2936227
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936228/SRR2936228
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936229/SRR2936229
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936230/SRR2936230
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936232/SRR2936232
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936259/SRR2936259
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936260/SRR2936260
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936261/SRR2936261
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936262/SRR2936262
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936263/SRR2936263
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936264/SRR2936264
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936265/SRR2936265
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936266/SRR2936266
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936267/SRR2936267
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936268/SRR2936268
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936269/SRR2936269
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936271/SRR2936271
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936272/SRR2936272
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936273/SRR2936273
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936274/SRR2936274
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936275/SRR2936275
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936276/SRR2936276
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936277/SRR2936277
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936278/SRR2936278
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936279/SRR2936279
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936280/C1-1772096-140_R297_L8_1_D12_GGACAATC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936281/SRR2936281
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936282/SRR2936282
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936283/SRR2936283
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936284/SRR2936284
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936285/SRR2936285
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936286/SRR2936286
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936287/SRR2936287
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936288/SRR2936288
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936289/SRR2936289
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936290/SRR2936290
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936291/SRR2936291
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936292/SRR2936292
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936293/SRR2936293
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936294/SRR2936294
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936295/SRR2936295
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936296/SRR2936296
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936297/SRR2936297
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936298/SRR2936298
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936299/SRR2936299
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936300/SRR2936300
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936301/SRR2936301
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936302/SRR2936302
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936303/SRR2936303
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936304/SRR2936304
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936307/SRR2936307
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936308/SRR2936308
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936310/SRR2936310
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936312/SRR2936312
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936313/SRR2936313
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936314/SRR2936314
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936316/SRR2936316
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936317/SRR2936317
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936318/SRR2936318
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936319/SRR2936319
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936321/SRR2936321
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936322/SRR2936322
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936323/SRR2936323
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936325/SRR2936325
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936326/SRR2936326
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936327/SRR2936327
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936329/SRR2936329
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936330/SRR2936330
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936332/SRR2936332
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936333/SRR2936333
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936334/SRR2936334
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936335/SRR2936335
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936337/SRR2936337
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936338/SRR2936338
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936339/SRR2936339
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936341/SRR2936341
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936343/SRR2936343
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936344/SRR2936344
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936345/SRR2936345
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936346/SRR2936346
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936347/SRR2936347
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936348/SRR2936348
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936349/SRR2936349
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936350/SRR2936350
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936352/SRR2936352
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936354/SRR2936354
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936355/SRR2936355
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936356/SRR2936356
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936357/SRR2936357
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936358/SRR2936358
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936359/SRR2936359
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936360/SRR2936360
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936361/SRR2936361
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936362/SRR2936362
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936363/SRR2936363
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936364/SRR2936364
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936365/SRR2936365
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936366/SRR2936366
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936367/SRR2936367
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936368/SRR2936368
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936369/SRR2936369
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936370/SRR2936370
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936371/SRR2936371
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936372/C1-1772096-144_R297_L5_1_C08_GACAACCA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936374/SRR2936374
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936375/SRR2936375
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936378/SRR2936378
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936379/SRR2936379
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936380/SRR2936380
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936381/SRR2936381
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936382/SRR2936382
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936383/SRR2936383
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936384/SRR2936384
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936386/SRR2936386
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936387/SRR2936387
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936388/SRR2936388
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936389/SRR2936389
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936390/SRR2936390
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936391/SRR2936391
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936393/SRR2936393
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936395/SRR2936395
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936396/SRR2936396
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936397/SRR2936397
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936398/SRR2936398
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936399/SRR2936399
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936402/SRR2936402
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936403/SRR2936403
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936404/SRR2936404
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936405/SRR2936405
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936406/SRR2936406
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936407/SRR2936407
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936408/SRR2936408
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936409/SRR2936409
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936410/SRR2936410
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936412/SRR2936412
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936413/SRR2936413
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936414/SRR2936414
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936415/SRR2936415
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936416/SRR2936416
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936417/SRR2936417
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936420/SRR2936420
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936422/SRR2936422
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936423/SRR2936423
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936424/SRR2936424
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936425/SRR2936425
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936427/SRR2936427
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936428/SRR2936428
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936429/SRR2936429
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936430/SRR2936430
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936431/SRR2936431
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936432/SRR2936432
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936433/SRR2936433
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936434/SRR2936434
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936435/SRR2936435
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936436/SRR2936436
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936437/SRR2936437
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936439/SRR2936439
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936440/SRR2936440
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936441/SRR2936441
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936442/SRR2936442
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936443/SRR2936443
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936444/SRR2936444
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936445/SRR2936445
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936446/SRR2936446
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936447/SRR2936447
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936448/SRR2936448
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936449/SRR2936449
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936450/SRR2936450
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936451/SRR2936451
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936452/SRR2936452
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936453/SRR2936453
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936454/SRR2936454
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936455/SRR2936455
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936457/SRR2936457
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936458/SRR2936458
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936459/SRR2936459
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936460/SRR2936460
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936461/SRR2936461
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936463/SRR2936463
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936465/SRR2936465
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936466/SRR2936466
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936467/SRR2936467
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936469/SRR2936469
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936470/SRR2936470
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936471/SRR2936471
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936472/SRR2936472
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936473/SRR2936473
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936474/SRR2936474
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936475/SRR2936475
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936476/SRR2936476
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936477/SRR2936477
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936480/SRR2936480
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936482/SRR2936482
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936483/SRR2936483
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936484/SRR2936484
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936487/SRR2936487
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936493/SRR2936493
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936495/SRR2936495
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936497/SRR2936497
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936500/SRR2936500
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936501/SRR2936501
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936502/SRR2936502
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936505/SRR2936505
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936507/SRR2936507
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936508/SRR2936508
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936509/SRR2936509
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936510/SRR2936510
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936512/SRR2936512
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936514/SRR2936514
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936515/SRR2936515
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936516/SRR2936516
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936519/SRR2936519
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936520/SRR2936520
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936521/SRR2936521
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936522/SRR2936522
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936523/SRR2936523
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936524/SRR2936524
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936525/SRR2936525
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936526/SRR2936526
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936527/SRR2936527
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936528/SRR2936528
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936529/SRR2936529
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936530/SRR2936530
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936531/SRR2936531
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936532/SRR2936532
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936533/SRR2936533
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936534/SRR2936534
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936535/SRR2936535
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936539/SRR2936539
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936540/SRR2936540
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936541/SRR2936541
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936542/SRR2936542
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936543/SRR2936543
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936544/SRR2936544
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936545/SRR2936545
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936546/SRR2936546
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936547/SRR2936547
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936549/SRR2936549
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936550/SRR2936550
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936552/SRR2936552
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936553/SRR2936553
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936556/SRR2936556
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936558/SRR2936558
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936560/SRR2936560
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936561/SRR2936561
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936562/SRR2936562
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936563/SRR2936563
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936564/SRR2936564
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936566/SRR2936566
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936567/SRR2936567
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936568/SRR2936568
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936569/SRR2936569
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936570/SRR2936570
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936572/SRR2936572
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936573/SRR2936573
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936574/SRR2936574
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936575/SRR2936575
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936577/SRR2936577
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936579/SRR2936579
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936580/SRR2936580
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936581/SRR2936581
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936583/SRR2936583
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936584/SRR2936584
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936585/SRR2936585
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936586/SRR2936586
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936588/SRR2936588
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936591/SRR2936591
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936592/SRR2936592
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936593/SRR2936593
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936594/SRR2936594
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936596/SRR2936596
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936597/SRR2936597
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936599/SRR2936599
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936600/SRR2936600
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936601/SRR2936601
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936603/SRR2936603
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936606/SRR2936606
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936607/SRR2936607
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936608/SRR2936608
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936609/SRR2936609
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936611/SRR2936611
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936612/SRR2936612
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936613/SRR2936613
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936614/SRR2936614
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936615/SRR2936615
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936618/SRR2936618
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936620/SRR2936620
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936621/SRR2936621
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936622/SRR2936622
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936624/SRR2936624
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936625/SRR2936625
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936626/SRR2936626
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936628/SRR2936628
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936629/SRR2936629
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936630/SRR2936630
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936631/SRR2936631
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936632/SRR2936632
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936633/SRR2936633
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936634/SRR2936634
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936635/SRR2936635
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936636/SRR2936636
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936638/SRR2936638
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936639/SRR2936639
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936640/SRR2936640
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936641/SRR2936641
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936642/SRR2936642
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936643/SRR2936643
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936645/SRR2936645
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936646/SRR2936646
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936647/SRR2936647
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936648/SRR2936648
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936649/SRR2936649
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936652/SRR2936652
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936654/SRR2936654
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936655/SRR2936655
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936657/SRR2936657
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936660/SRR2936660
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936661/SRR2936661
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936662/SRR2936662
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936663/SRR2936663
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936664/SRR2936664
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936665/SRR2936665
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936668/C1-1772096-171_R297_L4_1_B11_ATTCGTCC.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936669/SRR2936669
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936670/SRR2936670
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936673/SRR2936673
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936674/SRR2936674
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936675/SRR2936675
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936679/SRR2936679
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936680/SRR2936680
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936681/SRR2936681
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936682/SRR2936682
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936684/SRR2936684
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936685/SRR2936685
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936687/SRR2936687
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936688/SRR2936688
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936691/SRR2936691
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936693/SRR2936693
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936694/SRR2936694
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936695/SRR2936695
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936696/SRR2936696
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936698/SRR2936698
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936701/SRR2936701
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936703/SRR2936703
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936704/SRR2936704
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936705/SRR2936705
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936706/SRR2936706
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936708/SRR2936708
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936710/SRR2936710
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936711/SRR2936711
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936712/SRR2936712
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936713/SRR2936713
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936714/SRR2936714
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936715/SRR2936715
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936716/SRR2936716
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936717/SRR2936717
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936718/SRR2936718
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936719/SRR2936719
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936720/SRR2936720
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936722/SRR2936722
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936723/SRR2936723
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936724/SRR2936724
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936726/SRR2936726
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936727/SRR2936727
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936728/SRR2936728
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936729/SRR2936729
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936731/SRR2936731
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936732/SRR2936732
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936734/SRR2936734
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936735/SRR2936735
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936738/SRR2936738
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936739/SRR2936739
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936740/SRR2936740
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936742/SRR2936742
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936743/SRR2936743
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936745/SRR2936745
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936746/SRR2936746
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936747/SRR2936747
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936748/SRR2936748
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936749/SRR2936749
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936750/SRR2936750
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936751/SRR2936751
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936752/SRR2936752
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936755/SRR2936755
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936756/SRR2936756
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936757/SRR2936757
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936758/SRR2936758
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936759/SRR2936759
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936761/SRR2936761
curl -L -O -C - https://sra-pub-src-1.s3.amazonaws.com/SRR2936762/C1-1772096-173_R297_L6_1_C12_GAGGATCA.fq.gz.1
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936763/SRR2936763
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936764/SRR2936764
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936765/SRR2936765
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936767/SRR2936767
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936768/SRR2936768
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936769/SRR2936769
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936774/SRR2936774
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936776/SRR2936776
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936777/SRR2936777
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936778/SRR2936778
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936780/SRR2936780
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936788/SRR2936788
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936791/SRR2936791
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936792/SRR2936792
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936797/SRR2936797
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936798/SRR2936798
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936800/SRR2936800
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936801/SRR2936801
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936802/SRR2936802
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936805/SRR2936805
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936807/SRR2936807
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936814/SRR2936814
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934330/SRR2934330
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934339/SRR2934339
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934352/SRR2934352
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934392/SRR2934392
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934539/SRR2934539
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934547/SRR2934547
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934566/SRR2934566
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934597/SRR2934597
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934598/SRR2934598
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934599/SRR2934599
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934601/SRR2934601
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934622/SRR2934622
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934639/SRR2934639
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934644/SRR2934644
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934676/SRR2934676
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934698/SRR2934698
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934712/SRR2934712
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934717/SRR2934717
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934721/SRR2934721
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934727/SRR2934727
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934735/SRR2934735
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934743/SRR2934743
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934758/SRR2934758
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934759/SRR2934759
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934768/SRR2934768
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934781/SRR2934781
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934805/SRR2934805
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934834/SRR2934834
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934838/SRR2934838
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934862/SRR2934862
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934866/SRR2934866
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934873/SRR2934873
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934875/SRR2934875
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934882/SRR2934882
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934883/SRR2934883
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934888/SRR2934888
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934901/SRR2934901
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934907/SRR2934907
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934909/SRR2934909
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934910/SRR2934910
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934921/SRR2934921
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934932/SRR2934932
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934938/SRR2934938
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2934959/SRR2934959
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935021/SRR2935021
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935026/SRR2935026
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935073/SRR2935073
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935105/SRR2935105
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935142/SRR2935142
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935201/SRR2935201
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935243/SRR2935243
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935265/SRR2935265
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935291/SRR2935291
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935295/SRR2935295
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935296/SRR2935296
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935323/SRR2935323
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935327/SRR2935327
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935349/SRR2935349
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935356/SRR2935356
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935360/SRR2935360
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935374/SRR2935374
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935397/SRR2935397
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935412/SRR2935412
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935422/SRR2935422
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935447/SRR2935447
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935457/SRR2935457
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935458/SRR2935458
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935460/SRR2935460
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935461/SRR2935461
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935474/SRR2935474
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935480/SRR2935480
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935502/SRR2935502
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935503/SRR2935503
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935509/SRR2935509
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935572/SRR2935572
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935585/SRR2935585
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935592/SRR2935592
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935596/SRR2935596
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935601/SRR2935601
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935637/SRR2935637
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935656/SRR2935656
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935675/SRR2935675
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935677/SRR2935677
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935695/SRR2935695
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935697/SRR2935697
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935707/SRR2935707
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935714/SRR2935714
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935719/SRR2935719
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935724/SRR2935724
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935732/SRR2935732
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935742/SRR2935742
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935745/SRR2935745
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935815/SRR2935815
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935854/SRR2935854
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935873/SRR2935873
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935939/SRR2935939
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935947/SRR2935947
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2935961/SRR2935961
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936012/SRR2936012
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936035/SRR2936035
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936039/SRR2936039
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936041/SRR2936041
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936052/SRR2936052
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936086/SRR2936086
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936090/SRR2936090
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936104/SRR2936104
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936105/SRR2936105
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936156/SRR2936156
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936161/SRR2936161
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936169/SRR2936169
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936183/SRR2936183
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936197/SRR2936197
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936212/SRR2936212
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936215/SRR2936215
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936220/SRR2936220
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936221/SRR2936221
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936233/SRR2936233
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936311/SRR2936311
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936315/SRR2936315
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936331/SRR2936331
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936336/SRR2936336
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936340/SRR2936340
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936353/SRR2936353
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936376/SRR2936376
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936392/SRR2936392
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936401/SRR2936401
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936418/SRR2936418
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936503/SRR2936503
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936513/SRR2936513
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936551/SRR2936551
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936555/SRR2936555
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936557/SRR2936557
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936559/SRR2936559
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936565/SRR2936565
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936576/SRR2936576
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936582/SRR2936582
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936595/SRR2936595
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936598/SRR2936598
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936604/SRR2936604
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936616/SRR2936616
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936619/SRR2936619
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936623/SRR2936623
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936637/SRR2936637
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936650/SRR2936650
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936651/SRR2936651
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936659/SRR2936659
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936676/SRR2936676
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936690/SRR2936690
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936699/SRR2936699
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936700/SRR2936700
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936707/SRR2936707
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936721/SRR2936721
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936733/SRR2936733
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936754/SRR2936754
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936771/SRR2936771
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936772/SRR2936772
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936785/SRR2936785
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936787/SRR2936787
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936794/SRR2936794
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936799/SRR2936799
curl -L -O -C - https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2936816/SRR2936816

echo "Download complete. Files saved to $OUTDIR"