Finding unique sequences in the file

I have csv file with 221 FASTA sequences. I want to find unique sequences from these. What is the solution for this problem in R?

Hi @Kuldeep,

Could you please provide a reproducible example (reprex)? That will make it easier for us to help you. Please read this guide to see how to create one:

unique() function takes a vector or list of objects and makes them unique.
so put the FASTA sequences into a list and then unique() them to find the unique ones.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.