Skip to content
Open
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ You can install the Ancestry Prediction tool using poetry. Make sure that you ha
poetry add https://github.com/genxnetwork/flan/
```

## Getting Started

1. Verify prerequisites:
- `python3 --version` (should be 3.9+)
- `poetry --version`
2. From repo root:
- `poetry install`
- `poetry shell` (activates the virtual environment; alternatively, prefix commands with `poetry run`)
3. Run a quick local workflow (ensure you're in the Poetry environment):
- `flan global fit`
- `flan global predict --file=path/to/your_sample.vcf.gz` (use a sample VCF file from the repo's data directory or your own genomic data in VCF format)

## Usage

To fit the model globally, use the following command:
Expand Down