Merge CNVnator output of multiple samples
I am using CNVnator for multiple samples. I get a output of each individual, now I want to merge them, if anyone knows how to do or what tool can make this.
cnv
wgs
• 3,234 views
•
link
updated
by
Ram
•
written
by
zhang248 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
VCF Merge
written by Muhammad •Hye, I am using ExpansionHunter to call TRs but I am using the catalog separately like for chr1, 2 up to X. Now I have …
-
How do I bin my individually assembled metagenome samples
written by prateekshettys •I am slightly confused about how I go about binning my individually assembled metagenome samples. Below I lay out my current plan: 1) Run assemblies …
-
Subset Seurat object from Xenium spatial data
written by Susmita MandalHi, I am working with Xenium TMA data, and I want to subset each sample individually from the seurat object. The samples are from different …
-
bcftools merge
written by evafinegan •Hello, I am trying to merge multiple vcf files. I have seven vcf files with 50-60 samples each. I tried: bcftools merge file_1.vcf.gz file_2.vcf.gz file_3.vcf.gz …
-
tagAlign to BAM
written by rbronsteWondering if anyone knows how to convert the ENCODE generated tagAlign file (combo of several replicate BAMs) into a merged BAM file? Or is it …
-
How to merge multiple CNV results of CNVnator
written by ChrisJ •Hello everyone: There is a problem puzzled me recently,I have got every individual CNV output by the tool of CNVnator,and next I want to merge …
-
CNVnator output filter
written by zhang248 •Hi, I'm using CNVnator to call CNVs. I have 30 samples, and the "duplication" of all the outputs has no one with e-val1<0.05. This is …
-
CNVnator for multiple samples
written by zhang248 •Hi, I want to use CNVnator to call CNV for multiple. Should I use the "-merge" parameter or not. If I can use "-merge", which …
-
Pipeline of structural variation calling using multiple tools for multiple samples
written by michealsmithI have 20 whole-genome sequences for certain complex disease and would like to look for rare or novel structural variants using different SV calling tools …
-
Cnvnator Genotype Regions Error : Can'T Find Bin 1000
written by William<p>I used CNVNator to call CNV in multiple samples and I am now using the same tool to genotype these CNV calls in all the …
I had the same problem and I haven't found any available tool to merge output from CNVnator...
I eventually used delly2 to find structural variants, because it handles multi-sample calling.
Sorry for replying to you so late. I just try delly2 and it seems to be very slow with command "delly call -t DEL -g $GENOME -o s1.bcf $BAM1 $BAM2 ......". So, I think I just can use "delly call -t DEL -g $GENOME -o s1.bcf $BAM1" separately and then merge them with "delly merge". Am I right?
Yes it's better to merge after, this is the pipeline I use (from the documentation on the github)
delly call on each bam :
delly call -t DEL -g your_genome.fa -o first_calling_1.bcf your_bam_1.bam
delly call -t DEL -g your_genome.fa -o first_calling_2.bcf your_bam_2.bam
merge all results :
delly merge -t DEL -o first_merge.bcf first_calling_1.bcf first_calling_2.bcf
re-genotyping on all detected positions :
delly/src/delly call -t DEL -g your_genome.fa -v first_merge.bcf -o second_calling_1.bcf your_bam_1.bam
delly/src/delly call -t DEL -g your_genome.fa -v first_merge.bcf -o second_calling_2.bcf your_bam_2.bam
merge with bcftools
bcftools merge -m id -O b -o final_merge.bcf second_calling_1.bcf second_calling_2.bcf
For the filters, I find that delly filter is too conservative, so I use my own filters (suppressing SVs with too much missing data, suppressing singletons...)
Thank you very much, especially for you are the first person who answer my question among my all questions! I'll try it.