nf-core/epigenomesegmentation
An nf-core pipeline for epigenome segmentation using EpiSegMix/Meth — a hidden Markov model with flexible read count distributions and state duration modeling for histone, open chromatin, and methylation signals.
Usage
Pipeline parameters
Please provide pipeline parameters via the CLI or Nextflow -params-file option. Custom config files including those provided by the -c Nextflow option can be used to provide any configuration except for parameters; see docs.
Samplesheet input
You will need to create a samplesheet with information about the samples you would like to analyse before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 7 columns, and a header row as shown in the examples below.
--input '[path to samplesheet file]'Grouping and Replicates
The sample_id identifiers must be identical for all data files that belong to the same biological sample. The pipeline groups all files sharing the same sample_id and processes them together to build a unified segmentation model for that sample.
If you have multiple files for the exact same histone mark within a single sample, the pipeline treats them as biological or technical replicates. You must assign each of these files a unique integer in the replicate column.
NOTE: Replicates for methylation data (.bed or .bed.gz files) are not currently supported by the pipeline. Methylation data should only have one entry per sample_id.
Below is an example of a samplesheet where a sample has two replicates for the H3K4me3 mark, alongside single entries for another histone mark and methylation data:
sample_id,replicate,epigenetic_mark,file_name,modality,paired_end,distribution
SAMPLE_A,1,H3K4me3,./data/rep1_H3K4me3.bam,ChIP-seq,true,NBI
SAMPLE_A,2,H3K4me3,./data/rep2_H3K4me3.bam,ChIP-seq,true,NBI
SAMPLE_A,1,H3K27ac,./data/rep1_H3K27ac.bam,ChIP-seq,true,NBI
SAMPLE_A,1,WGBS,./data/sampleA_methyl.bed.gz,WGBS,true,BIFull samplesheet
The pipeline uses a 7-column structured format to process and group epigenetic data.
File types are inferred automatically:
- Histone ->
.bam,.bam.gz - Methylation ->
.bed,.bed.gz
A complete samplesheet file consisting of multiple samples, including replicates for specific histone marks and paired methylation data, may look like the one below. This example shows two samples (CONTROL and TREATMENT), where CONTROL has two replicates for the H3K4me3 mark.
sample_id,replicate,epigenetic_mark,file_name,modality,paired_end,distribution
CONTROL,1,H3K4me3,./data/control_rep1_H3K4me3.bam,ChIP-seq,true,NBI
CONTROL,2,H3K4me3,./data/control_rep2_H3K4me3.bam,ChIP-seq,true,NBI
CONTROL,1,H3K27ac,./data/control_H3K27ac.bam,ChIP-seq,true,NBI
CONTROL,1,WGBS,./data/control_methyl.bed.gz,WGBS,true,BI
TREATMENT,1,H3K4me3,./data/treatment_H3K4me3.bam,ChIP-seq,true,NBI
TREATMENT,1,H3K27ac,./data/treatment_H3K27ac.bam,ChIP-seq,true,NBI
TREATMENT,1,WGBS,./data/treatment_methyl.bed.gz,WGBS,true,BI| Column | Description |
|---|---|
sample_id | Custom sample name. Must be identical across all entries of the same sample. |
replicate | Integer replicate number. Unique for same epigenetic_mark within a sample. |
epigenetic_mark | Target mark or assay type (e.g., H3K4me3, H3K27ac, WGBS). |
file_name | Full path to file. .bam / .bam.gz (histone), .bed / .bed.gz (methylation). |
modality | Supported: ChIP-seq, WGBS, ATAC-seq, NOMe-seq, chip, wgbs, atac, nome. |
paired_end | Boolean (true or false). |
distribution | Statistical distribution used for modeling. |
Supported Distributions
| Code | Name |
|---|---|
PO | Poisson |
ZAP | Zero Adjusted Poisson |
BI | Binomial |
NBI | Negative Binomial |
ZANBI | Zero Adjusted Negative Binomial |
BB | Beta Binomial |
BNB | Beta Negative Binomial |
ZABNB | Zero Adjusted Beta Negative Binomial |
SI | Sichel |
ZASI | Zero Adjusted Sichel |
GA | Gaussian |
B | Bernoulli (requires binarized input) |
An example samplesheet has been provided with the pipeline.
Running the pipeline
The typical command for running the pipeline is as follows:
nextflow run nf-core/epigenomesegmentation --input ./samplesheet.csv --outdir ./results --genome hg38 -profile dockerThis will launch the pipeline with the docker configuration profile. See below for more information about profiles.
Note that the pipeline will create the following files in your working directory:
work # Directory containing the nextflow working files
<OUTDIR> # Finished results in specified location (defined with --outdir)
.nextflow_log # Log file from Nextflow
# Other nextflow hidden files, eg. history of pipeline runs and old logs.If you wish to repeatedly use the same parameters for multiple runs, rather than specifying each flag in the command, you can specify these in a params file.
Pipeline settings can be provided in a yaml or json file via -params-file <file>.
EpiSegMix Run Modes
The pipeline’s behavior can be significantly altered using modes for EpiSegMix tool as boolean flags --standard, --duration, --DNA, --fitting and the --merge flag. By default, the pipeline runs in standard mode.
Standard Mode (Default)
--standardProcesses only histone data (BAM files) to generate chromatin segmentation models. Methylation data provided in the samplesheet will be ignored in this mode.
DNA Mode
--DNABypasses histone processing entirely. The pipeline will process only methylation data (BED files), generate methylation-specific bins, and train a DNA-only segmentation model.
Duration Mode
--durationExecutes the duration-based Hidden Markov Model (HMM). This is useful for modeling states with explicit length distributions to better capture the spatial characteristics of epigenetic domains.
Fitting Mode
--fittingThis mode does not perform full segmentation. Instead, it extracts counts and runs distribution-fitting algorithms to help you determine the optimal statistical distributions (e.g., NBI, BI, SI, BNB) for your specific epigenetic marks. You can specify a comma-separated list of distributions to test using the --distributions parameter.
However, if --best_fit_segmentation is set to true along with fitting, it will run segmentation on the best-fitting distribution found. You can also mention --duration with it for segmentation to be done using duration modules.
Merging Histone and Methylation Data
--mergeWhen the --merge flag is provided, the pipeline processes both histone BAM files and methylation BED files. It merges their respective count matrices into a single, comprehensive dataset and trains a combined segmentation model across all modalities.
Exploring Multiple States
--states 8,10,12The --states parameter defines the number of chromatin states for the segmentation model. You can provide a single integer or a comma separated list of values (e.g., 8,10,12) to train models for multiple state configurations simultaneously in parallel. The pipeline itself automatically handles the creation and management of all necessary configuration files for each state!
Parameter Estimation Chromosome
--chr_parameter_estimation 12The --chr_parameter_estimation parameter defines which chromosome should be used for the initial parameter estimation step before full model training. By default, it uses chromosome 12. You can provide an integer (e.g., 12, 22), or a string identifier if you are using specific custom reference genomes or pilot data (e.g., pilot_hg38).
Do not use -c <file> to specify parameters as this will result in errors. Custom config files specified with -c must only be used for tuning process resource specifications, other infrastructural tweaks (such as output directories), or module arguments (args).
The above pipeline run specified with a params file in yaml format:
nextflow run nf-core/epigenomesegmentation -profile docker -params-file params.yamlwith:
input: './samplesheet.csv'
outdir: './results/'
genome: 'hg38'
<...>You can also generate such YAML/JSON files via nf-core/launch.
Updating the pipeline
When you run the above command, Nextflow automatically pulls the pipeline code from GitHub and stores it as a cached version. When running the pipeline after this, it will always use the cached version if available - even if the pipeline has been updated since. To make sure that you’re running the latest version of the pipeline, make sure that you regularly update the cached version of the pipeline:
nextflow pull nf-core/epigenomesegmentationReproducibility
It is a good idea to specify the pipeline version when running the pipeline on your data. This ensures that a specific version of the pipeline code and software are used when you run your pipeline. If you keep using the same tag, you’ll be running the same version of the pipeline, even if there have been changes to the code since.
First, go to the nf-core/epigenomesegmentation releases page and find the latest pipeline version - numeric only (eg. 1.3.1). Then specify this when running the pipeline with -r (one hyphen) - eg. -r 1.3.1. Of course, you can switch to another version by changing the number after the -r flag.
This version number will be logged in reports when you run the pipeline, so that you’ll know what you used when you look back in the future.
To further assist in reproducibility, you can use share and reuse parameter files to repeat pipeline runs with the same settings without having to write out a command with every single parameter.
If you wish to share such profile (such as upload as supplementary material for academic publications), make sure to NOT include cluster specific paths to files, nor institutional specific profiles.
Core Nextflow arguments
These options are part of Nextflow and use a single hyphen (pipeline parameters use a double-hyphen)
-profile
Use this parameter to choose a configuration profile. Profiles can give configuration presets for different compute environments.
Several generic profiles are bundled with the pipeline which instruct the pipeline to use software packaged using different methods (Docker, Singularity, Podman, Shifter, Charliecloud, Apptainer, Conda) - see below.
We highly recommend the use of Docker or Singularity containers for full pipeline reproducibility, however when this is not possible, Conda is also supported.
The pipeline also dynamically loads configurations from https://github.com/nf-core/configs when it runs, making multiple config profiles for various institutional clusters available at run time. For more information and to check if your system is supported, please see the nf-core/configs documentation.
Note that multiple profiles can be loaded, for example: -profile test,docker - the order of arguments is important!
They are loaded in sequence, so later profiles can overwrite earlier profiles.
If -profile is not specified, the pipeline will run locally and expect all software to be installed and available on the PATH. This is not recommended, since it can lead to different results on different machines dependent on the computer environment.
test- A profile with a complete configuration for automated testing
- Includes links to test data so needs no other parameters
docker- A generic configuration profile to be used with Docker
singularity- A generic configuration profile to be used with Singularity
podman- A generic configuration profile to be used with Podman
shifter- A generic configuration profile to be used with Shifter
charliecloud- A generic configuration profile to be used with Charliecloud
apptainer- A generic configuration profile to be used with Apptainer
wave- A generic configuration profile to enable Wave containers. Use together with one of the above (requires Nextflow
24.03.0-edgeor later).
- A generic configuration profile to enable Wave containers. Use together with one of the above (requires Nextflow
conda- A generic configuration profile to be used with Conda. Please only use Conda as a last resort i.e. when it’s not possible to run the pipeline with Docker, Singularity, Podman, Shifter, Charliecloud, or Apptainer.
-resume
Specify this when restarting a pipeline. Nextflow will use cached results from any pipeline steps where the inputs are the same, continuing from where it got to previously. For input to be considered the same, not only the names must be identical but the files’ contents as well. For more info about this parameter, see this blog post.
You can also supply a run name to resume a specific run: -resume [run-name]. Use the nextflow log command to show previous run names.
-c
Specify the path to a specific config file (this is a core Nextflow command). See the nf-core website documentation for more information.
Custom configuration
Resource requests
Whilst the default requirements set within the pipeline will hopefully work for most people and with most input data, you may find that you want to customise the compute resources that the pipeline requests. Each step in the pipeline has a default set of requirements for number of CPUs, memory and time. For most of the pipeline steps, if the job exits with any of the error codes specified here it will automatically be resubmitted with higher resources request (2 x original, then 3 x original). If it still fails after the third attempt then the pipeline execution is stopped.
To change the resource requests, please see the max resources and tuning workflow resources section of the nf-core website.
Custom Containers
In some cases, you may wish to change the container or conda environment used by a pipeline steps for a particular tool. By default, nf-core pipelines use containers and software from the biocontainers or bioconda projects. However, in some cases the pipeline specified version maybe out of date.
To use a different container from the default container or conda environment specified in a pipeline, please see the updating tool versions section of the nf-core website.
Custom Tool Arguments
A pipeline might not always support every possible argument or option of a particular tool used in pipeline. Fortunately, nf-core pipelines provide some freedom to users to insert additional parameters that the pipeline does not include by default.
To learn how to provide additional arguments to a particular tool of the pipeline, please see the customising tool arguments section of the nf-core website.
nf-core/configs
In most cases, you will only need to create a custom config as a one-off but if you and others within your organisation are likely to be running nf-core pipelines regularly and need to use the same settings regularly it may be a good idea to request that your custom config file is uploaded to the nf-core/configs git repository. Before you do this please can you test that the config file works with your pipeline of choice using the -c parameter. You can then create a pull request to the nf-core/configs repository with the addition of your config file, associated documentation file (see examples in nf-core/configs/docs), and amending nfcore_custom.config to include your custom profile.
See the main Nextflow documentation for more information about creating your own configuration files.
If you have any questions or issues please send us a message on Slack on the #configs channel.
Running in the background
Nextflow handles job submissions and supervises the running jobs. The Nextflow process must run until the pipeline is finished.
The Nextflow -bg flag launches Nextflow in the background, detached from your terminal so that the workflow does not stop if you log out of your session. The logs are saved to a file.
Alternatively, you can use screen / tmux or similar tool to create a detached session which you can log back into at a later time.
Some HPC setups also allow you to run nextflow within a cluster job submitted your job scheduler (from where it submits more jobs).
Nextflow memory requirements
In some cases, the Nextflow Java virtual machines can start to request a large amount of memory.
We recommend adding the following line to your environment to limit this (typically in ~/.bashrc or ~./bash_profile):
NXF_OPTS='-Xms1g -Xmx4g'