If you want to use a preconfigured environment, you only need to launch one of the following virtual machine providers.
If you want to use your local environment on your personal computer, you will need to:
- Install Nextstrain on your computer or launch one of the virtual machine providers listed above.
- Clone this repository with
git clone https://github.com/blab/veme-2022.git
and change into the resultingveme-2022
directory.
This workshop focuses on the following topics to introduce the details of Nextstrain's genomic epidemiology tools:
- specific file formats
- command line instructions required to analyze a specific pathogen
- instructions to visualize and interpret that pathogen's phylogeny in Auspice
This workshop does not include discussions about:
- installation of tools
- data curation
- workflow design
These topics are critical but outside the scope of a short workshop on genomic epidemiology.
By the end of this workshop, you will know how to:
- identify the necessary input files to perform a genomic epidemiology analysis with Nextstrain
- run commands in Nextstrain’s bioinformatics toolkit including Augur and Nextalign to convert input genomes and metadata into an annotated phylogenetic time tree that can be visualized locally or online
- inspect and understand the contents of Nextstrain toolkit command outputs
- visualize and interpret a phylogenetic tree produced by Nextstrain’s bioinformatics toolkit using Auspice or auspice.us
At the beginning of the SARS-CoV-2 pandemic, we knew little about this specific new virus, but we did have previous knowledge from SARS-CoV-1 and MERS-CoV outbreaks and a handful of complete SARS-CoV-2 genomes and metadata. Together, these data and previous knowledge allowed the Nextstrain team to prepare a situation report documenting the state of the pandemic at its earliest stages. A phylogenetic tree with 24 genomes strongly suggested that this new virus could transmit efficiently between humans and quickly across geographic regions.
Genomic epidemiology enabled detection of community spread in the Seattle area early in the pandemic before anyone was aware that SARS-CoV-2 was already so widespread in the community. These tools have been a key component of New Zealand's pandemic response, as documented in a Nextstrain narrative describing specific outbreaks in New Zealand.
The process for creating a Nextstrain analysis generally requires the following steps.
- Curate data.
- Collect genome sequences.
- Collect genome metadata.
- Prepare pathogen-specific configuration files and parameters (e.g., reference genomes, gene coordinates, clock rates, etc.).
- Analyze data.
- Run commands manually or in a workflow.
- Run commands locally or in the cloud.
- Here, we will focus on how to run commands and understand their inputs and outputs.
- Visualize and interpret analysis outputs.
- Run a local Auspice server.
- Drag-and-drop onto auspice.us.
- Upload data to GitHub or Nextstrain Groups and view through nextstrain.org.
In this tutorial, you will learn how to analyze previously curated data and then visualize and interpret the resulting annotated phylogenetic tree.
To start, we will inspect the input files for SARS-CoV-2 analysis. We will use a curated reference genome and annotations from Nextclade. See the data curation guide for more details.
Inspect the contents of the reference genome FASTA.
head data/reference.fasta
Then, check out the gene map with genomic coordinates in GFF format.
head data/genemap.gff
Next, inspect the genome sequences and metadata we have curated for this analysis. These consist of two text files, one in FASTA format and the other in a tab-separated values (TSV) format. Genome sequences have:
- One unique name per genome sequence that matches the name in the metadata.
- One FASTA sequence per genome.
head data/sequences.fasta
Note that Nextstrain also supports VCF files, as an alternate representation of sequences.
Genome metadata have:
- One tab-delimited record per genome sequence with a "strain" name that matches the genome sequence name.
- Required columns including "strain" and "date".
- As many additional columns as you like.
less -S data/metadata.tsv
To understand the evolutionary and epidemiological history of these samples, we need to:
- select a representative set of high-quality samples
- align their genomes
- infer a phylogeny
- infer a time-scaled phylogeny
- infer ancestral sequences and traits
- visualize the annotated phylogeny
We start by using Augur to select a representative set of high-quality samples. We determine the quality of the original data based on attributes of both the genome sequences and metadata.
Create a results directory to store our intermediate analysis outputs.
mkdir results/
Look at available Augur subcommands.
augur -h
Look at the help text for a specific Augur subcommand.
augur filter -h
Filter the data to eliminate low-quality or undesired data based on genome sequence or metadata attributes. In the following command, we filter by sequence length. We also force the inclusion of reference records that we will need for rooting the tree later.
augur filter \
--metadata data/metadata.tsv \
--sequences data/sequences.fasta \
--include config/include.txt \
--min-length 27000 \
--output-metadata results/filtered_metadata.tsv \
--output-sequences results/filtered_sequences.fasta
When we list the results directory after running this command, we see the corresponding filtered metadata and sequences files.
ls -l results/
After filtering for high-quality data, we often still have more samples than we can reasonably use to infer a phylogeny and we need to subsample our data. Effective subsampling is a research topic of its own, but most commonly we try to sample evenly through time and space. This approach attempts to account for sampling bias. The following command uses Augur's filter subcommand again, this time to select at most 30 samples evenly across all countries and year/month combinations in the metadata. We also force-include the reference sequence required to root the tree later on.
augur filter \
--metadata results/filtered_metadata.tsv \
--sequences results/filtered_sequences.fasta \
--group-by country year month \
--subsample-max-sequences 30 \
--include config/include.txt \
--output-metadata results/subsampled_metadata.tsv \
--output-sequences results/subsampled_sequences.fasta
Next, we align the genome sequences of our subsampled data to a single reference genome. This alignment ensures that all genomes have the same coordinates during tree inference. Nextalign can produce both an alignment of the nucleotide sequences and amino acid alignments for all genes defined in a given gene map. It can also produce comma-separated values (CSV) outputs including insertions relative to the reference genome and error messages per input genome. The following command just performs the simplest alignment of the nucleotide sequences.
nextalign run \
--input-ref data/reference.fasta \
--output-fasta results/aligned.fasta \
results/subsampled_sequences.fasta
Infer a divergence tree from the alignment. Augur's tree subcommand is a lightweight wrapper around existing tree builders, providing some standardization of the input alignment and output across tools. We use IQ-TREE by default, but other options include FastTree and RAxML.
augur tree \
--alignment results/aligned.fasta \
--output results/tree_raw.nwk
We can view this tree and its metadata in auspice.us or FigTree.
Note: All tree builders used by Augur are maximum-likelihood (ML) tools, enabling the "real-time" part of Nextstrain’s mission at the expense of the posterior and more sophisticated models available through Bayesian methods. The ML approach enables rapid prototyping to identify genomes to include in a more complex, longer-running Bayesian analysis.
With the alignment, the divergence tree, and the dates per sample from the metadata, we can infer a time-scaled phylogeny with estimated dates for internal nodes of the tree. Augur's refine subcommand is a lightweight wrapper around TreeTime. The following command roots the tree with a specific reference genome that we force-included earlier.
augur refine \
--alignment results/aligned.fasta \
--tree results/tree_raw.nwk \
--metadata results/subsampled_metadata.tsv \
--timetree \
--root "Wuhan-Hu-1/2019" \
--output-tree results/tree.nwk \
--output-node-data results/branch_lengths.json
This is the first part of the workflow that produces a "node data JSON" output file.
We will see more of these in subsequent steps.
The node data JSON file is a Nextstrain-specific file standard that stores key/value attributes per node in the phylogenetic tree.
Example attributes include clock-scale branch lengths, inferred collection dates, and inferred nucleotide sequences for ancestral nodes.
Unlike the divergence tree builders, augur refine
names internal nodes (e.g., NODE_0000000) so we can reference them in other downstream tools.
less results/branch_lengths.json
We now have enough information to export the initial time tree and its metadata for visualization in Auspice. This export step requires at least a Newick tree and a node data JSON file to produce an "Auspice JSON" file, another Nextstrain-specific file standard that represents a tree, its metadata, its node data, and details about how these data should all be visualized in Auspice.
mkdir -p auspice/
augur export v2 \
--tree results/tree.nwk \
--node-data results/branch_lengths.json \
--metadata results/subsampled_metadata.tsv \
--color-by-metadata country \
--output auspice/ncov.json
We can learn a lot from the tree and its metadata, but we don’t have any details about mutations on the tree, ancestral states, distances between sequences, clades, frequencies of clades through time, etc. The next set of commands will produce these annotations on the tree in the format of additional node data JSONs.
One of the most important annotations for our analysis is the list of nucleotide and amino acid mutations per branch in the tree.
These annotations allow us to identify putative biologically-relevant mutations and also define clades like those for variants of concern.
To create these annotations, we need to infer the ancestral sequence for each internal node in the tree with augur ancestral
.
This subcommand is a lightweight wrapper around TreeTime that infers the most likely sequence per position in the given alignment for internal nodes in the given tree.
augur ancestral \
--tree results/tree.nwk \
--alignment results/aligned.fasta \
--output-node-data results/nt_muts.json
The node data JSON output contains inferred or observed sequences per node and inferred nucleotide mutations per node. The output also contains the reference’s nucleotide sequence which gets used downstream.
less -S results/nt_muts.json
We can translate these inferred and observed sequences with augur translate
, to identify all corresponding amino acid mutations per branch in the tree.
augur translate \
--tree results/tree.nwk \
--ancestral-sequences results/nt_muts.json \
--reference-sequence data/genemap.gff \
--output-node-data results/aa_muts.json
The node data JSON output contains gene coordinates in an "annotations" key that will be used by Auspice later on to visualize mutations per gene.
less -S results/aa_muts.json
With these nucleotide and amino acid mutations per branch of the tree and a predefined list of mutations per clade, we can assign internal nodes and tips to clades. We define clades in a TSV file with clade names associated with specific alleles that occur at specific sites.
head config/clades.tsv
We can use this configuration file, the mutations, and tree to assign clades per internal node and tip.
augur clades \
--tree results/tree.nwk \
--mutations results/nt_muts.json results/aa_muts.json \
--clades config/clades.tsv \
--output-node-data results/clades.json
The node data JSON contains a "clade_membership" key for each node in the tree. Additionally, the first node in the tree for a given clade receives a "clade_annotation" key. This second key is used to visualize clade names as branch labels in Auspice.
less results/clades.json
In a similar way that we infer the ancestral nucleotides for each node in the tree at each position of the alignment, we can infer the ancestral states for other discrete traits available in the metadata.
The augur traits
subcommand is a lightweight wrapper around TreeTime that performs discrete trait analysis (DTA) on columns in the given metadata.
The command assigns the most likely ancestral states to named internal nodes and tips missing values for those states (i.e., samples for which metadata columns contain "?" values) and optionally produces confidence values per possible state.
The following command infers ancestral country with confidence values.
augur traits \
--tree results/tree.nwk \
--metadata results/subsampled_metadata.tsv \
--columns country \
--confidence \
--output-node-data results/traits.json
Inspect the resulting node data JSON output. Note that this output also contains the inferred transition matrix and equilibrium probabilities for each requested column.
less results/traits.json
We now have enough information to investigate mutations in the tree, which geographic locations those mutations might have first appeared in, and how those mutations correspond to known clades in the tree. We can export these into the Auspice JSON file that Auspice will use to visualize the tree and its annotations.
augur export v2 \
--tree results/tree.nwk \
--node-data results/branch_lengths.json \
results/nt_muts.json \
results/aa_muts.json \
results/clades.json \
results/traits.json \
--metadata results/subsampled_metadata.tsv \
--color-by-metadata country \
--geo-resolutions country \
--output auspice/ncov.json
To visualize the final tree, we can drag its JSON file on to the auspice.us landing page. If you are working from a Binder interface, download the JSON file in the auspice/
directory to your computer, open a file explorer/finder window, and drag the file on to the auspice.us interface.
If you are working from a GitPod interface or have Auspice installed locally, you can run a local Auspice server with the following command.
auspice view --datasetDir auspice/
Then, you can view the trees by navigating to http://localhost:4000 or the corresponding address from GitPod.
Note that while the following instructions describe a specific Nextstrain analysis, the same general steps will apply to any pathogen tree.
See also, the example SARS-CoV-2 tree produced by the analysis above.
Open the Nextstrain build for SARS-CoV-2 in Africa as of September 2021 and note layout of Auspice:
- Control panel on left
- Main panel on right
- Tree
- Map
- Diversity (or "Entropy")
- Frequencies
- Description
- Filter lists
- Metadata and downloads
Enable the grid view. Reset zoom on the map, as needed. Note how the URL changes in response to interactions with Nextstrain. Saving state in the URL allows us to capture specific, detailed views for loading again later. You can share this URL to send the same view to anyone else.
Filter the tree to just data from Africa. Note the appearance of the counts of total genomes shown and "Filtered to" section at the top of the main panel. Filters act on tips and affect all panels:
- The tree hides filtered tips.
- The map resets its zoom to geographic positions of tips remaining in tree.
- The diversity panel shows only mutations for remaining tips.
- The frequencies panel normalizes frequencies to sum to 100% for remaining tips.
Toggle filters with "eye" icons at the top of the main panel or below "Filter Data" section of the navigation panel. Remove filters with the "trash can" icons at the top of the main panel or below the "Filter Data" section.
We often need to communicate evolutionary patterns from genomic data in the context of time and geographic location. For example, we may want to understand how mutations at Spike (S) 681 emerged and transmitted across a specific country or region of Africa.
Most Nextstrain panels can communicate a subset of genotypic, geographic, and temporal information. The tree shows genotype through phylogenetic structure, time on the x-axis, and geography by color. The map shows genotype by color and geography on the x- and y-axes, but it does not communicate time. The frequency panel shows genotype by color and time along the x-axis, but it does not communicate geography.
How can we effectively show the evolution site S:681 through space and time?
Color by genotype using grid view with time tree on the left and map on the right, and frequencies enabled. To color by genotype, either a) find site 681 in the S gene in the entropy panel and click the corresponding bar, or b) select "Genotype" from the "Color By" menu on the left navigation, select "S", and enter 681 to the site field. The map still represents all time points. This view shows the global perspective of this site's evolution, but we cannot tell how these changes occurred through time in a specific country.
Turn off the entropy panel, so we can focus on the tree, map, and frequencies.
Filter to Kenya and set "geographic resolution" to "division". Reset zoom on map, as needed. In this view, information about timing of these genotypes is more effectively communicated by the frequencies panel than the tree. Note the additional "Filtered to" section with logical "and" between the existing "Africa" filter and the new "Kenya" filter.
Turn off the tree, keeping only the map and the frequencies panel. Now, we see the dynamics of S:681 mutations across divisions in Kenya and through time. The map still represents counts for all time points, so we have to imagine the waves of genotypes 681H and 681R taking place at the geographic level.
To understand the geographic distribution of recent strains in Kenya, drag the left handle of the date slider to early June 2021 or enter "06 / 01 / 2021" after first clicking on the start date below the slider. This filters the data to the most recent strains, revealing a couple of dozen cases that appear to map in the middle of Kenya.
Doublecheck the resolution of geographic information by coloring the map by "Admin Division". This view reveals that we actually don't have division-level information for these recent strains. "Reset" the date filter to confirm that many strains do have division-level information.
Color by genotype at S:681 again and drag the date slider from the right handle back to the beginning of 2020 or enter "02 / 01 / 2020" after first clicking on the end date below the slider. Then, drag the left handle of the slider slowly to the right and watch the map. This view allows you to filter the strains by time on the map view, showing when and where cases of a specific genotype first emerged. This requires manual intervention with Nextstrain.
"Reset" the date filter, turn on the tree, turn off the map, and select the "Scatter" tree layout. This view also clearly quantifies the transmission of S:681 genotypes through time with time on the x-axis, the genotype on the y-axis and color. Toggle off the button for "Show branches" below the "Scatter" section of the navigation panel, to focus on the observed genomes. There are benefits and disadvantages to each of these views, depending on the question you want to answer or the pattern you want to communicate.
Navigate to the most recent global SARS-CoV-2 analysis. Filter the tree to samples from your country of interest. Which clades have been circulating in that country in the last 6 months?
Change the map's geographic resolution to "division". Which divisions (or states) appear to have the most samples? Do all divisions have similar clade compositions?
Zoom into the spike gene "S" in the diversity/entropy panel and select the bar for one of the highest entropy positions in the gene. Looking at the tree, do the mutations at this site appear only once in the tree or multiple times? Looking at the map, are there any divisions in the country that experience different genotypes? Looking at the frequencies panel, which genotypes appear to be most successful recently?
- Work through additional exercises listed below
- Work through our guide to genomic epidemiology of SARS-CoV-2.
- Learn how to convert a series of shell commands into a Nextstrain workflow with Snakemake.
- Learn how to communicate results from genomic epidemiology analyses through Nextstrain Narratives.
- Get involved by contributing to Nextstrain, asking questions on our discussion site, or reaching out by email at hello@nextstrain.org.
- Ask about joining Nextstrain office hours at hello@nextstrain.org.
In addition to the annotated tree, we often want to know how frequencies of mutations, clades, or other traits change over time.
We can estimate these frequencies with the augur frequencies
subcommand.
This subcommand assigns a KDE kernel to each tip in the given tree centered on the collection date for the tip in the given metadata.
The command sums and normalizes the KDE values across all tips and at each timepoint ("pivot") such that frequencies equal 1 at all timepoints.
The following command estimates frequencies from the subsampled data at weekly timepoints with a KDE bandwidth of approximately 2 weeks (measured in years).
augur frequencies \
--metadata results/subsampled_metadata.tsv \
--tree results/tree.nwk \
--method kde \
--pivot-interval 1 \
--pivot-interval-units weeks \
--narrow-bandwidth 0.041 \
--proportion-wide 0.0 \
--output auspice/ncov_tip-frequencies.json
The output JSON file is an Auspice "sidecar JSON" that Auspice knows how to load for a given main Auspice JSON based on its filename.
We need to tell Auspice to expect this sidecar file when it loads the tree, so we need to modify the augur export v2
command we used early to include the following argument that tells Auspice which panels to display:
augur export v2 \
--tree results/tree.nwk \
--node-data results/branch_lengths.json \
results/nt_muts.json \
results/aa_muts.json \
results/clades.json \
results/traits.json \
--metadata results/subsampled_metadata.tsv \
--color-by-metadata country \
--geo-resolutions country \
--output auspice/ncov.json \
--panels tree map entropy frequencies
To visualize the final tree and frequencies, we can drag these files together onto the auspice.us landing page. If you are working from a Binder interface, download all of the files in the auspice/
directory to your computer, open a file explorer/finder window, and drag all of the files on to the auspice.us interface. You can also run auspice view
locally to see the tree and frequencies.