NBISweden / pipelines-nextflow

A set of workflows written in Nextflow for Genome Annotation.
GNU General Public License v3.0
42 stars 18 forks source link

Add MultiQC to Annotation Preprocessing pipeline #26

Open mahesh-panchal opened 4 years ago

mahesh-panchal commented 4 years ago

It would be nice to have a single report for all the output from both summary stats and busco:

process MultiQC {

    input:
    path logs
    path config

    output:
    path "multiqc_*"

    script:
    """
    multiqc -c $config .
    """

}