Skip to content

Commit d4f87aa

Browse files
authored
Merge pull request #376 from lcdb/v1.10.2rc
V1.10.2rc
2 parents a135433 + 131e3ac commit d4f87aa

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

docs/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
v1.10.2
5+
-------
6+
7+
Minor bugfix release.
8+
9+
- Fix multiqc configs so that they coorectly ignore any cutadapt fastqc zips when building the raw fastq section
10+
- Fix multiqc config for chipseq so it correctly cleans the ``_R2`` extension to better support PE ChIP-seq-like workflows
11+
- Fix functional enrichment label truncation to ensure that truncated labels are unique
12+
413
v1.10.1
514
-------
615
This is a bugfix and minor patch release.

lib/lcdbwf/R/functional_enrichment.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,7 @@ truncate <- function(obj, truncate_to){
610610
return(x)
611611
}
612612
obj@result$Description <- sapply(obj@result$Description, f)
613+
obj@result$Description <- make.unique(obj@result$Description)
613614
return(obj)
614615
}
615616

workflows/chipseq/config/multiqc_config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ extra_fn_clean_exts:
1313
- '.fastq'
1414
- '.salmon'
1515
- '_R1'
16+
- '_R2'
1617

1718

1819
# Modify the module search patterns to match what we're creating in the
@@ -35,6 +36,8 @@ sp:
3536
module_order:
3637
- fastqc:
3738
name: 'FastQC (raw)'
39+
path_filters_exclude:
40+
- '*.cutadapt.fastq.gz_fastqc.zip'
3841
path_filters:
3942
- '*.fastq.gz_fastqc.zip'
4043
- libsizes_table

workflows/rnaseq/config/multiqc_config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ fn_ignore_files:
4949
module_order:
5050
- fastqc:
5151
name: 'FastQC (raw)'
52+
path_filters_exclude:
53+
- '*.cutadapt.fastq.gz_fastqc.zip'
5254
path_filters:
5355
- '*.fastq.gz_fastqc.zip'
5456
- libsizes_table

0 commit comments

Comments
 (0)