--- title: "Getting Started" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Getting Started} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` The *strollur* package stores the data associated with your Amplicon Sequence analysis. This includes nucleotide sequences, abundance, sample and treatment assignments, taxonomic classifications, asv, otu and phylotype clusters, metadata, trees and various reports. It is designed to facilitate data analysis across multiple R packages with utility functions to read from [mothur](https://mothur.org), [qiime2](https://qiime2.org), [dada2](https://benjjneb.github.io/dada2/) and [phyloseq](https://www.bioconductor.org/packages/release/bioc/html/phyloseq.html). ## Installing strollur You can install the CRAN version with: ```{r, eval = FALSE} install.packages("strollur") ``` You can install the development version of *strollur* from [GitHub](https://github.com/mothur/strollur) with: ```{r, eval = FALSE} pak::pak("mothur/strollur") ``` ## Importing, Accessing and Transfering Data * [General Importing](https://mothur.org/strollur/articles/General_Importing.html) * [Importing data from mothur](https://mothur.org/strollur/articles/Importing_from_mothur.html) * [Importing data from qiime2](https://mothur.org/strollur/articles/Importing_from_qiime2.html) * [Importing data from phyloseq](https://mothur.org/strollur/articles/Importing_from_phyloseq.html) * [Accessing Data](https://mothur.org/strollur/articles/Accessing_Dataset.html) * [Data Transfers](https://mothur.org/strollur/articles/Data_Transfers.html)