any tutorials for structural variants filtering and prioritization
1
3
Entering edit mode
9.0 years ago
Ming Tommy Tang ★ 3.9k

Outputs from structural variants callers like breakdancer, lumpy and delly contains false positives.

How do you filter out those false positives and then prioritize the SVs? Anyone has a good resources or experiences on that ?

Thanks!

structural-variants DNA-sequencing • 3.9k views
ADD COMMENT
2
Entering edit mode

Check out: http://bcb.io/2014/08/12/validated-whole-genome-structural-variation-detection-using-multiple-callers/

Personally, I find the builtin delly filter works reasonably well.

ADD REPLY
0
Entering edit mode

Thanks Heng for your reply! I happen to read this post before. I am wondering have you written any tutorials for that?

ADD REPLY
0
Entering edit mode
9.0 years ago
Chirag Nepal ★ 2.4k

Any idea how you would filter predictions from breakdancer?

One simple way is filter the output based on prediction score and read counts

# $9= prediction score
# $10= supporting reads

cat libraryP1.ctx | awk 'BEGIN {OFS="\t"} { if ($9 >= 40 && $10 >= 5) { print $0 }}' | wc -l
ADD COMMENT

Login before adding your answer.

Traffic: 2287 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