-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Installation through PyPi, Set default
--min-kmers
to 20
Co-authored-by: aziele <a.zielezinski@gmail.com>
- Loading branch information
Showing
8 changed files
with
170 additions
and
36 deletions.
There are no files selected for viewing
Submodule clusty
updated
7 files
+2 −0 | .github/workflows/deploy.yml | |
+8 −3 | .github/workflows/main.yml | |
+4 −0 | .github/workflows/self-hosted.yml | |
+21 −12 | src/console.cpp | |
+46 −41 | src/params.cpp | |
+9 −1 | src/params.h | |
+6 −3 | src/version.h |
Submodule kmer-db
updated
8 files
+3 −0 | .github/workflows/deploy.yml | |
+8 −3 | .github/workflows/main.yml | |
+4 −2 | .github/workflows/self-hosted.yml | |
+1 −1 | README.md | |
+0 −3 | src/main.cpp | |
+18 −2 | src/params.cpp | |
+3 −0 | src/params.h | |
+5 −2 | src/version.h |
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,4 @@ | ||
include README.md | ||
include LICENSE | ||
recursive-include bin * | ||
recursive-exclude 3rd_party * |
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,56 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
py-modules = ["vclust"] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["./"] | ||
|
||
[project] | ||
name = "vclust-test" | ||
description = """Fast and accurate tool for calculating \ | ||
Average Nucleotide Identity (ANI) and clustering virus \ | ||
genomes and metagenomic contigs""" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "Andrzej Zielezinski", email = "andrzej.zielezinski@amu.edu.pl" }, | ||
{ name = "Adam Gudyś", email = "adam.gudys@polsl.pl" }, | ||
{ name = "Sebastian Deorowicz", email = "sebastian.deorowicz@polsl.pl" }, | ||
] | ||
requires-python = ">=3.7" | ||
dynamic = ["version"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "vclust.__version__" } | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["bin/*"] | ||
|
||
[project.scripts] | ||
vclust = "vclust:main" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/refresh-bio/vclust" | ||
Documentation = "https://github.com/refresh-bio/vclust/wiki" | ||
Website = "http://vclust.org" |
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