-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing newlines are not caught #33
Comments
Hi @KuechlerO, Do you mean that FASTX is not allowing a missing newline at EOF? Can you share an example of a record that is passing fq lint but failing FASTX? |
Yes exactly, I mean that FASTX is not allowing a missing newline at EOF. Example FASTA, that passes fq, but throws error with FASTX:
-> Missing a newline-char at the end! |
Text lines typically have two interpretations: they can either be terminated by a newline, as defined in POSIX, or separated by one, as in your case. Most line readers support both, including fq's FASTQ parser. I would recommend opening an issue with FASTX.jl about this. I was unable to reproduce your error, and it seems to be out of scope of fq.
|
Hey guys,
thx for this cool tool!
I just stumbled over a weird error (using a Julia-Program).
Hence, I used your tool to validate my FASTQ-files
However, also your tool assured me that my FASTQ-files were valid.
After some time I figured out that a final newline character was missing in my FASTQ-files.
Thus, my suggestion for this tool is to include also a warning/error for such cases.
The text was updated successfully, but these errors were encountered: