-
Notifications
You must be signed in to change notification settings - Fork 38
Description
Hi,
Do you have any idea why CuteSV reports a significantly lower number of SV calls compared to other tools?
It doesn’t seem to be an unusual case. I mapped my ~4 Gb genome using Minimap2 with RG tags added, and called SVs using three different tools. However, CuteSV returned very few variants.
I used the default depth cutoff of 10 for all callers. Here’s a summary of the commands and call counts:
SV calling with Sniffles2 (deth auto)
sniffles -i ${id}.sorted_dedup.rg.bam -v ${id}.ng_1snf2.vcfraw -t $NSLOTS --minsvlen $min_SV_size
grep "PASS" ${id}.ng_1snf2.vcfraw > ${id}.ng_1snf2_pass.vcf
SV calling with CuteSV (depth 10) also tried with depth -3
cuteSV -t $NSLOTS -l
SV calling with SVIM
svim alignment SVout_${id}/ ${id}.sorted_dedup.rg.bam "$refgenome" --min_sv_size $min_SV_size --minimum_depth 10
ln -s SVout_${id}/variants.vcf ${id}.ng_3svim_raw.vcf
