Hi guys !
I just finished work on a python package that can read most of the genomic file formats such as BED, WIG, GFF, BedGraph in a simple and standard way. I made a post about in /r/bioinformatics and several people told me I should also announce it in the seqanswers.com forum. So here goes !
It's free and open-source. It will read many different kinds of formats in the same simple syntax:
You install it by typing:
Particular attention was brought to the documentation http://xapple.github.com/track/
Please tell me what you think about it !
I just finished work on a python package that can read most of the genomic file formats such as BED, WIG, GFF, BedGraph in a simple and standard way. I made a post about in /r/bioinformatics and several people told me I should also announce it in the seqanswers.com forum. So here goes !
It's free and open-source. It will read many different kinds of formats in the same simple syntax:
Code:
import track with track.load('tracks/rp_genes.bed') as rp: data = rp.read('chr3')
Code:
$ sudo easy_install track
Please tell me what you think about it !
Comment