10 lines
257 B
Python
10 lines
257 B
Python
from pathlib import Path
|
|
|
|
from tcga_downloader.download import build_gdc_command
|
|
|
|
|
|
def test_build_gdc_command():
|
|
cmd = build_gdc_command(Path("/tmp/m.tsv"), Path("/data"), processes=4, retries=3)
|
|
assert "gdc-client" in cmd[0]
|
|
assert "-m" in cmd
|