variability-profile [artifact]

CONCEPT

A CONCEPT-type anviā€™o artifact. This artifact is typically generated, used, and/or exported by anviā€™o (and not provided by the user)..

šŸ”™ To the main page of anviā€™o programs and artifacts.

Provided by

anvi-profile

Required or used by

anvi-gen-variability-network anvi-gen-variability-profile

Description

As an artifact, this describes the variability information about a single sample calculated when you ran anvi-profile. To examine variability across samples, youā€™ll want to use this information (which is stored within your profile-db) to run anvi-gen-variability-profile.

Details about Variability

In the context of anviā€™o, variability means divergence of environmental populations from the reference used to perform metagenomic read recruitment.

Here, the term ā€œpopulationā€ describes an assemblage of co-existing microbial genomes in an environment that are similar enough to map to the context of the same reference genome.

The variability profile of a metagenome enables studies of microbial population genetics with anviā€™o.

There are two types of variability the program anvi-profile can characterize and store: substitutions and indels.

Substitutions: SNVs, SCVs, SAAVs

Anviā€™o can make sense of single-nucleotide variants (SNVs), single-codon variants (SCVs), and single-amino acid variants (SAAVs). See this article for more information.

You can learn the name of the table in which anviā€™o stores this in a given profile-db by running this command in your anviā€™o environment:

python -c 'import anvio.tables as t; print(t.variable_nts_table_name)'

This will tell you about its structure:

python -c 'import anvio.tables as t; print(t.variable_nts_table_structure)'

Indels: insertions and deletions

Anviā€™o can also characterize insertions and deletions found within an environment based on short-read recruitment results and will store in the following table:

python -c 'import anvio.tables as t; print(t.indels_table_name)'

Notes for programmers: The convention for the start position of an insertion is defined like so:

    pos_in_contig ...0123456 7890123456
    reference     ...CTACTAC TACTTCATGA...
    read              TACTAC TAC
    insertion               ā””ā”€ā”€ACTG

In this case, the start position of the insertion in the contig is 6. The insertion follows the position it is defined by. This is opposite to IGV, in which the insertion precedes the position it is defined by.

For deletions, there is no such ambiguity in the start position, since the deletion starts on a reference position, not in between two reference positions.

Edit this file to update this information.