ncbi-cluster-tracker is a tool for creating static, shareable HTML reports for tracking SNP clusters within the NCBI Pathogen Detection system. Given an input sample sheet CSV containing BioSample IDs for isolates of interest (referred to as "internal isolates"), the tool creates a report with a high-level overview of all of the clusters associated with the internal isolates. For each cluster the output report links to the corresponding NCBI Pathogen Detection tree and displays additional visualizations such as a pairwise SNP distance matrix. Any additional metadata or alternate IDs provided in the sample sheet are used to further annotate the internal isolates within the report. If provided a directory to previous outputs, ncbi-cluster-tracker will compare to the previous report and indicate any new isolates, new clusters, and changes to isolate counts for existing clusters.
The Clusters tab contains a table of clusters and their associated isolate counts and any changes to isolate counts from the previous report. Columns in the table can be sorted and filtered.
A timeline chart is displayed below the table showing when each isolate was added to each cluster. Details about a particular isolate can be viewed by hovering over a datapoint.
The Isolates tab contains a table with details about the internal and external isolates, such as which cluster (if any) they belong to, whether they are new, their BioSample metadata, and any custom metadata provided in the sample sheet. SQL can be used directly in the report to query this table and the Clusters table.
The Cluster details tab displays information about each cluster. Clusters can be searched and selected in the dropdown menu. Each page displays the count (and change in count) of internal and external isolates in the cluster and links are provided to the SNP Tree Viewer in the NCBI Pathogen Detection website. A downloadable custom labels file is provided to annotate the tree in the SNP Tree viewer with any alternate sample IDs and other metadata.
This section of the Cluster details page shows a SNP distance matrix. If there are a large number of isolates in the cluster, the matrix is filtered to only show the nearest external isolates.
This section of the Cluster details page displays a histogram showing the isolate counts over time (by record creation date).
There are two options to provide the required cluster metadata and isolate metadata from Pathogen Detection:
- The default option is to use NCBI's public Google BigQuery
pdbrowser
dataset to automatically download the most recent isolate and cluster metadata. However, this option requires a Google Cloud Platform account and may not reflect the most up-to-date information in the Pathogen Detection system since there is up to a one day delay for data to be published to the BigQuery dataset. - Alternatively, users can manually provide this data by downloading search results as a TSV or CSV file from the Pathogen Detection Isolates Browser website and passing the file into the program using
--browser-file
. To create this file, copy-and-paste the BioSample IDs from the sample sheet into the Isolates Browser search bar and press Enter. Make sure all columns are displayed (select "Choose columns"), then click the "Download" button to export the Matched Isolates table as a CSV or TSV. This file will contain the isolate metadata for internal isolates and their associated clusters. To get the isolate metadata for external isolates in these clusters, a second search needs to be run. Copy the "SNP cluster" column from the downloaded file and paste into to the search bar along with the existing BioSample IDs from the previous search. Run the search again and download the second TSV or CSV as before, and pass the path to this file to ncbi-cluster-tracker with the--browser-file
option.
- Install as command-line program with
pip
. Requires Python version >=3.12.
pip install ncbi-cluster-tracker
- Ensure logged in to Google Cloud Platform account (if using BigQuery)
gcloud auth login
$ ncbi-cluster-tracker --help
usage: ncbi-cluster-tracker [-h] [--out-dir OUT_DIR] [--retry | --no-retry]
[--browser-file BROWSER_FILE] [--keep-snp-files] [--amr]
[--filter-amr FILTER_AMR] [--version]
[--compare-dir COMPARE_DIR]
sample_sheet
positional arguments:
sample_sheet Path to sample sheet CSV with required "biosample" column and
any additional metadata columns. Use "id" column for alternate
isolate IDs.
options:
-h, --help show this help message and exit
--out-dir OUT_DIR, -o OUT_DIR
Path to directory to store outputs. Defaults to "./outputs/" if
not specified.
--retry, --no-retry Do not query BigQuery or NCBI, assumes data has already been
downloaded to --out-dir.
--browser-file BROWSER_FILE
Path to isolates TSV or CSV downloaded from the Pathogen
Detection Isolates Browser with information for all internal and
external isolates. When specified, data in file will be used
instead of querying the BigQuery dataset.
--keep-snp-files Keep downloaded SNP and tree files in the output directory. By
default, files are deleted after processing.
--amr Include AMR tab in report with antimicrobial resistance genes
detected by AMRFinderPlus.
--filter-amr FILTER_AMR
Only include AMR genes in provided comma-separated list of
CLASS:SUBCLASS pairs in the AMR tab. Also adds filtered_amr
column to Isolates and Cluster details tab and matching genes to
tree labels
--version, -v Print the version of ncbi-cluster-tracker and exit.
--compare-dir COMPARE_DIR
Path to previous output directory to detect and report new
isolates.