Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to parse a preliminary GenBank Flatfile. The sequence hasn't been published yet, so I can't look it up by accession and download a FASTA file. I'm new to Bioinformatics, so could someone show me where I could find a BioPerl or BioPython script to do this myself? Thanks!

share|improve this question
2  
Googling for "biopython parse fasta" gives this biopython.org/wiki/SeqIO as 1st match. 2nd match is a tutorial for parsing fasta. is this what you are looking for? – Fredrik Pihl Jun 13 '11 at 22:01
And of course googling for "bioperl parse fasta" also gives proper results, like this FAQ: "I want to parse FASTA or NCBI -m7 (XML) format, how do I do this?" at bioperl.org/wiki/… – mirod Jun 14 '11 at 7:16

1 Answer

up vote 0 down vote accepted

You need the Bio::SeqIO module to read or write out bioinformatics data. The SeqIO HOWTO should tell you everything you need to know, but here's a small read-a-GenBank-file script in Perl to get you started!

share|improve this answer
Thanks, this works for normal genbank files, but mine's actually a preliminary submission, so I'll have to parse it myself. – user81997 Jun 14 '11 at 13:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.