OrthoXML & SeqXML
OrthoXML & SeqXML
SeqXML Biopython support
Usage
Reading with the standard BioPython Bio.SeqIO function:
from Bio import SeqIO
fileHandle = open("SEQXML_FILE","r")
records = list(SeqIO.parse(fileHandle, "seqxml"))
Writing with the standard BioPython Bio.SeqIO function:
from Bio import SeqIO
import sys
SeqIO.write(records,sys.stdout,"seqxml")