From 7b7afb7d46fda4a7050eb3b41a099cac78020b80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20=20MENAGER?= <herve.menager@pasteur.fr> Date: Tue, 3 Oct 2017 16:13:49 +0200 Subject: [PATCH] add a temporary test script for creation of the inittable --- inittable_test.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 inittable_test.py diff --git a/inittable_test.py b/inittable_test.py new file mode 100644 index 00000000..725bfa63 --- /dev/null +++ b/inittable_test.py @@ -0,0 +1,7 @@ +from jass.models.worktable import create_inittable_file +input_data_path = '/home/hmenager/jass/jass/test/data_test1/*chr*.txt' +init_covariance_path = '/home/hmenager/jass/jass/test/data_test1/COV.txt' +regions_map_path = '/home/hmenager/jass/jass/test/data_test1/regions.txt' +description_file_path = '/home/hmenager/jass/jass/test/data_test1/summary.csv' +init_table_path = '/tmp/test.h5' +create_inittable_file(input_data_path, init_covariance_path, regions_map_path, description_file_path, init_table_path) -- GitLab