Skip to content

Commit

Permalink
Merge pull request #15 from ToonRosseel/fix_calling_bed
Browse files Browse the repository at this point in the history
Fix calling bed
  • Loading branch information
ToonRosseel authored Jul 9, 2024
2 parents 36c111d + 5acc64d commit 5fedc35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ 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)
- `CNV_CALL_X`: fix input channel to "roi_chrx"
- allow sample numbers as sample names
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 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 5fedc35

Please sign in to comment.