-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bold-identification: A tool for taxonomic assignment for given se…
…quences (#17071) * add bold-identification tool * update meta.yaml * local test passed * update meta.yaml
- Loading branch information
1 parent
e5ec60e
commit 2826e6a
Showing
1 changed file
with
51 additions
and
0 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,51 @@ | ||
{% set name = "bold-identification" %} | ||
{% set version = "0.0.25" %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: "https://github.com/linzhi2013/bold_identification/archive/v{{ version }}.tar.gz" | ||
sha256: "ca63937bc04d8852368cbc6908e0a159ea4f1f0540cb94b5ab3d541d5f9f476b" | ||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
entry_points: | ||
- bold_identification=bold_identification.BOLD_identification:main | ||
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " | ||
|
||
requirements: | ||
host: | ||
- biopython >1.5 | ||
- beautifulsoup4 | ||
- html5lib | ||
- pip | ||
- python >=3.5 | ||
- requests | ||
run: | ||
- biopython >1.5 | ||
- beautifulsoup4 | ||
- html5lib | ||
- python >=3.5 | ||
- requests | ||
|
||
test: | ||
imports: | ||
- bold_identification | ||
commands: | ||
- bold_identification --help | ||
|
||
about: | ||
home: "https://github.com/linzhi2013/bold_identification" | ||
license: "GNU General Public v3 or later (GPLv3+)" | ||
license_family: "GPL3" | ||
license_file: "LICENSE" | ||
summary: "A tool for taxonomic assignment for given sequences using the BOLD database (http://www.boldsystems.org/index.php)" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- linzhi2013 | ||
identifiers: | ||
- biotools:bold-identification |