Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ For more information on different installation options, refer to the
[documentation](https://gagneurlab-drop.readthedocs.io/en/latest/installation.html)

## What's new
Version 1.6.1 fixes issues due to the new way to import functions in txdbmaker and GenomeInfoDb with the new BioC release 3.22 and above.

Version 1.6.0 contains a fix to a bug in the counting of the aberrant expression module ⚠️ . In addition, it contains a fix to the assignment of variants to genes in the MAE module. Please do not use v1.5.0.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Michaela Müller'

# The full version, including alpha/beta/rc tags
release_ = '1.6.0'
release_ = '1.6.1'



Expand Down
2 changes: 1 addition & 1 deletion drop/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

@click.group(invoke_without_command=True)
@click_log.simple_verbosity_option(logger)
@click.version_option("1.6.0", prog_name='drop')
@click.version_option('1.6.1',prog_name='drop')

def main():
ctx = click.get_current_context()
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]

current_version = 1.6.0
current_version = 1.6.1
commit = True

[bumpversion:file:setup.py]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'pandas>=3.0',
]

extra_files = []
extra_files: list[str] = []
for (path, directories, filenames) in os.walk('drop/'):
directories[:] = [d for d in directories if not d.startswith('.')]
filenames[:] = [f for f in filenames if not f.startswith('.') and not f.endswith('.Rproj')]
Expand All @@ -21,7 +21,7 @@

setuptools.setup(
name="drop",
version="1.6.0",
version="1.6.1",
author="Vicente A. Yépez, Michaela Müller, Nicholas H. Smith, Ata Jadid Ahari, Daniela Klaproth-Andrade, Luise Schuller, Ines Scheller, Christian Mertes <mertes@in.tum.de>, Julien Gagneur <gagneur@in.tum.de>",
author_email="yepez@in.tum.de",
description="Detection of RNA Outlier Pipeline",
Expand Down
Loading