Skip to content

Commit

Permalink
Merge pull request #16 from nf-cmgg/dev
Browse files Browse the repository at this point in the history
fix_calling_bed branch into master
  • Loading branch information
ToonRosseel authored Jul 10, 2024
2 parents 3c717db + b3ed555 commit c9179d8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0.0 - Dashing Doku - [2024-06-12]

Initial release of nf-cmgg/exomecnv, created with the [nf-core](https://nf-co.re/) template v2.13.
## v1.0.2 - Youthful Yamal [2024-07-10]

### `Added`
### `Fixes`

- First release of the pipeline - CNV calling using [ExomeDepth](https://github.com/vplagnol/ExomeDepth)
- `CNV_CALL_X`: fix input channel to "roi_chrx"
- allow sample numbers as sample names

## v1.0.1 - Lightning Lukaku [2024-06-19]

Expand All @@ -23,3 +22,11 @@ Initial release of nf-cmgg/exomecnv, created with the [nf-core](https://nf-co.re
### `Fixes`

- Sort file of merged CNV calls to fix an issue with TABIX (needs sorted VCF files)

## v1.0.0 - Dashing Doku - [2024-06-12]

Initial release of nf-cmgg/exomecnv, created with the [nf-core](https://nf-co.re/) template v2.13.

### `Added`

- First release of the pipeline - CNV calling using [ExomeDepth](https://github.com/vplagnol/ExomeDepth)
2 changes: 1 addition & 1 deletion assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
report_comment: >
This report has been generated by the <a href="https://github.com/nf-cmgg/exomecnv/releases/tag/1.0.1" target="_blank">nf-cmgg/exomecnv</a>
This report has been generated by the <a href="https://github.com/nf-cmgg/exomecnv/releases/tag/1.0.2" target="_blank">nf-cmgg/exomecnv</a>
analysis pipeline.
report_section_order:
"nf-cmgg-exomecnv-methods-description":
Expand Down
2 changes: 1 addition & 1 deletion bin/ExomeDepth_cnv_calling.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exons.GRanges <- GenomicRanges::GRanges(seqnames = exons$chromosome,

# ### read counts ###
cat("\nRead counting matrix\n")
ExomeCount.dafr <- read.table(file=countfile,sep="\t",header = TRUE)
ExomeCount.dafr <- read.table(file=countfile,sep="\t",header = TRUE,check.names = FALSE)
# print(head(ExomeCount.dafr))
# colnames(ExomeCount.dafr)

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ manifest {
description = """A nextflow pipeline for calling exome CNVs"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.0.1'
version = '1.0.2'
doi = ''
}

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/exomedepth/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ workflow EXOMEDEPTH {
.transpose(by:1)

CNV_CALL_X(
ch_roi_auto, cnv_chrx_ch
ch_roi_x, cnv_chrx_ch
)

//MODULE: Group autosomal and chrX CNV per sample (one file for each sample)
Expand Down

0 comments on commit c9179d8

Please sign in to comment.