Skip to content

Commit 4d2d75e

Browse files
Merge pull request #181 from timothymillar/call-pedigree
Add call-pedigree branch to CI testing
2 parents 2177a29 + ea3ea02 commit 4d2d75e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/python-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Python package
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ master, "call-pedigree"]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ master, "call-pedigree"]
1111

1212
jobs:
1313
build:

mchap/application/cli.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ def main():
1414
"Bayesian assemby of micro-haplotypes in polyploids"
1515
)
1616

17-
subprograms = ["assemble", "call", "call-exact", "call-pedigree", "version", "find-snvs"]
17+
subprograms = [
18+
"assemble",
19+
"call",
20+
"call-exact",
21+
"call-pedigree",
22+
"version",
23+
"find-snvs",
24+
]
1825
parser.add_argument(
1926
"program", nargs=1, choices=subprograms, help="Specify sub-program"
2027
)

0 commit comments

Comments
 (0)