Loading from the web

>>> from Bio import db
>>> SP = db["swissprot"]
>>> infile = SP["100K_RAT"]
>>> record = SeqRecord.io.read(infile).read()
>>> print record.seq
Seq('MMSARGDFLNYALSLMRSHNDEHSDVLPVLDVCSLKHVAYVFQALIYWIKAMNQQTTLDT ...',
SingleLetterAlphabet())
>>> 
Jeff Chang did this as part of the hackathon
 
.