-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,534 changed files
with
74,347 additions
and
11,854 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.9" | ||
# You can also specify other tool versions: | ||
# nodejs: "16" | ||
# rust: "1.55" | ||
# golang: "1.17" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/api/conf.py | ||
|
||
# If using Sphinx, optionally build your docs in additional formats such as PDF | ||
# formats: | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,45 @@ | ||
``` | ||
████████╗██████╗ ██╗ ██╗██╗ ██╗ █████╗ ██████╗ ██╗ | ||
╚══██╔══╝██╔══██╗██║ ██║██║ ██║██╔══██╗██╔══██╗██║ | ||
██║ ██████╔╝██║ ██║██║ ██║███████║██████╔╝██║ | ||
██║ ██╔══██╗██║ ██║╚██╗ ██╔╝██╔══██║██╔══██╗██║ | ||
██║ ██║ ██║╚██████╔╝ ╚████╔╝ ██║ ██║██║ ██║██║ | ||
╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ | ||
``` | ||
[![PyPI version](https://badge.fury.io/py/Truvari.svg)](https://badge.fury.io/py/Truvari) | ||
[![pylint](imgs/pylint.svg)](https://github.com/acenglish/truvari/actions/workflows/pylint.yml) | ||
[![FuncTests](https://github.com/acenglish/truvari/actions/workflows/func_tests.yml/badge.svg?branch=develop&event=push)](https://github.com/acenglish/truvari/actions/workflows/func_tests.yml) | ||
[![coverage](imgs/coverage.svg)](https://github.com/acenglish/truvari/actions/workflows/func_tests.yml) | ||
[![develop](https://img.shields.io/github/commits-since/acenglish/truvari/v3.5.0)](https://github.com/ACEnglish/truvari/compare/v3.5.0...develop) | ||
[![Downloads](https://pepy.tech/badge/truvari)](https://pepy.tech/project/truvari) | ||
|
||
![Logo](https://raw.githubusercontent.com/ACEnglish/truvari/develop/imgs/BoxScale1_DarkBG.png) | ||
Toolkit for benchmarking, merging, and annotating Structrual Variants | ||
|
||
[WIKI page](https://github.com/acenglish/truvari/wiki) has detailed documentation. | ||
See [Updates](https://github.com/acenglish/truvari/wiki/Updates) on new versions. | ||
Read our [Paper](https://doi.org/10.1101/2022.02.21.481353) for more details. | ||
📚 [WIKI page](https://github.com/acenglish/truvari/wiki) has detailed documentation. | ||
📈 See [Updates](https://github.com/acenglish/truvari/wiki/Updates) on new versions. | ||
📝 Read our [Paper](https://genomebiology.biomedcentral.com/articles/10.1186/s13059-022-02840-6) to learn more. | ||
|
||
## Installation | ||
## 💻 Installation | ||
Truvari uses Python 3.6+ and can be installed with pip: | ||
``` | ||
python3 -m pip install Truvari | ||
``` | ||
For details and more installation options, see [Installation](https://github.com/acenglish/truvari/wiki/Installation) on the wiki. | ||
|
||
## Quick Start | ||
## ⏩ Quick Start | ||
|
||
Each sub-command contains help documentation. Start with `truvari -h` to see available commands. | ||
|
||
The current most common Truvari use case is for structural variation benchmarking: | ||
``` | ||
truvari bench -b base.vcf.gz -c comp.vcf.gz -o output_dir/ | ||
``` | ||
## Truvari Commands | ||
## 🧬 Truvari Commands | ||
|
||
- [bench](https://github.com/acenglish/truvari/wiki/bench) - Performance metrics from comparison of two VCFs | ||
- [collapse](https://github.com/acenglish/truvari/wiki/collapse) - Collapse possibly redundant VCF entries | ||
- [anno](https://github.com/acenglish/truvari/wiki/anno) - Add SV annotations to a VCF | ||
- [vcf2df](https://github.com/acenglish/truvari/wiki/vcf2df) - Turn a VCF into a pandas DataFrame | ||
- [consistency](https://github.com/acenglish/truvari/wiki/consistency) - Consistency report between multiple VCFs | ||
- [divide](https://github.com/ACEnglish/truvari/wiki/divide) - Divide a VCF into independent parts | ||
- [vcf2df](https://github.com/acenglish/truvari/wiki/vcf2df) - Turn a VCF into a pandas DataFrame | ||
- [segment](https://github.com/acenglish/truvari/wiki/segment) - Normalization of SVs into disjointed genomic regions | ||
- [stratify](https://github.com/acenglish/truvari/wiki/stratify) - Count variants per-region in vcf | ||
- [divide](https://github.com/ACEnglish/truvari/wiki/divide) - Divide a VCF into independent shards | ||
- [phab](https://github.com/ACEnglish/truvari/wiki/phab) - Harmonize variant representations using MSA | ||
- [refine](https://github.com/ACEnglish/truvari/wiki/refine) - Automated bench result refinement with phab | ||
|
||
## More Information | ||
## 🔎 More Information | ||
|
||
Find more details and discussions about Truvari on the [WIKI page](https://github.com/acenglish/truvari/wiki). | ||
All documentation about Truvari is on the [WIKI](https://github.com/acenglish/truvari/wiki). Additional information about using Truvari can be found in [Discussions](https://github.com/ACEnglish/truvari/discussions) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.