#!/bin/bash

set -x

nextflow run nf-core/cutandrun \
  -r 3.1 \
  -profile docker \
  --input /home/gng/h1-cutandrun/datasets/cnr_cleaned/sample_sheet.csv \
  --outdir /home/gng/h1-cutandrun/output \
  --fasta /home/gng/h1-cutandrun/datasets/references/GCA_000001405.15_GRCh38_no_alt_plus_hs38d1_analysis_set.fna.gz \
  --bowtie2 /home/gng/h1-cutandrun/datasets/references/GCA_000001405.15_GRCh38_no_alt_plus_hs38d1_analysis_set.fna.bowtie_index.tar.gz \
  --gtf /home/gng/h1-cutandrun/datasets/references/GCA_000001405.15_GRCh38_full_analysis_set.refseq_annotation.gtf.gz \
  --peakcaller 'macs2' \
  --skip_heatmaps true \
  --max_memory "400.GB" \
  -resume
