Skip to content

Commit

Permalink
Merge pull request nf-core#638 from nf-core/fix_fastqc_samplenames
Browse files Browse the repository at this point in the history
Fix fastqc samplenames in multiqc report
  • Loading branch information
ramprasadn authored Oct 22, 2024
2 parents a45198b + 4c0d58a commit b2088de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit b2088de

Please sign in to comment.