(row: dict[str, str], names: list[str])
| 146 | |
| 147 | |
| 148 | def first_present(row: dict[str, str], names: list[str]) -> str: |
| 149 | for name in names: |
| 150 | if row.get(name): |
| 151 | return row[name] |
| 152 | return "" |
| 153 | |
| 154 | |
| 155 | def check_fastq(path: Path, max_records: int) -> dict[str, Any]: |
no test coverage detected