anvi-gen-variability-profile [program]

Generate a table that comprehensively summarizes the variability of nucleotide, codon, or amino acid positions. We call these single nucleotide variants (SNVs), single codon variants (SCVs), and single amino acid variants (SAAVs), respectively.

🔙 To the main page of anvi’o programs and artifacts.

Authors

A. Murat Eren (Meren)
Alon Shaiber

Can consume

contigs-db profile-db structure-db bin variability-profile splits-txt

Can provide

variability-profile-txt

Usage

This program takes the variability data stored within a profile-db and compiles it from across samples into a single matrix that comprehensively describes your SNVs, SCVs or SAAVs (a variability-profile-txt).

This program is described on this blog post, so take a look at that for more details.

Let’s talk parameters

Here is a basic run with no bells or whisles:

anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -C DEFAULT \ -b EVERYTHING

Note that this program requires you to specify a subset of the databases that you want to focus on, so to focus on everything in the databases, run anvi-script-add-default-collection and use the resulting collection and bin, as shown above.

You can add structural annotations by providing a structure-db.

anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -C DEFAULT \ -b EVERYTHING \ -s structure-db

Focusing on a subset of the input

Instead of focusing on everything (providing the collection DEFAULT and the bin EVERYTHING), there are three ways to focus on a subset of the input:

  1. Provide a list of gene caller IDs (as a parameter with the flag --gene-caller-ids as shown below, or as a file with the flag --genes-of-interest)

    anvi-gen-variability-profile -p profile-db \ -c contigs-db \ --gene-caller-ids 1,2,3

  2. Provide a splits-txt to focus only on a specific set of splits.

    anvi-gen-variability-profile -p profile-db \ -c contigs-db \ --splits-of-intest splits-txt

  3. Provide some other collection and bin.

    anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -C collection \ -b bin

Additional ways to focus the input

When providing a structure-db, you can also limit your analysis to only genes that have structures in your database.

anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -s structure-db \ --only-if-structure

You can also choose to look at only data from specific samples by providing a file with one sample name per line. For example

anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -C collection \ -b bin \ --samples-of-interest my_samples.txt

where my_samples.txt looks like this:

DAY_17A DAY_18A DAY_22A …

SNVs vs. SCVs vs. SAAVs

Which one you’re analyzing depends entirely on the engine parameter, which you can set to NT (nucleotides), CDN (codons), or AA (amino acids). The default value is nucleotides. Note that to analyze SCVs or SAAVs, you’ll have needed to use the flag --profile-SCVs when you ran anvi-profile.

For example, to analyze SAAVs, run

anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -C collection \ -b bin \ --engine AA

To analyze SCVs, run

anvi-gen-variability-profile -p profile-db \ -c contigs-db \ -C collection \ -b bin \ --engine CDN

Filtering the output

You can filter the output in various ways, so that you can get straight to the variability positions that you’re most interested in. Here are some of the filters that you can set:

  • The maximum number of variable positions that can come from a single split (e.g. to look at a max of 100 SCVs from each split, randomly sampled)
  • The maximum and minimum departure from the reference or consensus
  • The minimum coverage value in all samples (if a position is covered less than that value in one sample, it will not be reported for all samples)

–quince-mode

You can also set --quince-mode, which reports the variability data across all samples for each position reported (even if that position isn’t variable in some samples). For example, if nucleotide position 34 of contig 1 was a SNV in one sample, the output would contain data for nucleotide position 34 for all of your samples.

–kiefl-mode

The default behavior is to report codon/amino-acid frequencies only at positions where variation was reported during profiling (which by default uses some heuristics to minimize the impact of error-driven variation). Fair enough, but for some diabolical cases, you may want to report even invariant positions. When this flag is used, all positions are reported, regardless of whether they contained variation in any sample. The reference codon for all such entries is given a codon frequency of 1. All other entries (aka those with legitimate variation to be reported) remain unchanged. This flag can only be used with --engine AA or --engine CDN and is incompatible wth --quince-mode.

This flag was added in this pull request where you can read about all of the tests that were performed to ensure this mode is behaving properly.

Adding additional information

You can also ask the program to report the contig names, split names, and gene-level coverage statistics, which appear as additional columns in the output.

Edit this file to update this information.

Additional Resources

Are you aware of resources that may help users better understand the utility of this program? Please feel free to edit this file on GitHub. If you are not sure how to do that, find the __resources__ tag in this file to see an example.