Skip to content

Commit

Permalink
Added Gffcompare to multiqc and patched up the config file
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Oct 8, 2024
1 parent 1b09cba commit e4b0df5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Fixed`

1. Now using `${meta.id}_trim` as prefix for `FASTQC` files

### `Dependencies`

### `Deprecated`
Expand Down
14 changes: 7 additions & 7 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ disable_version_detection: true
module_order:
- fastqc:
name: "FastQC (raw)"
info: "This section of the report shows FastQC results before adapter trimming."
path_filters:
- "*_raw*fastqc.zip"
- fastp
path_filters_exclude:
- "*_trim*"
- fastp:
- fastqc:
name: "FastQC (trimmed)"
info: "This section of the report shows FastQC results after adapter trimming."
name: "FastQC (trim)"
path_filters:
- "*_trim*fastqc.zip"
- "*_trim*"
- star:
- busco:
name: "BUSCO"
info: "Genome completeness statistics"
Expand All @@ -34,6 +33,7 @@ module_order:
info: "Annotation completeness statistics"
path_filters_exclude:
- "*seqkit.rmdup.fasta.txt"
- gffcompare:

extra_fn_clean_exts:
- ".seqkit"
Expand Down
1 change: 1 addition & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ process { // SUBWORKFLOW: PREPROCESS_RNASEQ

withName: '.*:PREPROCESS_RNASEQ:FASTQ_FASTQC_UMITOOLS_FASTP:FASTQC_TRIM' {
ext.args = '--quiet'
ext.prefix = { "${meta.id}_trim" }
publishDir = [
path: { "${params.outdir}/fastqc_trim" },
mode: params.publish_dir_mode,
Expand Down
2 changes: 2 additions & 0 deletions workflows/genepal.nf
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ workflow GENEPAL {
ch_benchmark_inputs.map { meta, gff, fasta, ref_gff -> [ meta, ref_gff ] }
)

ch_multiqc_files = ch_multiqc_files
| mix(BENCHMARK.out.stats)
ch_versions = ch_versions.mix(BENCHMARK.out.versions.first())

// Collate and save software versions
Expand Down

0 comments on commit e4b0df5

Please sign in to comment.