I am trying to retrieve (from my fasta file) the OTUs that have more than 1000 sequences . This information is available in the make.shared output file
make.shared(list=yourListFile, group=yourGroup) - create your shared file
filter.shared(shared=current, mintotal=1000, makerare=F) - remove all OTUs with abundance less than 1000
list.otulabels(shared=current) - list otus with abundance >= 1000
get.otulabels(list=current) - select those OTUs from the list file
list.seqs(list=current) - list sequences in abundant OTUs
get.seqs(fasta=yourFastaFIle) - select sequences from fasta file in abundant OTUs
Just another question.
I was wondering if it would be possible to retrieve the OTUs that have sequence abundance comprised between 100 and 1000 sequences.