diff options
author | Arun Isaac | 2025-09-02 21:35:29 +0100 |
---|---|---|
committer | Arun Isaac | 2025-09-02 22:32:03 +0100 |
commit | 5d0eca109a50e2349a35571577b14589cb5b75a9 (patch) | |
tree | ba6dc7ceacdac66e962f5527a7e7e41c197e2102 /tests/test_pyhegp.py | |
parent | 831f3da094834547fd9a2d357a8006c065a85289 (diff) | |
download | pyhegp-5d0eca109a50e2349a35571577b14589cb5b75a9.tar.gz pyhegp-5d0eca109a50e2349a35571577b14589cb5b75a9.tar.lz pyhegp-5d0eca109a50e2349a35571577b14589cb5b75a9.zip |
Rename cat subcommand to cat-genotype.
A cat-phenotype subcommand is coming. Hence rename this.
Diffstat (limited to 'tests/test_pyhegp.py')
-rw-r--r-- | tests/test_pyhegp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pyhegp.py b/tests/test_pyhegp.py index 88f13ef..d34c331 100644 --- a/tests/test_pyhegp.py +++ b/tests/test_pyhegp.py @@ -221,7 +221,7 @@ def test_joint_workflow(tmp_path): assert ciphertext.exists() complete_ciphertext = tmp_path / "complete-genotype.tsv.hegp" result = runner.invoke( - main, ["cat", + main, ["cat-genotype", "-o", complete_ciphertext, *(str(tmp_path / f"genotype{i}.tsv.hegp") for i in range(4))]) assert result.exit_code == 0 |