nf-core-crispriscreen
Process next generation sequencing data obtained from CRISPRi repression library screenings
Science Score: 52.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
✓DOI references
Found 8 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
✓Institutional organization owner
Organization mpusp has institutional domain (www.mpusp.mpg.de) -
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.1%) to scientific vocabulary
Repository
Process next generation sequencing data obtained from CRISPRi repression library screenings
Basic Info
- Host: GitHub
- Owner: MPUSP
- License: mit
- Language: Nextflow
- Default Branch: master
- Size: 27.5 MB
Statistics
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 4
- Releases: 2
Metadata Files
README.md
Introduction
nf-core/crispriscreen is a bioinformatics best-practice analysis pipeline to process next generation sequencing data obtained from CRISPRi repression library screenings.
The pipeline is built using Nextflow, a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It uses Docker/Singularity containers making installation trivial and results highly reproducible. The Nextflow DSL2 implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. Where possible, these processes have been submitted to and installed from nf-core/modules in order to make them available to all nf-core pipelines, and to everyone within the Nextflow community!
Pipeline summary
- Sub-sampling of reads (
Seqtk/sample, optional) - Read QC (
FastQC) - Generic adapter and quality trimming (
Trim Galore!) - Specific primer sequence trimming (
cutadapt) - Preparation of
*.fastalibrary (customRscript) - Alignment using (
Bowtie2)- Build index from
*.fastalibrary - Align reads to library
- Optional filtering by mapping quality
- Build index from
- Count reads per target and input file (
subread/featurecounts) - Quantify gene fitness score from multiple targets per gene
- Option 1: Gene fitness is calculated using
MageckMLE - Option 2: Gene fitness is calculated using
DESeq2
- Option 1: Gene fitness is calculated using
- Generate HTML report with fitness results (
R markdown) - Present QC for raw and mapped reads (
MultiQC)
Quick Start
- Install
Nextflow(>=23.04.0). It is recommended to useconda(ormamba/micromamba) to install all dependencies in a fresh environment.
console
conda create --name env_nf
conda activate env_nf
conda install -c conda-forge nextflow
- Install any of
Docker,Singularity(you can follow this tutorial),Podman,ShifterorCharliecloudfor full pipeline reproducibility (you can useCondaboth to install Nextflow itself and also to manage software within pipelines. Please only use it within pipelines as a last resort; see docs).
console
conda install -c conda-forge singularity
- Download the pipeline.
console
cd <your/target/dir>
git clone https://github.com/MPUSP/nf-core-crispriscreen
- Configure your computational resources. The pipeline comes with a set of basic resource definitions stored in
conf/base.config. Maximum resources in terms of memory, CPU cores, and time can be defined for each process flag separately, for example:
console
withLabel:process_low {
cpus = { 2 * task.attempt }
memory = { 12.GB * task.attempt }
time = { 4.h * task.attempt }
}
In order to use custom resource configurations, create a new file custom.config and execute the pipeline with the -c flag.
console
nextflow run <path/to/nf-core-crispriscreen> -c custom.config <all/other/options>
- Test it on the minimal dataset included with this repository. Since
nf-core-crispriscreenis not a canonicalnf-corepipeline (yet), it is necessary to indicate the path to the pipeline folder after therunstatement.
This is the generalized command to run the pipeline:
console
nextflow run <path/to/nf-core-crispriscreen> -profile <docker/singularity/podman/shifter/charliecloud/conda/institute> --input <sample_sheet> --fasta <fasta_file> --outdir <path/to/output>
This will run the pipeline on the enclosed test data using Singularity (recommended):
console
cd path/to/nf-core-crispriscreen
nextflow run ./ -profile test,singularity --outdir ./results
- The pipeline comes with config profiles called
docker,singularity,podman,shifter,charliecloudandcondawhich instruct the pipeline to use the named tool for software management. For example,-profile test,docker.- Please check nf-core/configs to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use
-profile <institute>in your command. This will enable eitherdockerorsingularityand set the appropriate execution settings for your local compute environment.- If you are using
singularity, please use thenf-core downloadcommand to download images first, before running the pipeline. Setting theNXF_SINGULARITY_CACHEDIRorsingularity.cacheDirNextflow options enables you to store and re-use the images from a central location for future pipeline runs.- If you are using
conda, it is highly recommended to use theNXF_CONDA_CACHEDIRorconda.cacheDirsettings to store the environments in a central location for future pipeline runs.
Documentation
The nf-core/crispriscreen pipeline comes with documentation about the pipeline usage and output.
Credits
The following people contributed to the nf-core/crispriscreen pipeline:
- Dr. Michael Jahn, MPUSP Berlin (ORCID) - main author and maintainer
- Dr. Ute Hoffmann, Science for Life Lab, Stockholm - contributor
Contributions and Support
If you would like to contribute to this pipeline, please see the contributing guidelines.
For further information or help, don't hesitate to get in touch on the Slack #crispriscreen channel (you can join with this invite).
Citations
The following scientific articles are related to this pipeline.
The new version of CRISPRi libary for which this Nextflow pipeline was developed:
Rui Miao, Michael Jahn, Kiyan Shabestary, Elton Paul Hudson. CRISPR interference screens reveal tradeoffs between growth rate and robustness in Synechocystis sp. PCC 6803 across trophic conditions bioRxiv 2023.02.13.528328. https://doi.org/10.1101/2023.02.13.528328
The original publication of the CRISPRi library for which a precursor of this pipeline was developed:
Lun Yao, Kiyan Shabestary, Sarah Björk, Johannes Asplund-Samuelsson, Hakan Joensson, Michael Jahn & Elton Paul Hudson. Pooled CRISPRi screening of the cyanobacterium Synechocystis sp PCC 6803 for enhanced industrial phenotypes. Nature Communications, 11 (1666), 1–13. 2020. https://doi.org/10.1101/823534
An extensive list of references for the tools used by the pipeline can be found in the CITATIONS.md file.
You can cite the nf-core publication as follows:
The nf-core framework for community-curated bioinformatics pipelines.
Philip Ewels, Alexander Peltzer, Sven Fillinger, Harshil Patel, Johannes Alneberg, Andreas Wilm, Maxime Ulysse Garcia, Paolo Di Tommaso & Sven Nahnsen.
Nat Biotechnol. 2020 Feb 13. doi: 10.1038/s41587-020-0439-x.
Owner
- Name: Max Planck Unit for the Science of Pathogens
- Login: MPUSP
- Kind: organization
- Location: Berlin, Germany
- Website: www.mpusp.mpg.de
- Repositories: 2
- Profile: https://github.com/MPUSP
Citation (CITATIONS.md)
# nf-core/crispriscreen: Citations ## [nf-core](https://pubmed.ncbi.nlm.nih.gov/32055031/) > Ewels PA, Peltzer A, Fillinger S, Patel H, Alneberg J, Wilm A, Garcia MU, Di Tommaso P, Nahnsen S. The nf-core framework for community-curated bioinformatics pipelines. Nat Biotechnol. 2020 Mar;38(3):276-278. doi: 10.1038/s41587-020-0439-x. PubMed PMID: 32055031. ## [Nextflow](https://pubmed.ncbi.nlm.nih.gov/28398311/) > Di Tommaso P, Chatzou M, Floden EW, Barja PP, Palumbo E, Notredame C. Nextflow enables reproducible computational workflows. Nat Biotechnol. 2017 Apr 11;35(4):316-319. doi: 10.1038/nbt.3820. PubMed PMID: 28398311. ## Pipeline tools - [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) > Andrews, S. (2010). FastQC: A Quality Control Tool for High Throughput Sequence Data [Online]. - [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/) > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924. ## Software packaging/containerisation tools - [Anaconda](https://anaconda.com) > Anaconda Software Distribution. Computer software. Vers. 2-2.4.0. Anaconda, Nov. 2016. Web. - [Bioconda](https://pubmed.ncbi.nlm.nih.gov/29967506/) > Grüning B, Dale R, Sjödin A, Chapman BA, Rowe J, Tomkins-Tinch CH, Valieris R, Köster J; Bioconda Team. Bioconda: sustainable and comprehensive software distribution for the life sciences. Nat Methods. 2018 Jul;15(7):475-476. doi: 10.1038/s41592-018-0046-7. PubMed PMID: 29967506. - [BioContainers](https://pubmed.ncbi.nlm.nih.gov/28379341/) > da Veiga Leprevost F, Grüning B, Aflitos SA, Röst HL, Uszkoreit J, Barsnes H, Vaudel M, Moreno P, Gatto L, Weber J, Bai M, Jimenez RC, Sachsenberg T, Pfeuffer J, Alvarez RV, Griss J, Nesvizhskii AI, Perez-Riverol Y. BioContainers: an open-source and community-driven framework for software standardization. Bioinformatics. 2017 Aug 15;33(16):2580-2582. doi: 10.1093/bioinformatics/btx192. PubMed PMID: 28379341; PubMed Central PMCID: PMC5870671. - [Docker](https://dl.acm.org/doi/10.5555/2600239.2600241) > Merkel, D. (2014). Docker: lightweight linux containers for consistent development and deployment. Linux Journal, 2014(239), 2. doi: 10.5555/2600239.2600241. - [Singularity](https://pubmed.ncbi.nlm.nih.gov/28494014/) > Kurtzer GM, Sochat V, Bauer MW. Singularity: Scientific containers for mobility of compute. PLoS One. 2017 May 11;12(5):e0177459. doi: 10.1371/journal.pone.0177459. eCollection 2017. PubMed PMID: 28494014; PubMed Central PMCID: PMC5426675.
GitHub Events
Total
- Create event: 1
- Release event: 1
- Issues event: 5
- Watch event: 1
- Issue comment event: 6
- Push event: 9
- Pull request event: 4
Last Year
- Create event: 1
- Release event: 1
- Issues event: 5
- Watch event: 1
- Issue comment event: 6
- Push event: 9
- Pull request event: 4
Dependencies
- actions/upload-artifact v3 composite
- nf-core/tower-action v3 composite
- actions/upload-artifact v3 composite
- nf-core/tower-action v3 composite
- mshick/add-pr-comment v1 composite
- actions/checkout v3 composite
- nf-core/setup-nextflow v1 composite
- actions/checkout v3 composite
- actions/setup-node v2 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- actions/setup-python v4 composite
- actions/upload-artifact v3 composite
- mshick/add-pr-comment v1 composite
- nf-core/setup-nextflow v1 composite
- psf/black stable composite
- dawidd6/action-download-artifact v2 composite
- marocchino/sticky-pull-request-comment v2 composite
- actions/stale 28ca1036281a5e5922ead5184a1bbf96e5fc984e composite
- actions/setup-python 0a5c61591373683505ea898e09a3ea4f39ef2b9c composite
- eWaterCycle/setup-singularity 931d4e31109e875b13309ae1d07c70ca8fbc8537 composite
- nf-core/setup-nextflow v1 composite
- actions/setup-python 0a5c61591373683505ea898e09a3ea4f39ef2b9c composite
- rzr/fediverse-action master composite
- zentered/bluesky-post-action 80dbe0a7697de18c15ad22f4619919ceb5ccf597 composite
