jorvis / biocode

Bioinformatics code libraries and scripts
MIT License
504 stars 247 forks source link

Needed: Speed-optimized FASTQ to FASTA script #8

Closed jorvis closed 10 years ago

jorvis commented 10 years ago

This script should accept a FASTQ file and and simply convert to FASTA. The only currently needed options are:

While this is trivial itself, what can get more interesting is finding the method to do it that performs the best. Because this will be an important component of a few other projects, speed and proper error handling is important. Most apps assume python, but I'm up for implementations in whatever language will give the best results here as long as they don't open up a huge can of worms dependency-wise.

jorvis commented 10 years ago

Closed because I've added this:

https://github.com/jorvis/biocode/blob/master/fastq/convert_fastq_to_fasta.py

Timing information is found within the script's documentation.

Anyone wishing to offer a faster version (in any language) which provides the same options is certainly welcome.