close
The Wayback Machine - https://web.archive.org/web/20190402121915/https://github.com/VascoElbrecht/JAMP
Skip to content
JAMP - Just Another Metabarcoding Pipeline
Branch: master
Clone or download
Latest commit 0098a28 Mar 10, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
JAMP
Tutorial
images
.gitignore
LICENSE
README.md
notes.txt

README.md

JAMP

Just Another Metabarcoding Pipeline - by Vasco Elbrecht - Twitter @luckylionde

JAMP is a modular metabarcoding pipeline, integrating different functions from USEARCH, VSEARCH, CUTADAPT and other programs. The pipeline is run as an R package and automatically generates the needed folders and summary statistics.

I am still working on the documentation, and the package is in beta thus if you run into issues or have questions please contact me per e-mail (luckylion07@googlemail.com).

For a a short tutorial on extracting haplotypes from metabarcoding datasets take a look at the denoising quick guide-Denoising-quick-guide!).

Initialling JAMP

Please keep in mind that JAMP needs Usearch, Vsearch, and Cutadapt installed to work properly. Thus Mac or linux based systems are recommended (and windows not officially supported!).

To install JAMP locally

# Installing dependencies needed fro JAMP
install.packages(c("bold", "XML", "seqinr", "devtools", "fastqcr"), dependencies=T)
# Load devtools and install package directly from GitHub
library("devtools")
install_github("VascoElbrecht/PrimerMiner", subdir="PrimerMiner")
install_github("VascoElbrecht/JAMP", subdir="JAMP")

You can also download the latest release of JAMP, extract and intal within R using install.packages("JAMP", repos = NULL, type="source")

Example of a system wide installation on a ubuntu|debian server:

wget https://github.com/VascoElbrecht/JAMP/archive/v0.53.tar.gz
tar -xzf v0.53.tar.gz
cd JAMP-0.53
sudo R CMD INSTALL JAMP
You can’t perform that action at this time.