Skip to content

Commit

Permalink
slight updates to listing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Flynn committed May 12, 2021
1 parent 48d0502 commit d393b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/harmony_to_tiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ def generate_metadata_json(self, output_location):

def list_experiments(self, *args, **kwargs):
print(f"Measurements located in Archive: {self.location}")
fmt = "{:<40}{:<30}{:>10}"
fmt = "{:<38}{:<50}{:>10}"
print(fmt.format("Measurement ID", "Plate Name", "# images"))
for key, records in self.image_data.items():
print(fmt.format(key, self.id_mapping[key], len(records)))
print(fmt.format(key, self.id_mapping[key][:50], len(records)))


def main():
Expand Down

0 comments on commit d393b72

Please sign in to comment.