Skip to content

PyVista package #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@ VISTA is an integrated SV calling framework that leverages results of individual

## Installation

#### Option A: Install the Python Package

```shell
pip install git+https://github.com/nahid18/VISTA.git
```
#### Option B: Clone and Run

```shell
git clone https://github.com/Addicted-to-coding/VISTA/tree/main
cd VISTA
```

## Prerequisites
##### Prerequisites
- python 3.8

```shell
Expand All @@ -19,12 +26,23 @@ pip install matplotlib

## Usage

If you installed the `python` package, run this command from terminal:
```shell
vista
```

If you cloned the original repository, then follow this:

`python vista.py -i [MANTA VCF] [LUMPY VCF] [DELLY VCF] [GENOMESTRIP VCF] [CLEVER VCF] [POPDEL VCF] [OCTOPUS VCF] -s [mouse or human] -o [output folder]`

- Note: Input files' tool names should be all in lowercase

## EXAMPLE

- `vista -i manta_HG002.vcf delly_HG002.vcf genomestrip_HG002.vcf octopus_HG002.vcf -o ./results -s human`

or,

- `python vista.py -i manta_HG002.vcf delly_HG002.vcf genomestrip_HG002.vcf octopus_HG002.vcf -o ./results -s human`

## Command-line Options
Expand Down
Loading