Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucpen committed Oct 16, 2024
1 parent f8b0759 commit 6e9227b
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 @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Functionality to create DROP databases and to add samples to existing ones [#147](https://github.com/genomic-medicine-sweden/tomte/pull/147)
- A switch `--skip_variant_calling` for variant calling [#169](https://github.com/genomic-medicine-sweden/tomte/pull/169)
- Functionality to output DROP databases in references folder with a working sample annotation sheet [#172](https://github.com/genomic-medicine-sweden/tomte/pull/172)

### `Fixed`

Expand Down
4 changes: 2 additions & 2 deletions modules/local/drop_put_together_exported_couts.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ process DROP_PUT_TOGETHER_EXPORTED_COUNTS {
"""
#!/bin/bash
mkdir -p exported_counts
if ($ae_run) ;then
if [[ "$ae_run" == "true" ]];then
cp ${exported_counts_ae}/* exported_counts/.
fi
if ($as_run) ;then
if [[ "$as_run" == "true" ]];then
cp ${exported_counts_as}/* exported_counts/.
fi
Expand Down

0 comments on commit 6e9227b

Please sign in to comment.