Skip to content

Commit

Permalink
Fix the check if feature files exist.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkkienkeli committed May 18, 2021
1 parent 8d494c5 commit 16bc87e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions deepprofiler/learning/profiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def configure(self):
print("Extracting output from layer:", self.config["profile"]["feature_layer"])

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

# Check if features were computed before
Expand Down

0 comments on commit 16bc87e

Please sign in to comment.