Adding extra metadata via CSV/TSV/XLSXď
A common use case is to have additional metadata which you would like to add to the current dataset. If you created the dataset itself, then you may wish to keep certain data out of the dataset, as it may change frequently or be sensitive information which you donât want to share publicly.
Additional metadata (CSV / TSV / XLSX file(s)) can be dragged onto an existing dataset in Auspice. These extra data are processed within the browser, so no information leaves the client, which can be useful for viewing private metadata.
The general format is compatible with other popular tools such as MicroReact. The first column defines the names of the strains / samples in the tree, while the first row (header row) defines the metadata names. You can add as many columns you want, each will result in a different colouring of the data being made available. The separator can be either a tab character or a comma & the file extension should be .tsv
or .csv
, respectively. Excel files with file extension .xlsx
are also supported, but the metadata must be in the first sheet of the workbook. Older Excel files with the .xls
extension are not supported.
Example:ď
A small TSV file
with the following data:
strain |
secret |
USVI/19/2016 |
A |
USVI/28/2016 |
B |
USVI/41/2016 |
C |
USVI/42/2016 |
C |
can be dragged onto nextstrain.org/zika to add a âsecretâ color-by:
A more complex TSV file
can add more data to make use of additional features available:
strain |
secret |
secret__colour |
latitude |
longitude |
USVI/19/2016 |
A |
#f4e409 |
0 |
-120 |
USVI/28/2016 |
B |
#f49015 |
0 |
-115 |
USVI/41/2016 |
C |
#710000 |
0 |
-100 |
USVI/42/2016 |
C |
#710000 |
0 |
-120 |
This defines colours for the metadata (e.g. A
is yellow, B
is orange) as well as associating strains with (made up) geographic coordinates. When dragged onto nextstrain.org/zika, it looks like:
Adding extra colorings and filtersď
Most metadata columns will be added as colourings; once the data has been added they should appear as new entries in the âColor Byâ dropdown (Left-hand sidebar of Auspice). This means you can also filter by these traits using the âFilter Dataâ box.
An extra colouring is automatically created to represent the set of samples which were in the CSV/TSV/XLSX file â this allows you to easily filter the dataset to just those samples which you had in your metadata file.
You can choose the colours you want to associate with values by adding in a separate column with the same name + __colour
(see above example), or the suffix __color
may also be used. Currently the values in this column must be hex values such as #3498db
(blue). If the same value of metadata is associated with multiple, distinct, colours then the colours are blended together.
Adding geographic locationsď
If the columns latitude
and longitude
exist (or __latitude
and __longitude
) then you can see these samples on the map. This means that there will be a new geographic resolution available in the sidebar dropdown, labelled the same as the metadata filename you dropped on, which will plot the location on the map for those samples in the metadata file for which you provided positions for.
Additional metadata of this format defines lat-longs per-sample, which is different to Nextstrainâs approach (where we associate a location to a metadata trait). To resolve this, we create a new (dummy) trait whose values represent the unique lat/longs provided. In the above example screenshot, note that auspice groups USVI/19/2016
and USVI/42/2016
together on the map as their lat/longs are identical; the other metadata columns (e.g. secret
) are irrelevant in this case.
P.S. If the dataset itself doesnât contain any geographic data, then adding metadata will trigger the map to be displayed.
Privacyď
All data added via these additional metadata files remains in-browser, and doesnât leave your computer. This makes it safe for sensitive data.
Schemaď
The following fields are ignored completely. (Some of these may be allowed in the future when we have increased the features available here.)
name
div
vaccine
labels
hidden
mutations
url
authors
accession
traits
children
date
num_date
year
month
day
Fields which end with certain strings are treated as follows:
__autocolour
: this suffix is dropped, but the column is otherwise parsed as normal__colour
: see above section on adding colours__shape
: this column is currently ignored
The following columns are interpreted as geographic locations (see section above) and therefore are not added as a colouring:
__latitude
__longitude
latitude
longitude
The name of the first column is not used, but the first column is always taken to be the sample (strain) name.
Scale typesď
The type of the data is currently always categorical. This means that while numeric data will work, it wonât be very usable if there are many values.