by @LonsBio
Read one or more FASTQ files, fastqe will compute quality stats for each file and print those stats as emoji... for some reason.
Given a fastq file in Illumina 1.8+/Sanger format, calculate the mean (rounded) score for each position and print a corresponding emoji!
FASTQE started out as part of PyCon Au presentations:
- PyCon Au 2016 - Python for science, side projects and stuff!
- PyCon Au 2017 - Lightning Talk
- version 0.0.1 at PyCon Au 2016:
- Mean position per read
- version 0.0.2 at PyconAu 2017:
- update emoji map
- Max and minimum scores per position added
- Wrapper code based on early version of Bionitio added
- prepare for PyPi
- version 0.1.0 July 2018
- clean up code
- add binning
- version 0.2.0 July 2020
- refactor code
- add long read support with --long
- add --noemoji for block-based output on systems that don't support emoji
- add --custom for user-defined mapping to emoji
- add --output to redirect to file instead of stdout
- add gzip support
- add redirect from stdin support
- fix bug of dropping position if some sequences are only 0 quality
Reads up to 500bp onlyRead length above 500bp allowed but must be set by user with--long MAX_LENGTH- Same emoji for all scores above 41
pip or BioConda
pip install fastqe
conda install -c bioconda fastqe
fastqe test.fastq
fastqe --min test.fastq
fastqe --max test.fastq
fastqe --max -min -bin test.fastq
fastqe can display usage information on the command line via the -h or --help argument:
usage: fastqe [-h] [--minlen N] [--scale] [--version] [--mean]
[--custom CUSTOM_DICT] [--bin] [--noemoji] [--min] [--max]
[--output OUTPUT_FILE] [--long READ_LENGTH] [--log LOG_FILE]
[FASTQ_FILE [FASTQ_FILE ...]]
Read one or more FASTQ files, compute quality stats for each file, print as
emoji... for some reason.😄
positional arguments:
FASTQ_FILE Input FASTQ files
optional arguments:
-h, --help show this help message and exit
--minlen N Minimum length sequence to include in stats (default
0)
--scale show relevant scale in output
--version show program's version number and exit
--mean show mean quality per position (DEFAULT)
--custom CUSTOM_DICT use a mapping of custom emoji to quality in
CUSTOM_DICT (🐍🌴)
--bin use binned scores (🚫💀💩⚠️😄😆😎😍)
--noemoji use mapping without emoji (▁▂▃▄▅▆▇█)
--min show minimum quality per position
--max show maximum quality per position
--output OUTPUT_FILE write output to OUTPUT_FILE instead of stdout
--long READ_LENGTH enable long reads up to READ_LENGTH bp long
--log LOG_FILE record program progress in LOG_FILE
This program is released as open source software under the terms of MIT License
- pyemojify
- BioPython
- NumPy
- Rearrange emoji to use more realistic ranges (i.e > 60 use uncommon emoji) and remove inconsistencies
- Add conversion to emoji sequence format, with/without binning, for compressed fastq data
- Rewrite conversion to standalone function for use in iPython etc.
- Teaching resources
- Test data and unit tests
- Add FASTA mode for nucleotide and proteins emoji
- MultiQC plugin
Use the --scale option to include in output.
0 ! 🚫
1 " ❌
2 # 👺
3 $ 💔
4 % 🙅
5 & 👾
6 ' 👿
7 ( 💀
8 ) 👻
9 * 🙈
10 + 🙉
11 , 🙊
12 - 🐵
13 . 😿
14 / 😾
15 0 🙀
16 1 💣
17 2 🔥
18 3 😡
19 4 💩
20 5 ⚠️
21 6 😀
22 7 😅
23 8 😏
24 9 😊
25 : 😙
26 ; 😗
27 < 😚
28 = 😃
29 > 😘
30 ? 😆
31 @ 😄
32 A 😋
33 B 😄
34 C 😝
35 D 😛
36 E 😜
37 F 😉
38 G 😁
39 H 😄
40 I 😎
41 J 😍
Binned scale:
0 ! 🚫
1 " 🚫
2 # 💀
3 $ 💀
4 % 💀
5 & 💀
6 ' 💀
7 ( 💀
8 ) 💀
9 * 💀
10 + 💩
11 , 💩
12 - 💩
13 . 💩
14 / 💩
15 0 💩
16 1 💩
17 2 💩
18 3 💩
19 4 💩
20 5 ⚠️
21 6 ⚠️
22 7 ⚠️
23 8 ⚠️
24 9 ⚠️
25 : 😄
26 ; 😄
27 < 😄
28 = 😄
29 > 😄
30 ? 😆
31 @ 😆
32 A 😆
33 B 😆
34 C 😆
35 D 😎
36 E 😎
37 F 😎
38 G 😎
39 H 😎
40 I 😍
41 J 😍