Skip to content

Commit 16bc87e

Browse files
committed
Fix the check if feature files exist.
1 parent 8d494c5 commit 16bc87e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

deepprofiler/learning/profiling.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ def configure(self):
5151
print("Extracting output from layer:", self.config["profile"]["feature_layer"])
5252

5353
def check(self, meta):
54-
output_folder = self.config["paths"]["features"]
55-
output_file = self.config["paths"]["features"] + "/{}_{}_{}.npz"
54+
output_file = self.config["paths"]["features"] + "/{}/{}_{}.npz"
5655
output_file = output_file.format( meta["Metadata_Plate"], meta["Metadata_Well"], meta["Metadata_Site"])
5756

5857
# Check if features were computed before

0 commit comments

Comments
 (0)