Skip to content

Commit

Permalink
fix: add the split_attributes keyword to the exposed `get_feature_nam…
Browse files Browse the repository at this point in the history
…e_attribute()` function
  • Loading branch information
florianzwagemaker committed Sep 12, 2023
1 parent 91f7ce1 commit f1f6ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AminoExtract/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_feature_name_attribute(
A dictionary with the sequence id as the key and a list of the feature names as the value.
"""
gff = read_gff(file=input_gff, verbose=False)
gff = read_gff(file=input_gff, verbose=False, split_attributes=True)
seq = read_fasta(input_seq)
gff_records = filter_gff(GffRecords=gff, SeqRecords=seq, feature_type=feature_type)
FiltSequences = filter_sequences(gff, seq)
Expand Down

0 comments on commit f1f6ab7

Please sign in to comment.