Define where the pipeline should find input data and save output data.

Path to comma-separated file containing information about the samples in the experiment.

required
type: string

You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 5 columns, and a header row. See usage docs.

Path to the output directory where the results will be saved.

type: string
default: ./results

File containing SRA/ENA/GEO identifiers one per line in order to download their associated FastQ files.

type: string

Email address for completion summary.

type: string
pattern: ^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$

Set this parameter to your e-mail address to get a summary e-mail with details of the run sent to you when the workflow exits. If set in your user config file (~/.nextflow/config) then you don't need to specify this on the command line for every run.

MultiQC report title. Printed as page header, used for filename if not otherwise specified.

type: string

Only download metadata for public data database ids and don't download the FastQ files.

type: boolean

Save FastQ files after merging re-sequenced libraries in the results directory.

type: boolean

Options for processing reads with unique molecular identifiers

Enable UMI-based read deduplication.

type: boolean

UMI pattern to use. Can be either 'string' (default) or 'regex'.

type: string
default: string

More details can be found in the UMI-tools documentation.

The UMI barcode pattern to use e.g. 'NNNNNN' indicates that the first 6 nucleotides of the read are from the UMI.

type: string

More details can be found in the UMI-tools documentation.

If this option is specified, intermediate FastQ and BAM files produced by UMI-tools are also saved in the results directory.

type: boolean

Options for filtering reads prior to alignment

Enable the removal of reads derived from ribosomal RNA using SortMeRNA.

type: boolean

Any patterns found in the sequences defined by the '--ribo_database_manifest' parameter will be used.

Text file containing paths to fasta files (one per line) that will be used to create the database for SortMeRNA.

type: string
default: ${baseDir}/assets/rrna-db-defaults.txt

By default, rRNA databases defined in the SortMeRNA GitHub repo are used. You can see an example in the pipeline Github repository in assets/rrna-default-dbs.txt.
Please note that commercial/non-academic entities require licensing for SILVA for these default databases.

If this option is specified, intermediate FastQ files containing non-rRNA reads will be saved in the results directory.

type: boolean

Reference genome related files and options required for the workflow.

Name of iGenomes reference.

type: string

If using a reference genome configured in the pipeline using iGenomes, use this parameter to give the ID for the reference. This is then used to build the full paths for all required reference genome files e.g. --genome GRCh38.

See the nf-core website docs for more details.

Path to FASTA genome file.

type: string

This parameter is mandatory if --genome is not specified. If you don't have a BWA index available this will be generated for you automatically. Combine with --save_reference to save BWA index for future runs.

Path to GTF annotation file.

type: string

This parameter is mandatory if --genome is not specified.

Path to GFF3 annotation file.

type: string

This parameter must be specified if --genome or --gtf are not specified.

Path to BED file containing gene intervals. This will be created from the GTF file if not specified.

type: string

Path to FASTA transcriptome file.

type: string

FASTA file to concatenate to genome FASTA file e.g. containing spike-in sequences.

type: string

If provided, the sequences in this file will get concatenated to the existing genome FASTA file, a GTF file will be automatically created using the entire sequence as the gene, transcript, and exon features, and any alignment index will get created from the combined FASTA and GTF. It is recommended to save the reference with --save_reference to re-use the index for future runs so you do not need to create it again.

Splice sites file required for HISAT2.

type: string

Path to directory or tar.gz archive for pre-built STAR index.

type: string

Path to directory or tar.gz archive for pre-built HISAT2 index.

type: string

Path to directory or tar.gz archive for pre-built RSEM index.

type: string

Path to directory or tar.gz archive for pre-built Salmon index.

type: string

Memory passed to HISAT2 build process.

type: integer
default: 200

Specify if your GTF annotation is in GENCODE format.

type: boolean

If your GTF file is in GENCODE format and you would like to run Salmon i.e. --pseudo_aligner salmon, you will need to provide this parameter in order to build the Salmon index appropriately.

If generated by the pipeline save the BWA index in the results directory.

type: boolean

If the BWA index is generated by the pipeline use this parameter to save it to your results folder. These can then be used for future pipeline runs, reducing processing times.

Directory / URL base for iGenomes references.

hidden
type: string
default: s3://ngi-igenomes/igenomes/

Do not load the iGenomes reference config.

hidden
type: boolean

Do not load igenomes.config when running the pipeline. You may choose this option if you observe clashes between custom parameters and those supplied in igenomes.config.

Options to adjust read trimming criteria.

Instructs Trim Galore to remove bp from the 5' end of read 1 (or single-end reads).

type: integer

Instructs Trim Galore to remove bp from the 5' end of read 2 (paired-end reads only).

type: integer

Instructs Trim Galore to remove bp from the 3' end of read 1 AFTER adapter/quality trimming has been performed.

type: integer

Instructs Trim Galore to remove bp from the 3' end of read 2 AFTER adapter/quality trimming has been performed.

type: integer

Instructs Trim Galore to apply the --nextseq=X option, to trim based on quality after removing poly-G tails.

type: integer

This enables the option Cutadapt --nextseq-trim=3'CUTOFF option via Trim Galore, which will set a quality cutoff (that is normally given with -q instead), but qualities of G bases are ignored. This trimming is in common for the NextSeq- and NovaSeq-platforms, where basecalls without any signal are called as high-quality G bases.

Skip the adapter trimming step.

type: boolean

Use this if your input FastQ files have already been trimmed outside of the workflow or if you're very confident that there is no adapter contamination in your data.

Save the trimmed FastQ files in the results directory.

type: boolean

By default, trimmed FastQ files will not be saved to the results directory. Specify this flag (or set to true in your config file) to copy these files to the results directory when complete.

Options to adjust parameters and filtering criteria for read alignments.

Specifies the alignment algorithm to use - available options are 'star', 'star_rsem' and 'hisat2'.

type: string

Specifies the pseudo aligner to use - available options are 'salmon'. Runs in addition to '--aligner'.

type: string

When using pre-built STAR indices do not re-extract and use splice junctions from the GTF file.

type: boolean

Minimum percentage of uniquely mapped reads below which samples are removed from further processing.

type: integer
default: 5

Some downstream steps in the pipeline will fail if this threshold is too low.

Sequencing center information to be added to read group of BAM files.

type: string

Where possible, save unaligned reads from either STAR, HISAT2 or Salmon to the results directory.

type: boolean

This may either be in the form of FastQ or BAM files depending on the options available for that particular tool.

Save the intermediate BAM files from the alignment step.

type: boolean

By default, intermediate BAM files will not be saved. The final BAM files created after the appropriate filtering step are always saved to limit storage usage. Set this parameter to also save other intermediate BAM files.

Skip picard MarkDuplicates step.

type: boolean

Skip all of the alignment-based processes within the pipeline.

type: boolean

Options for counting reads relative to gene features

'--extraAtributes' parameter passed to featureCounts.

type: string
default: gene_name

By default, the pipeline uses the gene_name field to obtain additional gene identifiers from the input GTF file. This behaviour can be modified by specifying --fc_extra_attributes when running the pipeline which is passed on to featureCounts as the --extraAttributes parameter. Note that you can also specify more than one desired value, separated by a comma e.g. --fc_extra_attributes gene_id,....

Define the attribute type used to group features in the GTF file.

type: string
default: gene_id

Define the attribute type used to group feature types in the GTF file.

type: string
default: gene_biotype

By default, the pipeline assigns reads based on the 'exon' attribute within the GTF file.

type: string
default: exon

You can change this parameter for example, for nuclear RNA-seq where you may want to count reads in introns as well as exons using '--fc_count_type transcript'.

Perform reference-guided de novo assembly of transcripts using StringTie i.e. dont restrict to those in GTF file.

type: boolean

Skip additional featureCounts process for biotype QC.

type: boolean

Skip featureCounts.

type: boolean

Options to skip various steps within the workflow.

Specify the RSeQC modules to run.

type: string
default: bam_stat,inner_distance,infer_experiment,junction_annotation,junction_saturation,read_distribution,read_duplication

Use vst transformation instead of rlog with DESeq2.

type: boolean

Skip bigWig file creation.

type: boolean

Skip StringTie.

type: boolean

Skip FastQC.

type: boolean

Skip Preseq.

type: boolean

Skip dupRadar.

type: boolean

Skip Qualimap.

type: boolean

Skip RSeQC.

type: boolean

Skip DESeq2 PCA and heatmap plotting.

type: boolean

Skip MultiQC.

type: boolean

Skip all QC steps except for MultiQC.

type: boolean

Parameters used to describe centralised config profiles. These should not be edited.

Git commit id for Institutional configs.

hidden
type: string
default: master

Base directory for Institutional configs.

hidden
type: string
default: https://raw.githubusercontent.com/nf-core/configs/master

If you're running offline, Nextflow will not be able to fetch the institutional config files from the internet. If you don't need them, then this is not a problem. If you do need them, you should download the files from the repo and tell Nextflow where to find them with this parameter.

Institutional configs hostname.

hidden
type: string

Institutional config description.

hidden
type: string

Institutional config contact information.

hidden
type: string

Institutional config URL link.

hidden
type: string

Set the top limit for requested resources for any single job.

Maximum number of CPUs that can be requested for any single job.

hidden
type: integer
default: 16

Use to set an upper-limit for the CPU requirement for each process. Should be an integer e.g. --max_cpus 1

Maximum amount of memory that can be requested for any single job.

hidden
type: string
default: 128.GB

Use to set an upper-limit for the memory requirement for each process. Should be a string in the format integer-unit e.g. --max_memory '8.GB'

Maximum amount of time that can be requested for any single job.

hidden
type: string
default: 240.h

Use to set an upper-limit for the time requirement for each process. Should be a string in the format integer-unit e.g. --max_time '2.h'

Less common options for the pipeline, typically set in a config file.

Display help text.

hidden
type: boolean

Method used to save pipeline results to output directory.

hidden
type: string

The Nextflow publishDir option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See Nextflow docs for details.

Email address for completion summary, only when pipeline fails.

hidden
type: string
pattern: ^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$

An email address to send a summary email to when the pipeline is completed - ONLY sent if the pipeline does not exit successfully.

Send plain-text email instead of HTML.

hidden
type: boolean

File size limit when attaching MultiQC reports to summary emails.

hidden
type: string
default: 25.MB

Do not use coloured log outputs.

hidden
type: boolean

Custom config file to supply to MultiQC.

hidden
type: string

Directory to keep pipeline Nextflow logs and reports.

hidden
type: string
default: ${params.outdir}/pipeline_info

Arguments passed to Nextflow clusterOptions.

hidden
type: string

Run this workflow with Conda. You can also use '-profile conda' instead of providing this parameter.

hidden
type: boolean