So I have to give all options separately. Is their some options for all in one ?
Running Delly for structural Variants
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
• 8,029 views
•
link
1 answer
-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')
• 1 views
•
link
• 1 views
•
link
Yes, but you can of course put them all in a simple shell script.
• 1 views
•
link
Log in to answer this question.