nf-core/scdownstream
A single cell transcriptomics pipeline for QC, integration and making the data presentable
Filtered and unfiltered matrices
Throughout this documentation, you will find references to filtered
and unfiltered
matrices.
The unfiltered
matrices are matrices which still contain empty droplets, whereas the filtered
matrices have been filtered for empty droplets. A more technical definition can be found here. CellRanger
provides you with both matrices, whereas other quantification tools only provide you with the unfiltered
matrix.
The pipeline can handle the following cases:
- You have both
filtered
andunfiltered
matrices: Provide both matrices in the samplesheet and the pipeline will use theunfiltered
matrix for ambient RNA removal and thefiltered
matrix for all other steps. - You only have the
filtered
matrix: Provide thefiltered
matrix in the samplesheet and the pipeline will use it for all steps. In this case, onlydecontX
can be used for ambient RNA removal, as all other methods require theunfiltered
matrix. - You only have the
unfiltered
matrix: Provide theunfiltered
matrix in the samplesheet and the pipeline will automatically create afiltered
matrix by identifying empty droplets usingCellBender
.
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 at least 2 columns, and a header row as shown in the examples below.
Minimal samplesheet
The samplesheet needs to contain at least two columns: sample
and at least one out of filtered
and unfiltered
:
Full samplesheet
There are a couple of optional columns that can be used for more advanced features:
For CSV input files, specifying the batch_col
, label_col
, and unknown_label
columns will not have any effect, as no additional metadata is available in the CSV file.
Column | Description |
---|---|
sample | Unique sample identifier. Will be added to the pipeline output objects as sample column. |
filtered | May contain paths to h5ad , h5 , rds , or csv files. rds files may contain any object that can be converted to a SingleCellExperiment using the Seurat as.SingleCellExperiment function. csv files should contain a matrix with genes as columns and cells as rows. |
unfiltered | Same as filtered , but for the unfiltered cellranger or nf-core/scrnaseq output. If not provided, only decontX can be used for ambient RNA removal. |
batch_col | Column in the input file containing batch information. Defaults to batch . If the column does not exist in the input object, the pipeline will create a new column and put the sample identifier in it. If the batch_col is something else than batch , it will be renamed to batch during pipeline execution. |
symbol_col | Column in the input file containing gene symbol information. Defaults to index . There are two special values that can be used: index and none . index will use the row names of the matrix as gene symbols. none will trigger the pipeline to perform gene symbol conversion (this is not supported yet). The values from symbol_col will be copied to a column gene_symbols during pipeline execution. |
label_col | Column in the input file containing cell type information. Defaults to label . If the column does not exist in the input object, the pipeline will create a new column and put unknown in it. If the label_col is something else than label , it will be renamed to label during pipeline execution. |
unknown_label | Value in the label_col column that should be considered as unknown. Defaults to unknown . If the unknown_label is something else than unknown , it will be renamed to unknown during pipeline execution. If trying to perform integration with scANVI, more than one unique label other than unknown must exist in the input data. |
min_genes | Minimum number of genes required for a cell to be considered. Defaults to 1 . |
min_cells | Minimum number of cells required for a gene to be considered. Defaults to 1 . |
min_counts_cell | Minimum number of counts required for a cell to be considered. Defaults to 1 . |
min_counts_gene | Minimum number of counts required for a gene to be considered. Defaults to 1 . |
expected_cells | Number of expected cells, used as input to Cellbender. |
max_mito_percentage | Maximum percentage of mitochondrial reads for a cell to be considered. Defaults to 100 . |
An example samplesheet has been provided with the pipeline.
Running the pipeline
The typical command for running the pipeline is as follows:
This 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:
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>
.
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:
with:
You can also generate such YAML
/JSON
files via nf-core/launch.
Cell type annotation
Automated cell type annotation using Celltypist is supported. You can specify the models to use with the celltypist_model
parameter. If no models are specified, no cell type annotation will be performed.
Reference mapping
The pipeline supports mapping new samples into the latent space of an existing scVI/scANVI model. If it is an scANVI model, this approach allows transferring cell type annotations to new samples. If the scVI/scANVI model was built during a previous run of the pipeline, you can also use the previous output AnnData file as a base, and the pipeline will aggregate the new samples onto the base AnnData.
The following scenarious can be distinguished:
- You have a reference scVI model from an arbitrary source (e.g. from a publication) and you want to map new data into the latent space described by the model. In this case, you need to provide the path to the reference model via the
reference_model
parameter and set thereference_model_type
parameter toscvi
. Onlyscvi
andscanvi
may be used in theintegration_methods
parameter in this case.scanvi
will only work if he input data in the samplesheet contains at least some cell type annotations. Usingscanvi
in addition toscvi
as an integration method will extend the model so that it can be used for label transfer in future. - You have a reference scANVI model from an arbitrary source (e.g. from a publication) and you want to map new data into the latent space described by the model and transfer cell type annotations to the new data. In this case, you need to provide the path to the reference model via the
reference_model
parameter and set thereference_model_type
parameter toscanvi
. Onlyscanvi
may be used in theintegration_methods
parameter in this case. - You have a reference scVI/scANVI model as well as an output AnnData file from a previous run of the pipeline and you want to add more samples to the existing AnnData file. In this case, you need to provide the path to the reference model via the
reference_model
parameter and set thereference_model_type
parameter to eitherscvi
orscanvi
, depending on the type of the reference model. If an scANVI model is used, existing cell type annotations will be transferred to the new samples. The existing AnnData file should be provided via thebase_adata
parameter.
The pipeline will perform the preprocessing steps on the new samples as usual. During the integration step, the new samples will be mapped onto the latent space of the reference model. If base_adata
is provided, the new samples will then be aggregated onto the base file. The clustering, dimensionality reduction etc. will then be performed on the integrated object.
Skipping integration
This can be useful if you have assigned cell type annotations to the integrated object and want to perform further analysis based on these annotations.
If you want to run tasks after the integration step without performing integration, you can provide a previous result of the pipeline as the base_adata
parameter. You do not need to provide a samplesheet via the input
parameter in this case. In order to let the pipeline know which integration embeddings should be used, you need to provide the base_embeddings
parameter. If you stored the labels (e.g. cell type annotations) in a column other than label
, you can provide the column name via the base_label_col
parameter.
The pipeline will then re-execute the tasks after the integration step without performing integration again. Most interestingly, the pipeline will generate cell type specific UMAPs, clusterings, and PAGA graphs, if the clustering_per_label
parameter is set to true
.
GPU acceleration
This is an experimental feature and may produce errors. If you encounter any issues, please report them on the nf-core/scdownstream GitHub repository.
- GPU acceleration has only been tested with Docker, Singularity and Apptainer.
- Other container technologies might work, but have not been tested.
- Conda is not supported.
- CUDA 12.0 or later is required.
- The GPUs must have a Compute Capability of 7.0 or higher.
Tools with implemented support for GPU acceleration are:
- cellbender
- scvi-tools
- scVI/scANVI
- scAR
- solo
- rapids-singlecell
- scrublet
- harmony
- HVG identification
- Neighborhood graph calculation, UMAP and Leiden clustering
- Identification of characteristic genes (
rank_genes_groups
)
To utilize GPU acceleration, you need to specify the gpu
profile. This will make the tool steps use cuda-enabled environments and it will tell the tools to use the GPU. All processes which support GPU acceleration are marked with the process_gpu
label.
You also need to make sure that the tasks are run on a machine with a GPU. If all tasks are run on a machine with a GPU, no further action is needed. If you are running the pipeline on a slurm cluster, where there is dedicated queue for GPU jobs, you need additional configuration that might look like this:
More information on how to configure Slurm in Nextflow can be found here. Depending on your cluster configuration, you might need to adjust the clusterOptions
to one of the following:
--gpus 1
(as in the example above)--gpus-per-node=1
--gres=gpu:1
If your jobs get assigned to the correct nodes, but the GPU is not utilized, you might need to add the following configuration:
singularity.runOptions = '--no-mount tmp --writable-tmpfs --nv --env CUDA_VISIBLE_DEVICES=$CUDA_VISIBLE_DEVICES --env ROCR_VISIBLE_DEVICES=$ROCR_VISIBLE_DEVICES --env ZE_AFFINITY_MASK=$ZE_AFFINITY_MASK --env NVIDIA_VISIBLE_DEVICES=$CUDA_VISIBLE_DEVICES
The first part (--no-mount tmp --writable-tmpfs --nv
) is set by default in the gpu
profile. The rest of this configuration is needed in some cases to make the GPU visible to the container.
For different executors, the configuration might look different. Once a wider range of users have tested the GPU support, we will provide more detailed instructions for different executors.
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:
Reproducibility
It is a good idea to specify a 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/scdownstream 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. For example, at the bottom of the MultiQC reports.
To further assist in reproducbility, you can use share and re-use 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 see if your system is available in these configs 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 enviroment.
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-edge
or 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 steps in the pipeline, if the job exits with any of the error codes specified here it will automatically be resubmitted with higher requests (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 which container or conda environment a step of the pipeline uses 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
):