-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from tleonardi/v1.0.0rc3-1_hotfix
Fixed CLI entrypoint bug
- Loading branch information
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Changelog | ||
|
||
## [v1.0.0rc3-1] | ||
|
||
### Fixed | ||
- Fixed bug in CLI entrypoint | ||
|
||
## [v1.0.0rc3] | ||
|
||
### Added | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Define self package variable | ||
__version__ = "1.0.0rc3" | ||
__version__ = "1.0.0rc3-1" | ||
__description__ = 'Software package that identifies raw signal changes between two conditions from https://github.com/jts/nanopolish resquiggled dRNA-Seq data.' | ||
#__all__ = ["SampComp", "SampCompDB", "SimReads", "Whitelist", "TxComp"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nanocompore" | ||
version = "1.0.0rc3" | ||
version = "1.0.0rc3-1" | ||
description = "Software package that identifies raw signal changes between two conditions from https://github.com/jts/nanopolish resquiggled dRNA-Seq data." | ||
authors = ["Tommaso Leonardi <[email protected]>", "Adrien Leger <[email protected]>"] | ||
license = "GPL-3.0" | ||
|
@@ -17,7 +17,7 @@ classifiers = [ | |
include = ["nanocompore/models/kmers_model_RNA_r9.4_180mv.tsv"] | ||
|
||
[tool.poetry.scripts] | ||
nanocompore = 'nanocompore.nanocompore_main:main' | ||
nanocompore = 'nanocompore.__main__:main' | ||
|
||
|
||
[tool.poetry.dependencies] | ||
|