/bioinformatics-cafe

Unsorted scripts for bioinformatics

Primary LanguagePython

License

Unsorted scripts for bioinformatics

Miscellanea of scripts for bioinformatics. Many of these scripts do something very specific and they don't deserve their own repository. The quality of these programs can vary a lot, some are reasonably well designed and tested others are just stubs that I started and I haven't finished.

To download a given script or file without cloning or downloading the entire repository use:

wget https://github.com/dariober/bioinformatics-cafe/blob/master/<PATH>/<TO>/<MY.SCRIPT>?raw=true -O <MY.SCRIPT>

where <PATH>/<TO>/<MY.SCRIPT> are just placeholders. For example, download fastaRegexFinder.py and make it executable:

wget https://github.com/dariober/bioinformatics-cafe/blob/master/fastaRegexFinder/fastaRegexFinder.py?raw=true -O fastaRegexFinder.py
chmod a+x fastaRegexFinder.py