#prediction #graph #file #command #duck-db #out-dir #plot #predictosaurus #peptides

app predictosaurus

Uncertainty aware haplotype based genomic variant effect prediction

14 releases

new 0.3.2 Apr 29, 2025
0.3.1 Apr 29, 2025
0.2.10 Feb 14, 2025
0.2.9 Jan 17, 2025
0.1.1 Dec 4, 2024

#16 in Visualization

Download history 43/week @ 2025-01-09 121/week @ 2025-01-16 2/week @ 2025-01-30 2/week @ 2025-02-06 126/week @ 2025-02-13 7/week @ 2025-02-20 4/week @ 2025-02-27 72/week @ 2025-04-17 227/week @ 2025-04-24

299 downloads per month

MIT and GPL-3.0 licenses

6MB
4.5K SLoC

codecov Conda Version Conda Downloads

[!CAUTION] This tool is still experimental!
This means it may have bugs, and features are subject to change. Use it cautiously, and share feedback to help us improve. 🧪

Predictosaurus is a command-line tool designed for uncertainty-aware haplotype-based genomic variant effect prediction. It provides comprehensive functionality for building variant graphs, processing genomic features, and extracting peptide sequences. The tool integrates various bioinformatics processes to support efficient data analysis and visualization.

Table of Contents

Installation

To install Predictosaurus, you can install it via Bioconda:

conda install -c bioconda predictosaurus

Alternatively, you can use cargo, the Rust package manager:

cargo install predictosaurus

Usage

Run the tool from the command line using the following syntax:

predictosaurus <command> [options]

Use predictosaurus --help to view general help information, or predictosaurus <command> --help for specific command details.

Commands

Build

Builds a full variant graph from VCF files and stores it.

Options:

  • --calls <path>: Path to the VCF calls file.
  • --observations <sample=observations.vcf>: One or more observation files; ensure sample names match those in the calls file.
  • --min-prob-present <float>: Minimum probability for a variant to be considered for the graph generation. Defaults to 0.8.
  • --output <path>: Path to store the generated variant graphs.

Example:

predictosaurus build --calls path/to/calls.vcf --observations sample1=path/to/observations1.vcf sample2=path/to/observations2.vcf --min-prob-present 0.65 --output path/to/output/graphs.duckdb

Process

Retrieves subgraphs for individual features from the provided GFF file.

Options:

  • --features <path>: Path to the GFF file containing the features of interest.
  • --reference <path>: Path to the reference genome FASTA file.
  • --graph <path>: Path to the graph file generated by the build command.
  • --output <path>: Path to the output file storing the generated paths.

Example:

predictosaurus process --features path/to/features.gff --reference path/to/reference.fasta --graph path/to/graph.duckdb --output path/to/output/paths.duckdb

Peptides

Extracts peptide sequences using the graph generated by the build command. Peptides are extracted for each feature in the provided GFF file and written to a FASTA file.

Options:

  • --features <path>: Path to the GFF file containing the features of interest.
  • --reference <path>: Path to the reference genome FASTA file.
  • --graph <path>: Path to the graph file generated by the build command.
  • --interval : An interval defining the length of peptides that will be calculated. Defaults to 8-11.
  • --sample <str>: Name of the sample to extract peptides for.
  • --events <list of str>: List of events of interest.
  • --min-event-prob <float>: The probability of a peptide is calculated by first summing the probabilities of all events provided via --events for each variant that covers the peptide, as well as for any upstream variant that causes a frameshift. These summed probabilities are then multiplied together to determine the final probability of the peptide. The --min-event-prob option specifies the minimum threshold that this probability must meet for the peptide to be considered.
  • --background-events <list of str>: List of background events.
  • --max-background-event-prob <float>: Maximum probability of background events. For probability calculations check the --min-event-prob option.
  • --output <path>: Path to the output FASTA file storing the generated peptide sequences.

Example:

predictosaurus peptides --features path/to/features.gff --reference path/to/reference.fasta --graph path/to/graph.duckdb --interval 8-11 --sample sample1 --events event1 --events event2 --min-event-prob 0.8 --background-events event3 --max-background-event-prob 0.2 --output path/to/output/peptides.fasta

Plot

Creates visualizations and outputs them in HTML, TSV, or Vega format.

Options:

  • --input <path>: Path to the input data file generated with the process command.
  • --format <html|tsv|vega>: Desired output format.
  • --output <path>: Path to the output files.

Example:

predictosaurus plot --input path/to/paths.duckdb --format html --output /out_dir/

Example

This is an example of using Predictosaurus to build a graph, process it, and visualize the results:

# Step 1: Build the variant graph
predictosaurus build --calls calls.vcf --observations sample1=observations1.vcf sample2=observations2.vcf --output graphs.duckdb

# Step 2: Process the graph with a GFF file
predictosaurus process --features features.gff --reference reference.fasta --graph graphs.duckdb --output paths.duckdb

# Step 3: plot visualizations
predictosaurus plot --input paths.duckdb --format html --output out_dir/

License

Predictosaurus is licensed under the MIT License.

Dependencies

~84MB
~1.5M SLoC