Skip to content

Commit

Permalink
little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-parker committed Oct 4, 2024
1 parent 794d434 commit db666db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ena-submission/scripts/create_assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ def create_manifest_object(
metadata["sequencingInstrument"] if metadata.get("sequencingInstrument") else "Unknown"
)
platform = metadata["sequencingProtocol"] if metadata.get("sequencingProtocol") else "Unknown"
authors = metadata["authors"] if metadata.get("authors") else None
authors = (
metadata["authors"] if metadata.get("authors") else metadata.get("submitter", "Unknown")
)
try:
coverage = (
(
Expand Down

0 comments on commit db666db

Please sign in to comment.