This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Assembling long similar contigs

I have a program which outputs ~50 assembled transcripts which are about 10k base pairs long each.

My program already filters exact duplicate sequences but many of the assembled transcripts are very similar to one another.

Is there any existing assembly program which can connect sequences that are identical over 90% of their length?

assembly rna-seq

Have you tried CD-HIT? It can be used for clustering and comparing protein or nucleotide sequences.

2 answers

Dedupe from the BBMap package can remove similar sequences to leave only a single copy.

dedupe.sh in=transcripts.fa out=deduped.fa minidentity=0.9 maxedits=20

Also, another alternative: TACO

Log in to answer this question.