Patch the fastq detector

This commit is contained in:
Eric Coissac
2025-08-08 10:23:03 -04:00
parent 7a6d552450
commit 6d204f6281
3 changed files with 8 additions and 2 deletions

View File

@@ -568,6 +568,8 @@ func ReadCSVNGSFilter(reader io.Reader) (*obingslibrary.NGSLibrary, error) {
for i = 0; i < len(records) && records[i][0] == "@param"; i++ {
}
log.Infof("%d parameters found", i)
params := records[0:i]
records = records[i:]