Skip to content

Commit

Permalink
Merge pull request #376 from lcdb/v1.10.2rc
Browse files Browse the repository at this point in the history
V1.10.2rc
  • Loading branch information
daler authored Jul 4, 2023
2 parents a135433 + 131e3ac commit d4f87aa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

v1.10.2
-------

Minor bugfix release.

- Fix multiqc configs so that they coorectly ignore any cutadapt fastqc zips when building the raw fastq section
- Fix multiqc config for chipseq so it correctly cleans the ``_R2`` extension to better support PE ChIP-seq-like workflows
- Fix functional enrichment label truncation to ensure that truncated labels are unique

v1.10.1
-------
This is a bugfix and minor patch release.
Expand Down
1 change: 1 addition & 0 deletions lib/lcdbwf/R/functional_enrichment.R
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,7 @@ truncate <- function(obj, truncate_to){
return(x)
}
obj@result$Description <- sapply(obj@result$Description, f)
obj@result$Description <- make.unique(obj@result$Description)
return(obj)
}

Expand Down
3 changes: 3 additions & 0 deletions workflows/chipseq/config/multiqc_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ extra_fn_clean_exts:
- '.fastq'
- '.salmon'
- '_R1'
- '_R2'


# Modify the module search patterns to match what we're creating in the
Expand All @@ -35,6 +36,8 @@ sp:
module_order:
- fastqc:
name: 'FastQC (raw)'
path_filters_exclude:
- '*.cutadapt.fastq.gz_fastqc.zip'
path_filters:
- '*.fastq.gz_fastqc.zip'
- libsizes_table
Expand Down
2 changes: 2 additions & 0 deletions workflows/rnaseq/config/multiqc_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ fn_ignore_files:
module_order:
- fastqc:
name: 'FastQC (raw)'
path_filters_exclude:
- '*.cutadapt.fastq.gz_fastqc.zip'
path_filters:
- '*.fastq.gz_fastqc.zip'
- libsizes_table
Expand Down

0 comments on commit d4f87aa

Please sign in to comment.