Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fastqc samplenames in multiqc report #638

Merged
merged 4 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Changed`

- Suffix used to identify unique fastq pairs from "\_T" to "\_LNUMBER" [#638](https://github.com/nf-core/raredisease/pull/638)
- Merge output from germlinecnvcaller [#635](https://github.com/nf-core/raredisease/pull/635)
- Update tools [#623](https://github.com/nf-core/raredisease/pull/623)
- Update output file name prefix for upd and chromograph to sample-based [#620](https://github.com/nf-core/raredisease/pull/620)
Expand Down
2 changes: 1 addition & 1 deletion assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ module_order:
extra_fn_clean_exts:
- "_sorted_md"
- type: regex
pattern: "_T[0-9]"
pattern: "_LNUMBER[0-9]{1,}"

disable_version_detection: true
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ workflow PIPELINE_INITIALISATION {
}
.combine( ch_input_counts )
.map { lineno, meta, fastqs -> //append line number to sampleid
new_meta = meta + [id:meta.id+"_T"+lineno[fastqs]]
new_meta = meta + [id:meta.id+"_LNUMBER"+lineno[fastqs]]
return [ new_meta, fastqs ]
}
.set { ch_samplesheet }
Expand Down
Loading