diff --git a/conf/modules.config b/conf/modules.config index 11c0980..cae5a45 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -18,7 +18,7 @@ process { publishDir = [ path: { "${params.outdir}/fastqc/raw" }, mode: params.publish_dir_mode, - pattern: '*.html' + pattern: '*.{html,zip}' ] } @@ -28,7 +28,7 @@ process { publishDir = [ path: { "${params.outdir}/fastqc/processed" }, mode: params.publish_dir_mode, - pattern: '*.html' + pattern: '*.{html,zip}' ] } @@ -37,7 +37,7 @@ process { publishDir = [ path: { "${params.outdir}/falco/raw" }, mode: params.publish_dir_mode, - pattern: '*.{html,txt}' + pattern: '*.{html,txt,zip}' ] } @@ -46,7 +46,7 @@ process { publishDir = [ path: { "${params.outdir}/falco/processed" }, mode: params.publish_dir_mode, - pattern: '*.{html,txt}' + pattern: '*.{html,txt,zip}' ] } @@ -354,7 +354,7 @@ process { publishDir = [ path: { "${params.outdir}/kraken2/${meta.db_name}/" }, mode: params.publish_dir_mode, - pattern: '*.{txt,report,fastq.gz}' + pattern: '*.{txt,fastq.gz}' ] } @@ -393,7 +393,7 @@ process { publishDir = [ path: { "${params.outdir}/krakenuniq/${meta.db_name}/" }, mode: params.publish_dir_mode, - pattern: '*.{txt,report,fastq.gz}' + pattern: '*.{txt,fastq.gz}' ] } diff --git a/docs/output.md b/docs/output.md index b60171e..f2e1445 100644 --- a/docs/output.md +++ b/docs/output.md @@ -13,7 +13,7 @@ The directories listed below will be created in the results directory after the The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes data using the following steps: - [FastQC](#fastqc) - Raw read QC -- [falco](#falco) - Alternative to FastQC for raw read QC +- [falco](#fastqc) - Alternative to FastQC for raw read QC - [fastp](#fastp) - Adapter trimming for Illumina data - [AdapterRemoval](#adapterremoval) - Adapter trimming for Illumina data - [Porechop](#porechop) - Adapter removal for Oxford Nanopore data @@ -22,7 +22,9 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d - [Filtlong](#filtlong) - Quality trimming and filtering for Nanopore data - [Bowtie2](#bowtie2) - Host removal for Illumina reads - [minimap2](#minimap2) - Host removal for Nanopore reads -- [samtoolsstats](#samtoolsstats) - Statistics from host removal +- [SAMtools stats](#samtoolsstats) - Statistics from host removal +- [SAMtools view](#samtoolsview) - Views and converts the alignment file +- [SAMtools bam2fq](#samtoolsbam2fq) - Converts the alignment file in fastq format - [Bracken](#bracken) - Taxonomic classifier using k-mers and abundance estimations - [Kraken2](#kraken2) - Taxonomic classifier using exact k-mer matches - [KrakenUniq](#krakenuniq) - Taxonomic classifier that combines the k-mer-based classification and the number of unique k-mers found in each species @@ -35,7 +37,7 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d - [MultiQC](#multiqc) - Aggregate report describing results and QC from the whole pipeline - [Pipeline information](#pipeline-information) - Report metrics generated during the workflow execution -### FastQC +### FastQC or falco
Output files @@ -48,6 +50,8 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d [FastQC](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/) gives general quality metrics about your sequenced reads. It provides information about the quality score distribution across your reads, per base sequence content (%A/T/G/C), adapter contamination and overrepresented sequences. For further reading and documentation see the [FastQC help pages](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/). +> ℹ️ Falco produces identical output to FastQC but in the `falco/` directory. + ![MultiQC - FastQC sequence counts plot](images/mqc_fastqc_counts.png) ![MultiQC - FastQC mean quality scores plot](images/mqc_fastqc_quality.png) @@ -68,6 +72,7 @@ It is used in nf-core/taxprofiler for adapter trimming of short-reads. - `fastp` - `.fastp.fastq.gz`: File with the trimmed unmerged fastq reads. - `.merged.fastq.gz`: File with the reads that were successfully merged. + - `.*{log,html,json}`: Log files in different formats.
@@ -213,15 +218,39 @@ By default, nf-core taxprofiler will only provide the `.bam` file if host remova > ℹ️ minimap2 is not yet supported as a module in MultiQC and therefore there is no dedicated section in the MultiQC HTML. Rather, alignment statistics to host genome is reported via samtools stats module in MultiQC report. -### Samtools stats +### SAMtools view -[Samtools stats](http://www.htslib.org/doc/samtools-stats.html) collects statistics from a `.sam`, `.bam`, or `.cram` alignment file and outputs in a text format. +[SAMtools view](http://www.htslib.org/doc/samtools-view.html) views and comverts a `.sam`, `.bam`, or `.cram` alignment file.
Output files - `samtoolsstats` - - `.stats`: File containing samtools stats output + - `.bam`: Alignment file in BAM format + +
+ +### SAMtools bam2fq + +[SAMtools bam2fq](http://www.htslib.org/doc/1.1/samtools.html) converts a `.sam`, `.bam`, or `.cram` alignment file to FASTQ format + +
+Output files + +- `samtoolsstats` + - `.fq.zg`: Alignment file in FASTQ gzip format. + +
+ +### SAMtools stats + +[SAMtools stats](http://www.htslib.org/doc/samtools-stats.html) collects statistics from a `.sam`, `.bam`, or `.cram` alignment file and outputs in a text format. + +
+Output files + +- `samtoolsstats` + - `.stats`: File containing samtools stats output.
@@ -330,7 +359,7 @@ The most summary file is the `*combined_reports.txt` file which summarises resul - `diamond` - `.log`: A log file containing stdout information - - `.sam`: A file in SAM format that contains the aligned reads + - `*.{blast,xml,txt,daa,sam,tsv,paf,log}`: A file containing alignment information in various formats, or taxonomic information in a text-based format. Exact output depends on user choice. diff --git a/docs/usage.md b/docs/usage.md index c765c68..9aa83a5 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -606,7 +606,18 @@ A detailed description can be found [here](https://github.com/bbuchfink/diamond/ #### Kaiju custom database -To build a kaiju database, you need two components: a FASTA file with the protein sequences (the headers are the numeric NCBI taxon identifiers of the protein sequences), and you need to define the uppercase characters of the standard 20 amino acids you wish to include. +To build a kaiju database, you need three components: a FASTA file with the protein sequences ,the NCBI taxonomy dump files, and you need to define the uppercase characters of the standard 20 amino acids you wish to include. + +> ⚠️ The headers of the protein fasta file must be numeric NCBI taxon identifiers of the protein sequences. + +To download the NCBI taxonomy files, please run the following commands: + +```bash +wget https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/new_taxdump.zip +unzip new_taxdump.zip +``` + +To build the database, run the following command (the contents of taxdump must be in the same location where you run the command): ```bash kaiju-mkbwt -a ACDEFGHIKLMNPQRSTVWY -o proteins proteins.faa