-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from timothymillar/atomize
Beta v0.10.0
- Loading branch information
Showing
108 changed files
with
8,423 additions
and
960 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5,17 +5,17 @@ name: Python package | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: [ master, "call-pedigree"] | ||
pull_request: | ||
branches: [ master ] | ||
branches: [ master, "call-pedigree"] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
python-version: ["3.10", "3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -32,8 +32,7 @@ jobs: | |
uses: pre-commit/[email protected] | ||
- name: Build and install mchap | ||
run: | | ||
python setup.py sdist | ||
pip install dist/mchap-*.tar.gz | ||
pip install . | ||
- name: Test with pytest (bounds checked) | ||
env: | ||
NUMBA_BOUNDSCHECK: 1 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
usage: Split MCHap haplotype calls into phased blocks of basis SNVs. | ||
[-h] haplotypes | ||
|
||
positional arguments: | ||
haplotypes VCF file containing haplotype variants to be atomized. This file | ||
must contain INFO/SNVPOS. The INFO/DP and FORMAT/DP fields will | ||
be calculated from FORMAT/SNVDP if present in the input VCF | ||
file. The INFO/ACP and FORMAT/DS fields will be calculated from | ||
FORMAT/ACP or FORMAT/AFP if either is present in the input VCF | ||
file. Note that the FORMAT/ACP or FORMAT/AFP fields from the | ||
input VCF file will be normalized in the event that they do not | ||
sum to ploidy or one respectively. | ||
|
||
options: | ||
-h, --help show this help message and exit |
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.