Skip to content

Commit d9c2ef4

Browse files
author
Nolan Woods
committed
Update biopython to 1.79 and handle dumping Seq object
1 parent a63775e commit d9c2ef4

File tree

6 files changed

+5545
-16127
lines changed

6 files changed

+5545
-16127
lines changed

.idea/csv-plugin.xml

Lines changed: 0 additions & 51 deletions
This file was deleted.

biopython_convert/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,9 @@ def to_dicts(v):
280280
pass
281281
return v
282282

283+
if isinstance(v, Seq.Seq):
284+
return str(v)
285+
283286
if isinstance(v, (types.GeneratorType, map, filter, tuple)):
284287
v = list(v)
285288

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
biopython>=1.78
1+
biopython>=1.79
22
gffutils>=0.10.1
33
jmespath>=0.10.0
44
ruamel.yaml>= 0.16.12

0 commit comments

Comments
 (0)