-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from nf-core/dev
v1.0.0
- Loading branch information
Showing
39 changed files
with
1,592 additions
and
1,080 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Hi there! | ||
|
||
Thanks for telling us about a problem with the pipeline. Please delete this text and anything that's not relevant from the template below: | ||
|
||
#### Describe the bug | ||
A clear and concise description of what the bug is. | ||
|
||
#### Steps to reproduce | ||
Steps to reproduce the behaviour: | ||
1. Command line: `nextflow run ...` | ||
2. See error: _Please provide your error message_ | ||
|
||
#### Expected behaviour | ||
A clear and concise description of what you expected to happen. | ||
|
||
#### System: | ||
- Hardware: [e.g. HPC, Desktop, Cloud...] | ||
- Executor: [e.g. slurm, local, awsbatch...] | ||
- OS: [e.g. CentOS Linux, macOS, Linux Mint...] | ||
- Version [e.g. 7, 10.13.6, 18.3...] | ||
|
||
#### Nextflow Installation: | ||
- Version: [e.g. 0.31.0] | ||
|
||
#### Container engine: | ||
- Engine: [e.g. Conda, Docker or Singularity] | ||
- version: [e.g. 1.0.0] | ||
- Image tag: [e.g. nfcore/mag:1.0.0] | ||
|
||
#### Additional context | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Hi there! | ||
|
||
Thanks for suggesting a new feature for the pipeline! Please delete this text and anything that's not relevant from the template below: | ||
|
||
#### Is your feature request related to a problem? Please describe. | ||
A clear and concise description of what the problem is. | ||
Ex. I'm always frustrated when [...] | ||
|
||
#### Describe the solution you'd like | ||
A clear and concise description of what you want to happen. | ||
|
||
#### Describe alternatives you've considered | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
#### Additional context | ||
Add any other context about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Markdownlint configuration file | ||
default: true, | ||
line-length: false | ||
no-multiple-blanks: 0 | ||
blanks-around-headers: false | ||
blanks-around-lists: false | ||
header-increment: false | ||
no-duplicate-header: | ||
siblings_only: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,7 @@ work/ | |
results/ | ||
.DS_Store | ||
tests/test_data | ||
*.pyc | ||
.vscode | ||
db/ | ||
db/ | ||
tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
## nf-core/mag version 1.0.0 - | ||
# nf-core/mag: Changelog | ||
|
||
## v1.0.0 - 2019/12/20 | ||
|
||
Initial release of nf-core/mag, created with the [nf-core](http://nf-co.re/) template. | ||
As this release the pipeline will have the following functionailities: | ||
|
||
- short and long reads QC (fastp, porechop, filtlong, fastqc) | ||
- Lambda and PhiX detection and filtering (bowtie2, nanolyse) | ||
- Taxonomic classification of reads (centrifuge, kraken2) | ||
- Short read and hybrid assembly (megahit, metaspades) | ||
- metagenome binning (metabat2) | ||
- QC of bins (busco, quast) | ||
- annotation (cat/bat) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
FROM nfcore/base | ||
FROM nfcore/base:1.7 | ||
|
||
LABEL maintainer="Hadrien Gourlé <[email protected]>" | ||
LABEL description="Docker image containing all requirements for nf-core/mag pipeline" | ||
LABEL authors="Hadrien Gourlé <[email protected]>, Daniel Straub <[email protected]>" \ | ||
description="Docker image containing all requirements for nf-core/mag pipeline" | ||
|
||
COPY environment.yml / | ||
RUN conda env create -f /environment.yml && conda clean -a | ||
ENV PATH /opt/conda/envs/nf-core-mag-1.0.0/bin:$PATH | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,43 @@ | ||
# ![mag](https://raw.githubusercontent.com/nf-core/mag/master/docs/images/mag_logo.png) | ||
|
||
# nf-core/mag | ||
**Assembly, binning and annotation of metagenomes**. | ||
|
||
**Assembly, binning and annotation of metagenomes** | ||
|
||
[![Build Status](https://travis-ci.org/nf-core/mag.svg?branch=master)](https://travis-ci.org/nf-core/mag) | ||
[![Nextflow](https://img.shields.io/badge/nextflow-%E2%89%A50.32.0-brightgreen.svg)](https://www.nextflow.io/) | ||
[![Build Status](https://travis-ci.com/nf-core/mag.svg?branch=master)](https://travis-ci.com/nf-core/mag) | ||
[![Nextflow](https://img.shields.io/badge/nextflow-%E2%89%A519.01.0-brightgreen.svg)](https://www.nextflow.io/) | ||
|
||
[![install with bioconda](https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg)](http://bioconda.github.io/) | ||
[![Docker](https://img.shields.io/docker/automated/hadrieng/mag.svg)](https://hub.docker.com/r/hadrieng/mag) | ||
![Singularity Container available](https://img.shields.io/badge/singularity-available-7E4C74.svg) | ||
[![Docker](https://img.shields.io/docker/automated/nfcore/mag.svg)](https://hub.docker.com/r/nfcore/mag) | ||
|
||
## Introduction | ||
|
||
This pipeline is for assembly, binning and annotation of metagenomes. | ||
It supports both short and long reads, quality trims the reads and adapters with [https://github.com/OpenGene/fastp](fastp) and [https://github.com/rrwick/Porechop](porechop) and performs basic QC with [https://www.bioinformatics.babraham.ac.uk/projects/fastqc/](fastqc). | ||
|
||
### Introduction | ||
The pipeline then: | ||
|
||
The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It comes with docker / singularity containers making installation trivial and results highly reproducible. | ||
- assigns taxonomy to reads using [https://ccb.jhu.edu/software/centrifuge/](centrifuge) and/or [https://ccb.jhu.edu/software/kraken2/](kraken2) | ||
- performs assembly using [https://github.com/voutcn/megahit](megahit) and [http://cab.spbu.ru/software/spades/](spades), and checks their quality using [http://quast.sourceforge.net/quast](quast) | ||
- performs metagenome binning using [https://bitbucket.org/berkeleylab/metabat/src/master/](metabat2), and checks the quality of the genome bins using [https://busco.ezlab.org/](busco) | ||
|
||
### Documentation | ||
Furthermore, the pipeline creates various reports in the results directory specified, including a [https://multiqc.info/](multiqc) report summarizing some of the findings and software versions. | ||
|
||
The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It comes with docker containers making installation trivial and results highly reproducible. | ||
|
||
## Documentation | ||
|
||
The nf-core/mag pipeline comes with documentation about the pipeline, found in the `docs/` directory: | ||
|
||
1. [Installation](docs/installation.md) | ||
1. [Installation](https://nf-co.re/usage/installation) | ||
2. Pipeline configuration | ||
- [Local installation](docs/configuration/local.md) | ||
- [Adding your own system](docs/configuration/adding_your_own.md) | ||
- [Local installation](https://nf-co.re/usage/local_installation) | ||
- [Adding your own system config](https://nf-co.re/usage/adding_own_config) | ||
- [Reference genomes](https://nf-co.re/usage/reference_genomes) | ||
3. [Running the pipeline](docs/usage.md) | ||
4. [Output and how to interpret the results](docs/output.md) | ||
5. [Troubleshooting](docs/troubleshooting.md) | ||
5. [Troubleshooting](https://nf-co.re/usage/troubleshooting) | ||
|
||
## Credits | ||
|
||
### Credits | ||
This pipeline was written by [Hadrien Gourlé](https://hadriengourle.com) at [SLU](https://slu.se) and Daniel Straub ([@d4straub](https://github.com/d4straub)). | ||
|
||
This pipeline was written by [Hadrien Gourlé](https://hadriengourle.com) at [SLU](https://slu.se). | ||
Long read processing was inspired by [caspargross/HybridAssembly](https://github.com/caspargross/HybridAssembly) written by Caspar Gross [@caspargross](https://github.com/caspargross) |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ report_comment: > | |
report_section_order: | ||
nf-core/mag-software-versions: | ||
order: -1000 | ||
|
||
export_plots: true |
Oops, something went wrong.