Skip to content

Commit

Permalink
Merge branch 'missing_umaps_CW-5478' into 'dev'
Browse files Browse the repository at this point in the history
Fix expected UMAP filenames

See merge request epi2melabs/workflows/wf-single-cell!249
  • Loading branch information
mattdmem committed Jan 3, 2025
2 parents 94283a3 + 6a2224d commit e60bf4b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.4.1]
### Fixed
- Missing UMAP plots.

## [v2.4.0]
### Changed
- Output filenames to include sample alias.
Expand Down
4 changes: 2 additions & 2 deletions bin/workflow_glue/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ def _plot(data, title, hue):

repl_tabs = Tabs()

gene_umap_files = sample_dir.glob('gene.expression.umap*.tsv')
transcript_umap_files = sample_dir.glob('transcript.expression.umap*.tsv')
gene_umap_files = sample_dir.glob('*gene_expression_umap*.tsv')
transcript_umap_files = sample_dir.glob('*transcript_expression_umap*.tsv')

for i, (
gene_umap_file, transcript_umap_file
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ manifest {
description = 'Identification of cell- and UMI barcodes from single-cell sequencing.'
mainScript = 'main.nf'
nextflowVersion = '>=23.04.2'
version = '2.4.0'
version = '2.4.1'
}

epi2melabs {
Expand Down

0 comments on commit e60bf4b

Please sign in to comment.