Skip to content

Commit

Permalink
Use project name in echtvar encode
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Aug 13, 2024
1 parent 0c98285 commit ac4fe24
Show file tree
Hide file tree
Showing 2 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 @@ -55,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#306](https://github.com/genomic-medicine-sweden/nallo/pull/306) - Updated echtvar version
- [#307](https://github.com/genomic-medicine-sweden/nallo/pull/307) - Changed somalier relate to also run per sample on sampes with unknown sex, removing the need to wait on all samples to finish aligment before starting variant calling
- [#307](https://github.com/genomic-medicine-sweden/nallo/pull/307) - Changed the removal of n_files from meta from bam_infer_sex to nallo.nf
- [#312](https://github.com/genomic-medicine-sweden/nallo/pull/312) - Changed echtvar encode database creation to use dynamic `${project}` from samplesheet

### `Removed`

Expand Down
4 changes: 2 additions & 2 deletions modules/local/echtvar/encode/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ process ECHTVAR_ENCODE {
[
{
"field": "AF",
"alias": "COHORT_AF",
"alias": "${meta.id}_af",
"multiplier": 1000000
},
{
"field": "AC",
"alias": "COHORT_AC",
"alias": "${meta.id}_ac",
"multiplier": 1000000
},
Expand Down

0 comments on commit ac4fe24

Please sign in to comment.