Science Score: 31.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
  • .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 (8.8%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: wslh-bio
  • License: gpl-3.0
  • Language: Groovy
  • Default Branch: master
  • Size: 2.13 MB
Statistics
  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 3 years ago · Last pushed almost 3 years ago
Metadata Files
Readme Contributing License Citation

README.md

tbQC

GPL-3.0

tbQC is a NextFlow pipeline used for assembly of bacterial whole genome sequence data and identification of species and MLST scheme.

Table of Contents:

Usage
Workflow outline
Read trimming and quality assessment
Genome assembly
Assembly quality assessment
Genome coverage
MLST scheme
Species determination
Summary
Output files

Usage

The pipeline is designed to start from raw Illumina reads. All reads must be in the same directory. Then start the pipeline using: nextflow tbQC/main.nf --input [path-to-samplesheet] --outdir [path-to-outdir] -profile [docker,singularity,aws]

You can specify a version of the pipeline and run it directly from the github repository by using: nextflow wslh-bio/tbQC -r [version] --input [path-to-samplesheet] --outdir [path-to-outdir] -profile [docker,singularity,aws]

You can also test the pipeline with example data using -profile test: nextflow tbQC/main.nf --outdir [path-to-outdir] -profile test,[docker/singularity]

Workflow outline

Read trimming and quality assessment

Read trimming and cleaning is performed using BBtools v38.76 to trim reads of low quality bases and remove PhiX contamination. Then FastQC v0.11.8 is used assess the quality of the raw and cleaned reads.

Genome assembly

Assembly of the cleaned and trimmed reads is performed using Shovill v1.1.0.

Assembly quality assessment

Quality assessment of the assemblies is performed using QUAST v5.0.2

Genome coverage

Mean and median genome coverage is determined by mapping the cleaned reads back their the assembly using BWA v0.7.17-r1188 and calculating depth using samtools v1.10

MLST scheme

MLST scheme is classified using MLST v2.17.6. Multiple schemes are available for specific organisms, and STs from all available schemes are reported for those organisms.

Species determination

Species is determined by classifying reads using Kraken2 v2.0.8 and Mash.

Summary

Results are summarized using MultiQC v1.11 and Pandas v1.3.2.

Output files

Example of pipeline output: tbqc_results ├── bbduk │ ├── *.fastq.gz │ ├── *.adapter.stats.txt │ ├── *.bbduk.log │ ├── *.trim.txt │ └── bbduk_results.tsv ├── coverage │ └── coverage_stats.tsv ├── fastqc │ ├── *.html │ ├── *.zip │ └── fastqc_summary.tsv ├── kraken │ ├── *.mash.tsv │ └── mash_results.tsv ├── mash │ ├── *.kraken2.txt │ ├── kraken_results.tsv │ └── kraken2.log ├── mlst │ ├── *.alleles.tsv │ ├── *.mlst.tsv │ └── mlst_results.tsv ├── multiqc │ ├── multiqc_data │ │ ├── *.json │ │ ├── *.txt │ │ └── multiqc.log │ ├── multiqc_plots │ │ ├── pdf │ │ │ └── *.pdf │ │ ├── png │ │ │ └── *.png │ │ └── svg │ │ └── *.svg │ └── tbqc_multiqc_report.html ├── pipeline_info │ ├── *.html │ ├── *.txt │ ├── samplesheet.valid.csv │ └── software_versions.yml ├── quast │ ├── *.quast.report.tsv │ ├── *.transposed.quast.report.tsv │ └── quast_results.tsv ├── results │ └── tbqc_report.csv ├── samtools │ ├── *.bam │ ├── *.depth.tsv │ └── *.stats.txt └── shovill ├── *.contigs.fa ├── *.sam └── shovill_output ├── contigs.gfa ├── shovill.corrections ├── shovill.log └── spades.fasta Notable result files:
tbqc_report.csv - Summary table of each step in tbqc
tbQCmultiqcreport.html - HTML report generated by MultiQC

Warning: 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.

Authors

Kelsey Florek, WSLH Senior Genomics and Data Scientist
Abigail Shockey, WSLH Bioinformatician and Data Scientist

Contributions and Support

If you would like to contribute to this pipeline, please see the contributing guidelines.

This pipeline uses code and infrastructure developed and maintained by the nf-core community.

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: WSLH Bioinformatics
  • Login: wslh-bio
  • Kind: organization

Wisconsin State Laboratory of Hygiene Bioinformatics

Citation (CITATIONS.md)

# wslh-bio/tbQC: 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/)

- [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)

- [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
Last Year