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

Split sample SNP evidence files into bins for EFM #58

Merged
merged 16 commits into from
Sep 28, 2023
2 changes: 1 addition & 1 deletion .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip pytest pytest-cov black==22.6
pip install --upgrade pip pytest pytest-cov black==22.6
pip install .
- name: Style check
run: make style
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__pycache__/
lusSTR.egg-info/
.coverage
sandbox/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ help: Makefile

## test: run the automated test suite and print coverage information
test:
pytest -m "not snps" --cov=lusSTR --doctest-modules lusSTR/tests/test_*.py
pytest --cov=lusSTR --doctest-modules lusSTR/tests/test_*.py

## style: check code style
style:
Expand Down
3 changes: 2 additions & 1 deletion lusSTR/cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ def subparser(subparsers):
)
p.add_argument(
"--separate", action="store_true",
help="Use to separate EFM profiles in the 'filter' step."
help="Use to separate EFM profiles in the 'filter' step. If specifying for SNPs, "
"each sample will also be separated into 10 different bins for mixture deconvolution."
)
p.add_argument(
"--nofiltering", action="store_true",
Expand Down
Loading
Loading