Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed Jan 31, 2024
1 parent c5a4752 commit 55287f0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ Or with the Arrow client:
History
-------

- 4.3.0
- Biopython requires are now more strict, there is a maximum that bcbio_gff supports
- loading GFF3 now has a new flag, --cds_cleaning, to enable more apollo conformant behaviour for multi-exon transcripts
(https://github.com/galaxy-genome-annotation/python-apollo/issues/60, https://github.com/galaxy-genome-annotation/python-apollo/pull/62)
- 4.2.13
- Relax biopython requirements
- 4.2.12
Expand Down
2 changes: 1 addition & 1 deletion apollo/annotations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,7 @@ def load_gff3(self, organism, gff3, source=None, batch_size=1,
:param cds_cleaning: This changes the behaviour of creating GFF3
features in apollo to match more closely to what it expects. Generally
you'll probably want this on if you have transcripts with multiple
exons and CDSs, but we don't want to change existing scripts
exons and CDSs, but we don't want to change existing scripts
so we are not defaulting this on.
:type timing: bool
Expand Down
2 changes: 1 addition & 1 deletion arrow/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.2.13'
__version__ = '4.3.0'
2 changes: 1 addition & 1 deletion arrow/commands/annotations/load_gff3.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
)
@click.option(
"--cds_cleaning",
help="This changes the behaviour of creating GFF3 features in apollo to match more closely to what it expects. Generally you'll probably want this on if you have transcripts with multiple exons and CDSs, but we don't want to change existing scripts so we are not defaulting this on."
help="This changes the behaviour of creating GFF3 features in apollo to match more closely to what it expects. Generally you'll probably want this on if you have transcripts with multiple exons and CDSs, but we don't want to change existing scripts so we are not defaulting this on.",
is_flag=True
)
@click.option(
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

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

0 comments on commit 55287f0

Please sign in to comment.