You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the end of the DADA2 tutorial, when creating the phyloseq object, it is useful to add a DNAStringSet object (to be accessed by the refseq function) to keep track of the ASV sequences.
Now we can rename our ASVs to something more convenient in downstream analysis, while automatically retaining the corresponding unique sequence identifier:
taxa_names(ps) <- paste0("ASV", seq(ntaxa(ps)))
The text was updated successfully, but these errors were encountered:
At the end of the DADA2 tutorial, when creating the
phyloseq
object, it is useful to add aDNAStringSet
object (to be accessed by therefseq
function) to keep track of the ASV sequences.Now we can rename our ASVs to something more convenient in downstream analysis, while automatically retaining the corresponding unique sequence identifier:
The text was updated successfully, but these errors were encountered: