Skip to content

Commit 2d58178

Browse files
Remove plink from CLI temporarily for bugfix release
1 parent 0ab162f commit 2d58178

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/test_plink_validation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def assert_files_identical(path1, path2):
2121
assert b1 == b2
2222

2323

24+
@pytest.mark.skip("Removing plink from CLI for bugfix release")
2425
# fmt: off
2526
@pytest.mark.parametrize(
2627
("args", "vcf_file"),
@@ -30,7 +31,7 @@ def assert_files_identical(path1, path2):
3031
("", "1kg_2020_chrM.vcf.gz"),
3132
# FIXME this needs some extra args to deal with sample ID format
3233
# ("", "msprime_diploid.vcf.gz"),
33-
]
34+
],
3435
)
3536
# fmt: on
3637
def test_conversion_identical(tmp_path, args, vcf_file):

vcztools/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,4 +286,4 @@ def vcztools_main():
286286
vcztools_main.add_command(index)
287287
vcztools_main.add_command(query)
288288
vcztools_main.add_command(view)
289-
vcztools_main.add_command(view_plink1)
289+
# vcztools_main.add_command(view_plink1)

0 commit comments

Comments
 (0)