You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the progress prints with formatting to highlight the read counts. Could you add an option to remove this formatting so that the output log files are readable? This may be related to #33
I am using ribodetector version 0.3.1
Current:
2024-05-12 18:20:24 : INFO Processed �[1m�[96m250204238�[0m sequences in total
2024-05-12 18:20:24 : INFO Detected �[1m�[96m188277238�[0m non-rRNA sequences
2024-05-12 18:20:24 : INFO Detected �[1m�[96m61927000�[0m rRNA sequences
``
Ideal:
2024-05-12 18:20:24 : INFO Processed 250204238 sequences in total
2024-05-12 18:20:24 : INFO Detected 188277238 non-rRNA sequences
2024-05-12 18:20:24 : INFO Detected 61927000 rRNA sequences
The text was updated successfully, but these errors were encountered:
It seems the formatting does not display correctly for you. It should look normal in stdout also with cat or less on log file:
2024-01-10 23:16:30 : INFO Writing output non-rRNA sequences into file: ../outputs/G78512_pe.nonrrna.1.fq, ../outputs/G78512_pe.nonrrna.2.fq
2024-01-10 23:18:47 : INFO 1048576 sequences finished!
2024-01-10 23:20:45 : INFO 1922725 sequences finished!
2024-01-10 23:20:45 : INFO Processed 1922725 sequences in total
2024-01-10 23:20:45 : INFO Detected 1903676 non-rRNA sequences
2024-01-10 23:20:45 : INFO Detected 19049 rRNA sequences
The text editor like Vim will just show the actual ANSI escape sequences:
2024-01-10 23:18:47 : INFO ^[[92m1048576^[[0m sequences finished!
2024-01-10 23:20:45 : INFO ^[[92m1922725^[[0m sequences finished!
2024-01-10 23:20:45 : INFO Processed ^[[1m^[[96m1922725^[[0m sequences in total
2024-01-10 23:20:45 : INFO Detected ^[[1m^[[96m1903676^[[0m non-rRNA sequences
2024-01-10 23:20:45 : INFO Detected ^[[1m^[[96m19049^[[0m rRNA sequences
What did you use to show the log? Do you want to parse the log file to generate report like multiqc? I will consider to add --noansi in the future release.
Currently the progress prints with formatting to highlight the read counts. Could you add an option to remove this formatting so that the output log files are readable? This may be related to #33
I am using ribodetector version 0.3.1
Current:
2024-05-12 18:20:24 : INFO Processed 250204238 sequences in total
2024-05-12 18:20:24 : INFO Detected 188277238 non-rRNA sequences
2024-05-12 18:20:24 : INFO Detected 61927000 rRNA sequences
The text was updated successfully, but these errors were encountered: