-
Notifications
You must be signed in to change notification settings - Fork 4
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 #37 from cokelaer/main
Refactorisation to use click
- Loading branch information
Showing
17 changed files
with
429 additions
and
510 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
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
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "sequana-rnaseq" | ||
version = "0.19.0" | ||
description = "A RNAseq pipeline from raw reads to feature counts" | ||
authors = ["Sequana Team"] | ||
license = "BSD-3" | ||
repository = "https://github.com/sequana/rnaseq" | ||
readme = "README.rst" | ||
keywords = ["snakemake, sequana, RNAseq, RNADiff, differential analysis"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: End Users/Desktop", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
] | ||
|
||
packages = [ | ||
{include = "sequana_pipelines"} | ||
] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<4.0" | ||
sequana = ">=0.16.0" | ||
sequana_pipetools = ">=0.16.2" | ||
click-completion = "^0.5.2" | ||
|
||
|
||
[tool.poetry.scripts] | ||
sequana_rnaseq = "sequana_pipelines.rnaseq.main:main" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^23.7.0" | ||
pytest = "^7.4.0" | ||
mock = "^5.1.0" | ||
pytest-mock = "^3.11.1" | ||
pytest-cov = "^4.1.0" | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.