Skip to content

Commit fab48fe

Browse files
authored
Merge pull request #18 from CIAT-DAPA/develop
attempt to check paths
2 parents c0692e7 + 48db4a9 commit fab48fe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/aclimate_cpt/prediction_class.py

+5
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,11 @@ def run_master(self):
12151215

12161216
all_path_season_dir = {k: glob.glob(os.path.join(v, '**')) for k, v in path_down.items()}
12171217
all_path_files = {k: [glob.glob(os.path.join(x, '**/*.tsv')) for x in v] for k, v in all_path_season_dir.items()}
1218+
1219+
for v in all_path_season_dir.values():
1220+
for x in range(len(v)):
1221+
print(f"path is: {v[x]}")
1222+
12181223

12191224
for k,v in predictors.items():
12201225
for x in range(len(v)):

0 commit comments

Comments
 (0)