We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1157cdd commit 3494a22Copy full SHA for 3494a22
1 file changed
src/pybool_ir/datasets/ctgov/baseline.py
@@ -0,0 +1,11 @@
1
+from pathlib import Path
2
+import zipfile
3
+import wget
4
+
5
+from pybool_ir.datasets.ctgov.datautils import CTGOV_URL
6
7
+def download_baseline(path: Path):
8
+ wget.download(CTGOV_URL)
9
+ with zipfile.ZipFile("ctg-public-xml.zip", "r") as f:
10
+ f.extractall(path)
11
0 commit comments