You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. # q30
  2. A simple script to calculate q20/q30 percentages of a fastq file (can be gzipped)
  3. ```shell
  4. python q30.py <fastq_file_name>
  5. ```
  6. # output
  7. ```
  8. ('total bases:', 1386659)
  9. ('q20 bases:', 1280980)
  10. ('q30 bases:', 1232024)
  11. ('q20 percents:', 92.37887613320939)
  12. ('q30 percents:', 88.84837584438567)
  13. Time used: 0.221389055252
  14. ```