6060
6161<!-- /TOC -->
6262
63+ ## Introduction
64+
6365## Running the pipeline
6466
6567### Quick Start
@@ -735,6 +737,10 @@ If you want to use pre-existing `bwa index` indices, please supply the
735737nf-core/eager will automagically detect the index files by searching for the
736738FASTA filename with the corresponding ` bwa ` index file suffixes.
737739
740+ > :warning : pre-built indices must currently be built on non-gzipped FASTA files
741+ > due to limitations of ` samtools ` . However once indices have been built, you
742+ > can re-gzip the FASTA file as nf-core will unzip this particular file for you.
743+
738744For example:
739745
740746``` bash
@@ -756,6 +762,10 @@ If you want to use pre-existing `bt2 index` indices, please supply the
756762nf-core/eager will automagically detect the index files by searching for the
757763FASTA filename with the corresponding ` bt2 ` index file suffixes.
758764
765+ > :warning : pre-built indices must currently be built on non-gzipped FASTA files
766+ > due to limitations of ` samtools ` . However once indices have been built, you
767+ > can re-gzip the FASTA file as nf-core will unzip this particular file for you.
768+
759769For example:
760770
761771``` bash
@@ -789,6 +799,10 @@ If you want to use a pre-existing `picard CreateSequenceDictionary` dictionary
789799file, use this to specify the required ` .dict ` file for the selected reference
790800genome.
791801
802+ > :warning : pre-built indices must currently be built on non-gzipped FASTA files
803+ > due to limitations of ` samtools ` . However once indices have been built, you
804+ > can re-gzip the FASTA file as nf-core will unzip this particular file for you.
805+
792806For example:
793807
794808``` bash
@@ -2382,7 +2396,7 @@ profiles {
23822396 big_data {
23832397 process {
23842398 withName: markduplicates {
2385- memory = { check_max( 16.GB * task.attempt, 'memory' ) }
2399+ memory = 16.GB
23862400 }
23872401 }
23882402 }
@@ -2393,6 +2407,12 @@ Where we have increased the default `4.GB` to `16.GB`. Make sure that you keep
23932407the ` check_max ` function, as this prevents your run asking for too much memory
23942408during retries.
23952409
2410+ > Note that with this you will _ not_ have the automatic retry mechanism. If
2411+ > you want this, re-add the ` check_max() ` function on the ` memory ` line, and
2412+ > add to the bottom of the entire file (outside the profiles block), the
2413+ > block starting ` def check_max(obj, type) { ` , which is at the end of the
2414+ > [ nextflow.config file] ( https://github.com/nf-core/eager/blob/master/nextflow.config )
2415+
23962416Once saved, we can then modify your original Nextflow run command:
23972417
23982418``` bash
0 commit comments