We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484cc9a commit 1337ff0Copy full SHA for 1337ff0
lib/workload/stateless/stacks/fastq-manager/app/api/fastq_manager_api_tools/models/fastq_list_row.py
@@ -264,6 +264,8 @@ def to_fastq_list_row(self) -> FastqListRowDict:
264
library_description_list = [
265
f"Library ID: {library_obj['libraryId']}",
266
f"Sequenced on {datetime_to_hf_format(self.date)} at {self.center.value}"
267
+ if self.date is not None and self.center is not None
268
+ else "",
269
f"Phenotype: {library_obj['phenotype']}" if library_obj['phenotype'] else None,
270
f"Assay: {library_obj['assay']}" if library_obj['assay'] else None,
271
f"Type: {library_obj['type']}" if library_obj['type'] else None,
0 commit comments