-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
124 additions
and
2,453 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: dfb0404 | ||
_src_path: https://github.com/qiime2/q2-setup-template.git | ||
module_name: composition | ||
plugin_name: q2_composition | ||
plugin_scripts: q2_composition/assets/run_ancombc.R | ||
project_author_email: [email protected] | ||
project_author_name: Jamie Morton | ||
project_description: Compositional statistics plugin for QIIME2. | ||
project_name: q2-composition | ||
project_urls_homepage: https://qiime2.org | ||
project_urls_repository: https://github.com/qiime2/q2-composition |
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 +1 @@ | ||
q2_composition/_version.py export-subst | ||
pyproject.toml export-subst |
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 |
---|---|---|
|
@@ -73,3 +73,7 @@ input.map.txt | |
output.summary.txt | ||
|
||
.DS_Store | ||
|
||
# Version file from versioningit | ||
_version.py | ||
|
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package: | ||
name: q2-composition | ||
version: {{ PLUGIN_VERSION }} | ||
source: | ||
path: .. | ||
build: | ||
script: make install | ||
requirements: | ||
host: | ||
- python {{ python }} | ||
- setuptools | ||
- versioningit | ||
- wheel | ||
run: | ||
- python {{ python }} | ||
- scikit-bio {{ scikit_bio }} | ||
- biom-format {{ biom_format }} | ||
- scipy {{ scipy }} | ||
- pandas {{ pandas }} | ||
- formulaic | ||
- bioconductor-phyloseq | ||
- bioconductor-ancombc | ||
- r-tidyverse | ||
- r-optparse | ||
- r-frictionless | ||
- qiime2 {{ qiime2_epoch }}.* | ||
- q2templates {{ qiime2_epoch }}.* | ||
- q2-types {{ qiime2_epoch }}.* | ||
- altair | ||
build: | ||
- setuptools | ||
- versioningit | ||
test: | ||
requires: | ||
- qiime2 >={{ qiime2 }} | ||
- q2templates >={{ q2templates }} | ||
- q2-types >={{ q2_types }} | ||
- pytest | ||
imports: | ||
- q2_composition | ||
- qiime2.plugins.composition | ||
commands: | ||
- py.test --pyargs q2_composition | ||
about: | ||
home: https://qiime2.org | ||
license: BSD-3-Clause | ||
license_family: BSD |
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,53 @@ | ||
[project] | ||
name = "q2-composition" | ||
authors = [ | ||
{ name = "Jamie Morton", email = "[email protected]" } | ||
] | ||
description = "Compositional statistics plugin for QIIME2." | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
license = {file = "LICENSE"} | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://qiime2.org" | ||
Repository = "https://github.com/qiime2/q2-composition" | ||
|
||
[project.entry-points.'qiime2.plugins'] | ||
"q2-composition" = "q2_composition.plugin_setup:plugin" | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
"versioningit", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.versioningit.vcs] | ||
method = "git-archive" | ||
describe-subst = "$Format:%(describe)$" | ||
default-tag = "0.0.1" | ||
|
||
[tool.versioningit.next-version] | ||
method = "minor" | ||
|
||
[tool.versioningit.format] | ||
distance = "{base_version}+{distance}.{vcs}{rev}" | ||
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty" | ||
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty" | ||
|
||
[tool.versioningit.write] | ||
file = "q2-composition/_version.py" | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
script-files = [ | ||
"q2_composition/assets/run_ancombc.R" | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["q2_composition*"] | ||
|
||
[tool.setuptools.package-data] | ||
q2_composition = ["**/*"] |
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.