This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Detect STRs in illumina library

I have paired-end whole genome sequencing data, and I would like to try finding STRs (Short Tandem Repeats) in this data. What tools should I use? There is no assembled reference genome available for my species.

repeats annotation str

Unfortunately these tools only work for long reads. I have Illumina short reads library.

1 answer

BBMask in the BBTools package can find short repeats, depending on the length you're interested in...

bbmask.sh in=reads.fq out=masked.fq maskrepeats minkr=1 maxkr=15 minlen=40 minrepeats=4 lowercase=t masklowentropy=f

That will mask (to lowercase) sequences with STRs with repeating subunits of length between 1 and 15. Then you can filter the reads with lowercase letters in them... I don't have a program for that though.

Log in to answer this question.