Skip to content

Commit

Permalink
Split sample SNP evidence files into bins for EFM (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnmitchell authored Sep 28, 2023
1 parent cf07cc2 commit 023ae7a
Show file tree
Hide file tree
Showing 8 changed files with 9,308 additions and 4 deletions.
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

0 comments on commit 023ae7a

Please sign in to comment.