Skip to content
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

rebase docs_dev #74

Merged
merged 4 commits into from
Apr 15, 2024
Merged
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
12 changes: 7 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
test/
src/
.snakemake/
Benchmark/
.Benchmark/
.harpy_envs/
build/
Demultiplex/
Trim/
Variants/
QC/
Align/
SNP/
SV/
Impute/
Phase/
workflows/
rules
workflow/
2 changes: 1 addition & 1 deletion Modules/impute.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ curate your input VCF to meet criteria 3 and 4 prior to running the `impute` mod
After variants have been called, you may want to impute missing genotypes to get the
most from your data. Harpy uses `STITCH` to impute genotypes, a haplotype-based
method that is linked-read aware. Imputing genotypes requires a variant call file
**containing SNPs**, such as that produced by `harpy variants`. You can impute genotypes with Harpy using the `impute` module:
**containing SNPs**, such as that produced by `harpy snp`. You can impute genotypes with Harpy using the `impute` module:
```bash usage
harpy impute OPTIONS... INPUTS...
```
Expand Down
2 changes: 1 addition & 1 deletion Modules/phase.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ order: 2
You may want to phase your genotypes into haplotypes, as haplotypes tend to be more informative
than unphased genotypes (higher polymorphism, captures relationship between genotypes). Phasing
genotypes into haplotypes requires alignment files, such as those produced by `harpy align` and
a variant call file, such as those produced by `harpy variants` or `harpy impute`. **Phasing only
a variant call file, such as those produced by `harpy snp` or `harpy impute`. **Phasing only
works on SNP data**, and will not work for structural variants produced by `LEVIATHAN` or `NAIBR`. You can
phase genotypes into haplotypes with Harpy using the `phase` module:

Expand Down