Skip to content

Commit

Permalink
Merge pull request #4 from Atishaysjain/fix-seqfeature-strand-arg
Browse files Browse the repository at this point in the history
Fix #4
  • Loading branch information
veghp authored Aug 2, 2024
2 parents 740af32 + 8147bad commit 03d609c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ SnapGene Reader is a Python library to parse Snapgene ``*.dna`` files into dicti
from snapgene_reader import snapgene_file_to_dict, snapgene_file_to_seqrecord
file_path = './snap_gene_file.dna'
dictionary = snapgene_file_to_dict(filepath)
seqrecord = snapgene_file_to_seqrecord(filepath)
dictionary = snapgene_file_to_dict(file_path)
seqrecord = snapgene_file_to_seqrecord(file_path)
Installation
------------
Expand Down
1 change: 0 additions & 1 deletion snapgene_reader/snapgene_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ def snapgene_file_to_seqrecord(filepath=None, fileobject=None):
end=feature["end"],
strand=strand_dict[feature["strand"]],
),
strand=strand_dict[feature["strand"]],
type=feature["type"],
qualifiers=feature["qualifiers"],
)
Expand Down

0 comments on commit 03d609c

Please sign in to comment.