Running Delly for structural Variants
1
1
Entering edit mode
7.7 years ago
always_learning ★ 1.1k

I am running Delly commands to get SV and used these two commands .

             1. delly call -t DEL -g genome.fa -o s1.bcf S1_L001.sorted.bam
             2. delly call -g genome.fa -o s1-All.bcf S1_L001.sorted.bam

In both cases (1) and (2) , its calling "DELETION" only not other types of SV.

Can some one help me with Delly options that can call all types of SV's like DELETION, DUPLICATION etc ?

Thanks

Delly SV • 6.7k views
ADD COMMENT
2
Entering edit mode
7.7 years ago
trausch ★ 1.9k

-t DEL # Deletions

-t INS # Insertions

-t INV # Inversions (3' to 3' and 5' to 5')

-t DUP # Tandem Duplications

-t TRA # Inter-chromosomal translocations (3' to 3', 3' to 5', 5' to 3' and 5' to 5')

ADD COMMENT
0
Entering edit mode

So I have to give all options separately. Is their some options for all in one ?

ADD REPLY
0
Entering edit mode

Yes, but you can of course put them all in a simple shell script.

ADD REPLY
0
Entering edit mode

yes That I can do off course. Any idea if you can merge all files into one as well ?

ADD REPLY
0
Entering edit mode

Sure, you can just merge (concatenate) them together:

bcftools concat -a -O b -o merged.bcf DEL.bcf INS.bcf ...

ADD REPLY

Login before adding your answer.

Traffic: 1789 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6