Skip to content

Commit

Permalink
RSeQC - clean_s_name.
Browse files Browse the repository at this point in the history
Closes #1484
  • Loading branch information
ewels committed Jul 6, 2021
1 parent bf6aef4 commit ed61446
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

### Module updates

- **RSeQC**
- Fixed minor bug in new TIN parsing where the sample name was not being correctly cleaned ([#1484](https://github.com/ewels/MultiQC/issues/1484))

## [MultiQC v1.11](https://github.com/ewels/MultiQC/releases/tag/v1.11) - 2021-07-05

### MultiQC new features
Expand Down
2 changes: 1 addition & 1 deletion multiqc/modules/rseqc/tin.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def parse_reports(self):
log.error(f"Could not parse file '{f['fn']}'")
continue

s_name = contents["Bam_file"]
s_name = self.clean_s_name(contents["Bam_file"], f)
contents.pop("Bam_file")
self.tin_data[s_name] = contents

Expand Down

0 comments on commit ed61446

Please sign in to comment.