Hello Laurie,
Thanks for using vsearch. I think I have just the command you are looking for:
--clusters string Output each cluster to a separate fasta file using the prefix string and a ticker (0, 1, 2, etc.) to construct the path and filenames.
Here's how you might use it.
vsearch --cluster_fast seqs.fna --id 0.97 --centroids otus.fna --clusters otu_number_
That will give you your OTU centroids in
otus.fna, and every read that went into every centroid inside a whole list of files with names like:
otu_number_1
otu_number_2otu_number_3otu_number_4
otu_number_5
each of which is a .fna file, even though it does not have the .fna file extension.
Colin