Skip to content

Commit

Permalink
tweak multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
ajandria committed Jul 24, 2023
1 parent 1036465 commit a756ca6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
35 changes: 18 additions & 17 deletions assets/multiqc_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,23 @@ extra_fn_clean_exts:
- type: regex
pattern: "_cell_WTS_S\\d+$"

# General removal
sample_names_replace_regex: True
sample_names_replace:
"_T1": ""
"_L001": ""
"_1": ""

# For custom order of different reports in the final HTML report
module_order:
- fastqc
- fastp
- sortmerna
- star
- picard
- qualimap

# Some modules may not be placed in proper order (e.g. using the above method)
# then the following can be assessed to put `featurecounts` -> `Samtools` from the bottom
report_section_order:
Samtools:
before: qualimap
featureCounts:
before: Samtools
Salmon:
before: featureCcounts

- fastqc:
path_filters:
- "*_1_fastqc.zip" # analyse only R1 as R2 is usually artificially worse (due to technical reasons)
- fastp
- sortmerna
- star
- picard
- qualimap
- samtools
- featureCounts
- salmon
2 changes: 2 additions & 0 deletions modules/nf-core/fastqc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ process FASTQC {
tag "$meta.id"
label 'process_medium'

publishDir "${params.outDir}/fastqc", mode:'symlink'

input:
tuple val(meta), path(reads)

Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ manifest {
description = """RNA-seq pipeline for differential gene expression analysis (specfic to MUB infrastructure)"""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.7'
version = '1.1'
version = '1.2'
doi = ''
}

Expand Down Expand Up @@ -85,4 +85,4 @@ def check_max(obj, type) {
return obj
}
}
}
}

0 comments on commit a756ca6

Please sign in to comment.