Closed l0ka closed 1 year ago
EDIT: I managed to solve the warning simply by removing the "chr" from both the junctions and segments files.
Moreover, I also was experiencing issue #85 for some samples, so I tried using R 4.1, as suggested. It works without giving the error but I noticed that even for the samples for which I wasn't getting the error the results are different compared to when using R 4.2. For example, in the SVs classification (on the same sample):
jabba.ev <- events(gg.jabba, verbose = TRUE)
jabba.ev$meta$event[, table(type)]
## R 4.2
# Chromothripsis: 1
# Double minute: 1
# Templated insertion chains: 1
## R 4.1
# chromothripsis: 1
# del: 9
# dup: 3
# tyfonas: 1
Hi, I'm running JaBbA using as input the coverage file from
fragCounter
, the junctions bedpe fromDelly
, the segments rds file fromCNVkit
and purity and ploidy fromSequenza
. Both the bedpe and segfile have the chromosomes in UCSC format, with the "chr" prefix. As you know,fragCounter
removes the "chr" but when I run JaBbA with the coverage file with or without the "chr", I always get the output with the chromosome annotated with both "chr" and without. These are my input files:When I import JaBbA's output in gGnome I get:
And this is the plot for chromosome 7, with the warning about chr notation:
When I add the "chr" to the coverage file:
run JaBbA and import the output in gGnome, I still get the same result:
The plot now looks like that (and obviously I get exactly the same warning as before):
Am I doing something wrong? Thank you in advance!