Science Score: 57.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
    Found .zenodo.json file
  • DOI references
    Found 4 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.9%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: KJLambert
  • License: mit
  • Language: Groovy
  • Default Branch: main
  • Size: 7.15 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 4 years ago · Last pushed 11 months ago
Metadata Files
Readme License Citation

README.md

KJLambert/neutralsites

Meant to be run in a local environment. Nextflow run with conda run with docker Launch on Nextflow Tower

Introduction

neutralsites is A nextflow workflow for finding neutral sites in a genome. This applies to a specific situation where you need to find regions in a genome that are safe for genome editing. Safe from the perspective that these sites should not disrupt the functional genome. This is usually useful for non-model organisms since edit sites are often known for model organisms.

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

  • The pipeline is set up to run a script (findintergenicregions). This will return a file with a list of genome regions that are potentially good edit sites.

Enhanced Workflow

The pipeline now includes three processing steps:

  1. Find Candidate Sites: Identifies intergenic regions between convergent genes (200-500bp)
  2. Check Uniqueness (Optional): Uses BLAST to verify sites are unique within the genome
  3. Quality Assessment (Optional): Evaluates sites based on GC content, repeat content, sequence complexity, and length

For detailed information about the enhanced workflow, see ENHANCED_WORKFLOW.md.

Planned

  • Possibly add a step that deals with obtaining inputs from various sources (s3, custome API or NCBI datasets), currently the user provides a gbff or gbk file.
  • run a blast job to look for unique sites
  • update the output table with sites that are unique in the genome.

Quick start

  • install nextflow and uv
  • requires a genbank file (this is tested with gbff's from ncbi, which are usually annotated by prokka or bakta)
  • run nextflow run main.nf --gbk assets/GCA_006094495.1/genomic.gbff

Full documentation

input

The pipeline supports two input methods:

Single GenBank File

Provide a genbank file example for testing at assets/GCA_006094495.1/genomic.gbff. (specifically genes should be labeled via locus tag and the second part of the locus tag should be a relative number eg. GHJGK_12345)

bash nextflow run main.nf --gbk assets/GCA_006094495.1/genomic.gbff

Multiple GenBank Files (CSV Input)

For processing multiple files, create a CSV file with a header row and one column containing the paths to your GenBank files:

csv file_path /path/to/genome1.gbk /path/to/genome2.gbk /path/to/genome3.gbk

Then run the pipeline with: bash nextflow run main.nf --csv genomes.csv

Notes: - The CSV must have a header row - The column name can be anything (e.g., file_path, genbank_file, etc.) - All file paths must be valid and accessible - The pipeline will process each file in parallel - Only one input method can be used at a time (either --gbk or --csv, not both)

output

candidate_sites.tsv

region_name | convergent | length | sequence | sequence flanking 2000 | note | match_count | uniqueness

Contributions and support

Citations

This cookiecutter template is based off of the nf-core template. 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.

An extensive list of references for the tools used by the pipeline can be found in the CITATIONS.md file.

Owner

  • Login: KJLambert
  • Kind: user

Citation (CITATIONS.md)

# KJLambert/neutralsites: 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

<!-- TODO: Fill citation information for external pipelines -->

## Software packaging/containerisation tools

- [Docker](https://dl.acm.org/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
  • Push event: 9
Last Year
  • Push event: 9