Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
famosab committed Jan 29, 2025
1 parent 9d299f6 commit 39b93d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [#15](https://github.com/qbic-pipelines/vcftomat/pull/15) - template update to v3.1.1
- [#16](https://github.com/qbic-pipelines/vcftomat/pull/16) - Fix bcftools/reheader bug
- [#1](https://github.com/qbic-pipelines/vcftomat/pull/1) - template update to v3.2.0
- [#21](https://github.com/qbic-pipelines/vcftomat/pull/21) - template update to v3.2.0

## v1.1.0 - Newton Puccoon - 08.01.2025

Expand Down
9 changes: 7 additions & 2 deletions workflows/vcftomat.nf
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ workflow VCFTOMAT {

take:
ch_samplesheet // channel: samplesheet read in from --input
main:
fasta
fai
dict

main:
ch_versions = Channel.empty()
ch_multiqc_files = Channel.empty()

Expand Down Expand Up @@ -241,7 +244,9 @@ workflow VCFTOMAT {
[]
)

emit:multiqc_report = MULTIQC.out.report.toList() // channel: /path/to/multiqc_report.html
emit:
csv = VCF2MAT.out.csv // channel: *.csv
multiqc_report = MULTIQC.out.report.toList() // channel: /path/to/multiqc_report.html
versions = ch_versions // channel: [ path(versions.yml) ]

}
Expand Down

0 comments on commit 39b93d4

Please sign in to comment.