diff --git a/ssbio/databases/kegg.py b/ssbio/databases/kegg.py index 6b3b86b..096b8f6 100644 --- a/ssbio/databases/kegg.py +++ b/ssbio/databases/kegg.py @@ -20,8 +20,10 @@ class KEGGProp(SeqProp): - def __init__(self, seq, id, fasta_path=None, txt_path=None, gff_path=None): - SeqProp.__init__(self, seq=seq, id=id, sequence_path=fasta_path, metadata_path=txt_path, feature_path=gff_path) + def __init__(self, seq, id, name='', description='', + fasta_path=None, txt_path=None, gff_path=None): + SeqProp.__init__(self, id=id, seq=seq, name=name, description=description, + sequence_path=fasta_path, metadata_path=txt_path, feature_path=gff_path) self.kegg = id @SeqProp.metadata_path.setter