Skip to content

Commit 10cf51a

Browse files
committed
add simplisity python scripts for testing metadata transfer
1 parent f48d8de commit 10cf51a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

python_scripts/read_tablesfile.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import tskit
2+
import sys
3+
4+
for f in sys.argv[1:]:
5+
tables = tskit.TableCollection.load(f)
6+
for pop in tables.populations:
7+
print(pop)

python_scripts/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tskit = "0.5.1"

0 commit comments

Comments
 (0)