Skip to content

Commit

Permalink
attempt to check paths
Browse files Browse the repository at this point in the history
  • Loading branch information
andresk159 committed Aug 17, 2023
1 parent a8095df commit 48db4a9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/aclimate_cpt/prediction_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,6 +1215,11 @@ def run_master(self):

all_path_season_dir = {k: glob.glob(os.path.join(v, '**')) for k, v in path_down.items()}
all_path_files = {k: [glob.glob(os.path.join(x, '**/*.tsv')) for x in v] for k, v in all_path_season_dir.items()}

for v in all_path_season_dir.values():
for x in range(len(v)):
print(f"path is: {v[x]}")


for k,v in predictors.items():
for x in range(len(v)):
Expand Down

0 comments on commit 48db4a9

Please sign in to comment.