ksumngs / v-met

A bare-bones, ridiculously simple metagenomics pipeline for viruses using Kraken 2 written in Nextflow.

Home Page:https://ksumngs.github.io/v-met

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

v-met

Testing Documentation Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. Nextflow GitHub tag (latest by date) GitHub license

A bare-bones, ridiculously simple metagenomics pipeline for viruses using Kraken 2 written in Nextflow.

This project follows the semver pro forma and uses the git-flow branching model.

Installation

  1. Install Nextflow (>= 21.10.6)
  2. Install [Conda]
  3. Install one or more of
  4. Download a Kraken2 database
  5. Download a BLAST database

Check out the Installation docs for a more nuanced take on the requirements.

Usage

Syntax

nextflow run ksumngs/v-met               \
  -profile <singularity,podman,docker>   \
  --platform <illumina,nanopore>         \
  --kraken2_db /path/to/kraken2/database \
  --blast_db /path/to/blast/database     \
  [--input /path/to/reads/folder]        \
  [--blast_target list]                  \
  [--outdir /path/to/output]

Example: Illumina reads with a relatively complete Kraken2 database

nextflow run ksumngs/yavsap          \
  -profile singularity               \
  --platform illumina                \
  --kraken2_db /databases/kraken2/nt \
  --blast_target 'none'

Example: Nanopore reads with a viral-only Kraken2 database

nextflow run ksumngs/yavsap             \
  -profile podman                       \
  --platform nanopore                   \
  --kraken2_db /databases/kraken2/viral \
  --blast_db /databases/blast/          \
  --blast_target classified

There are way more parameters than listed here. For a more complete description, please read the docs on Usage and Parameters.

About

A bare-bones, ridiculously simple metagenomics pipeline for viruses using Kraken 2 written in Nextflow.

https://ksumngs.github.io/v-met

License:MIT License


Languages

Language:Nextflow 89.9%Language:HTML 5.3%Language:Python 4.8%