Skip to content

Commit c0692e7

Browse files
authored
Merge pull request #17 from CIAT-DAPA/develop
added some print to find issue
2 parents 7c28143 + a8095df commit c0692e7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/aclimate_cpt/01_prediccion.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1258,8 +1258,8 @@ def cpt_merge_x_files(file_paths):
12581258
for x in range(len(v)):
12591259
if v[x] > 1:
12601260
print(k)
1261-
#print(x)
1262-
#print(all_path_files[k][x])
1261+
print(f">{v[x]}")
1262+
print(f">>>{all_path_files[k][x]}")
12631263
cpt_merge_x_files(all_path_files[k][x])
12641264

12651265
all_path_unzziped = {k: glob.glob(f"{v}\\**\\**.tsv") for k,v in path_down.items()}

src/aclimate_cpt/prediction_class.py

+3
Original file line numberDiff line numberDiff line change
@@ -1219,6 +1219,9 @@ def run_master(self):
12191219
for k,v in predictors.items():
12201220
for x in range(len(v)):
12211221
if v[x] > 1:
1222+
print(k)
1223+
print(f">{v[x]}")
1224+
print(f">>>{all_path_files[k][x]}")
12221225
self.cpt_merge_x_files(all_path_files[k][x])
12231226

12241227
#all_path_unzziped = {k: glob.glob(f"{v}\\**\\**.tsv") for k,v in path_down.items()}

0 commit comments

Comments
 (0)