nf-core/fastqrepair
A pipeline that can be used to recover corrupted FASTQ.gz files, drop or fix uncompliant reads, remove unpaired reads, and settles reads that became disordered
Introduction
This document describes the output produced by the pipeline.
Pipeline overview
The nf-core/fastqrepair pipeline is built using Nextflow. Output files are gathered into the pickup
subfolder of the output folder set up using the --outdir
command line parameter.
where
mysampleA_R1_repaired.fastq.gz
andmysampleA_R2_repaired.fastq.gz
are the repaired fastq filesmysampleA_R1_report.txt
andmysampleA_R2_report.txt
are the summaries of the cleaning task by FastqWiper- QC contains FastQC QC analysis results
- pipeline_info contains report metrics generated during the workflow execution
FastqWiper
Output files
pickup/
mysampleA_R1_report.txt
: a textual file that contains the results of the cleaning tasks of FastqWiper for read R1.mysampleA_R2_report.txt
: a textual file that contains the results of the cleaning tasks of FastqWiper for read R2.
FastqWiper is a Python package that makes an uncompliant FASTQ file well-formed by dropping and fixing pesky lines.
FastQC
Output files
fastqc/
*_fastqc.html
: FastQC report containing quality metrics.*_fastqc.zip
: Zip archive containing the FastQC report, tab-delimited data file and plot images.
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.
Pipeline information
Output files
pipeline_info/
- Reports generated by Nextflow:
execution_report.html
,execution_timeline.html
,execution_trace.txt
andpipeline_dag.html
. - Reports generated by the pipeline:
pipeline_report.html
,pipeline_report.txt
andsoftware_versions.yml
. Thepipeline_report*
files will only be present if the--email
/--email_on_fail
parameter’s are used when running the pipeline. - Reformatted samplesheet files used as input to the pipeline:
samplesheet.valid.csv
. - Parameters used by the pipeline run:
params.json
.
- Reports generated by Nextflow:
Nextflow provides excellent functionality for generating various reports relevant to the running and execution of the pipeline. This will allow you to troubleshoot errors with the running of the pipeline, and also provide you with other information such as launch commands, run times and resource usage.