Open t-neumann opened 5 years ago
I haven't encountered this myself. Not sure what's happening, but the "All samples were removed" message could be spurious, e.g. there's some other error reading the input and GISTIC2 handles all input errors by throwing up into its jeans and reporting that it didn't load any samples. Anyone else have ideas?
This part of CNVkit could use some help from someone more experienced with GISTIC, and/or a reimplementation of GISTIC or equivalent so that we don't keep getting tripped up by these incompatibilities.
I encountered this error. After some digging in gistic2's src, I found the cause of the error. Samples in my input file have too many segments, more the default max setting of 2500. To avoid this error, you need to set a higher max value with cli argument "-maxseq".
For example:
./gistic2 -b base_dir -seg seg_file -refgene refgene -maxseq 5000
Hi,
I don't know if this is actually a problem of the
cnvkit seg export
function orGISTIC2
, but due to the lack of some GISTIC2 issue repository, I decided to post it here.I wanted to run
GISTIC2
oncnvkit
results following the following thread:https://www.biostars.org/p/272370/
For this, I combined all produced
cnvkit.cns
into aseg
file like this:This works fine and produces a reasonable looking
seg
file.Now when I run
GISTIC2
on this however, it seems like there is something off with the data, because it says that all samples were removed by noise filtering:Now I am not sure whether this is generally a problem of the
cnvkit
results, a file format problem or actually aGISTIC2
problem. Has anyone ever encountered this?