Quickstart¶
Linux is the recommended OS. Nearly everything also works on MacOSX, but some programs (FastQC, Trinity) are troublesome.
Installations: Conda¶
elvers
uses conda, an open source package and environment management system, to manage tool installations. The quickest way to get started with conda is to install miniconda.
If you don't have conda yet, install miniconda (for Ubuntu 16.04 Jetstream image):
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
Be sure to answer 'yes' to all yes/no questions. You'll need to restart your terminal for conda to be active.
As a side note, if you're working on a cloud computing system, you may be able to find an image where conda has been pre-installed (such as this Ubuntu 16.04 Jetstream image).
Create a working environment and install Elvers!¶
elvers
needs a few programs installed in order to run properly. To handle this, we run elvers
within a conda environment that contains all dependencies.
Get the elvers
code
git clone https://github.com/dib-lab/elvers.git
cd elvers
When you first get elvers
, you'll need to create this environment on your machine:
conda env create --file environment.yml -n elvers-env
Now, activate that environment:
conda activate elvers-env
To deactivate after you've finished running elvers
, type conda deactivate
. You'll need to reactivate this environment anytime you want to run elvers.
Now. install the elvers
package
pip install -e '.'
Now you can start running workflows on test data!
Running test data¶
The Eel Pond protocol (which inspired the elvers
name) included line-by-line commands that the user could follow along with using a test dataset provided in the instructions. We have re-implemented the protocol here to enable automated de novo transcriptome assembly, annotation, and quick differential expression analysis on a set of short-read Illumina data using a single command. See more about this protocol here.
To test the default workflow:
elvers examples/nema.yaml default
This will download and run a small set of Nematostella vectensis test data (from Tulin et al., 2013)
Running Your Own Data¶
To run your own data, you'll need to create two files:
- a
tsv
file containing your sample info - a
yaml
file containing basic configuration info
Generate these by following instructions here: Understanding and Configuring Workflows.
Available Workflows¶
workflows
- preprocess: Read Quality Trimming and Filtering (fastqc, trimmomatic)
- kmer_trim: Kmer Trimming and/or Digital Normalization (khmer)
- assemble: Transcriptome Assembly (trinity)
- get_reference: Specify assembly for downstream steps
- annotate : Annotate the transcriptome (dammit)
- sourmash_compute: Build sourmash signatures for the reads and assembly (sourmash)
- quantify: Quantify transcripts (salmon)
- diffexp: Conduct differential expression (DESeq2)
- plass_assemble: assemble at the protein level with PLASS
- paladin_map: map to a protein assembly using paladin
end-to-end workflows:
- default: preprocess, kmer_trim, assemble, annotate, quantify
- protein assembly: preprocess, kmer_trim, plass_assemble, paladin_map
You can see the available workflows (and which programs they run) by using the --print_workflows
flag:
elvers examples/nema.yaml --print_workflows
Each included tool can also be run independently, if appropriate input files are provided. This is not always intuitive, so please see our documentation for running each tools for details (described as "Advanced Usage"). To see all available tools, run:
elvers examples/nema.yaml --print_rules
Additional Info¶
See the help, here:
elvers -h
References: