You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am currently dealing with a false-negative case involving a male sample. When the log2 ratio for genes on the sex chromosomes reaches 1.4, we suspect it might indicate a potential mosic-duplication. However, the do_call() function converts this into a copy number (cn=1) through the operation outarr["cn"] = absolutes.round().astype("int"), which is then recorded in the CNV file.
When exporting to VCF format using the segments2vcf() function, this entry is filtered out because at this point, ncopies==1 and abs_exp==1. This scenario wouldn't occur on diploid chromosomes, where typically would be ncopies==3 and abs_exp==2 for such a scenario.
The relevant code snippet for the filtering logic during VCF export is as follows:
forout_row, abs_expinzip(out_dframe.itertuples(index=False), abs_expect):
if (
out_row.ncopies==abs_expor# To accommodate data from the faulty v0.7.1 version (#53)notstr(out_row.probes).isdigit()
):
# Skip regions with neutral copy numbercontinue# or mark as "CNV" for subclonal events?
The text was updated successfully, but these errors were encountered:
Hello,
I am currently dealing with a false-negative case involving a male sample. When the log2 ratio for genes on the sex chromosomes reaches 1.4, we suspect it might indicate a potential mosic-duplication. However, the
do_call()
function converts this into a copy number (cn=1) through the operationoutarr["cn"] = absolutes.round().astype("int")
, which is then recorded in the CNV file.When exporting to VCF format using the
segments2vcf()
function, this entry is filtered out because at this point,ncopies==1
andabs_exp==1
. This scenario wouldn't occur on diploid chromosomes, where typically would bencopies==3
andabs_exp==2
for such a scenario.The relevant code snippet for the filtering logic during VCF export is as follows:
The text was updated successfully, but these errors were encountered: