Skip to content

Commit 596054d

Browse files
committed
New version
1 parent c5a4752 commit 596054d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ Or with the Arrow client:
8585
History
8686
-------
8787

88+
- 4.3.0
89+
- Biopython requires are now more strict, there is a maximum that bcbio_gff supports
90+
- loading GFF3 now has a new flag, --cds_cleaning, to enable more apollo conformant behaviour for multi-exon transcripts
91+
(https://github.com/galaxy-genome-annotation/python-apollo/issues/60, https://github.com/galaxy-genome-annotation/python-apollo/pull/62)
8892
- 4.2.13
8993
- Relax biopython requirements
9094
- 4.2.12

apollo/annotations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,7 @@ def load_gff3(self, organism, gff3, source=None, batch_size=1,
13331333
:param cds_cleaning: This changes the behaviour of creating GFF3
13341334
features in apollo to match more closely to what it expects. Generally
13351335
you'll probably want this on if you have transcripts with multiple
1336-
exons and CDSs, but we don't want to change existing scripts
1336+
exons and CDSs, but we don't want to change existing scripts
13371337
so we are not defaulting this on.
13381338
13391339
:type timing: bool

arrow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.2.13'
1+
__version__ = '4.3.0'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
setup(
1818
name="apollo",
19-
version='4.2.13',
19+
version='4.3.0',
2020
description="Apollo API library",
2121
long_description=readme,
2222
author="Helena Rasche;Anthony Bretaudeau;Nathan Dunn",
23-
author_email="hxr@hx42.org",
23+
author_email="hexylena@galaxians.org",
2424
url='https://github.com/galaxy-genome-annotation/python-apollo',
2525
packages=['apollo', 'arrow'] + subpackages,
2626
entry_points='''

0 commit comments

Comments
 (0)