-
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.
* first try to update crabs * Add run_exports * clean up recipe * edit biopython pinning * remove argparse * add rich * add rich-click * add requests --------- Co-authored-by: Martin Grigorov <[email protected]> Co-authored-by: mencian <[email protected]> Co-authored-by: Joshua Zhuang <[email protected]>
- Loading branch information
1 parent
f6d8850
commit b463c24
Showing
1 changed file
with
24 additions
and
23 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,49 +1,50 @@ | ||
{% set name = "crabs" %} | ||
{% set version = "1.0.3" %} | ||
{% set sha256 = "9ebdf217c0f4069a7678d458b87199c1a2594879c704f0ef91e6049bfc0fae9b" %} | ||
|
||
package: | ||
name: crabs | ||
version: "0.1.1" | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/gjeunen/reference_database_creator/files/8028374/crabs_v0.1.1.tar.gz | ||
md5: 6c2e82fb5e191cb750c5d6a41fa24b61 | ||
url: https://github.com/gjeunen/reference_database_creator/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
script: "{{ PYTHON }} -m pip install . -vv" | ||
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv" | ||
noarch: python | ||
run_exports: | ||
- {{ pin_subpackage(name, max_pin="x") }} | ||
|
||
requirements: | ||
build: | ||
|
||
host: | ||
- python >=3.6.10 | ||
- python >=3.6 | ||
- pip | ||
- argparse | ||
- biopython =1.78 | ||
- tqdm | ||
- numpy | ||
- pandas >=0.23.4 | ||
- matplotlib-base | ||
- wget | ||
|
||
- setuptools | ||
run: | ||
- python >=3.6.10 | ||
- argparse | ||
- biopython =1.78 | ||
- python >=3.6 | ||
- biopython | ||
- tqdm | ||
- numpy | ||
- pandas >=0.23.4 | ||
- matplotlib-base | ||
- wget | ||
- muscle >=3.8.31 | ||
- muscle | ||
- cutadapt >=3.4 | ||
- vsearch >=2.13.3 | ||
- rich | ||
- rich-click | ||
- requests | ||
|
||
test: | ||
commands: | ||
- crabs -h | ||
|
||
about: | ||
home: https://github.com/gjeunen/reference_database_creator | ||
license: MIT License | ||
summary: Crabs (Creating Reference databases for Amplicon-Based Sequencing) is a program to download and curate reference databases for eDNA metabarcoding analyses | ||
|
||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
summary: "Crabs (Creating Reference databases for Amplicon-Based Sequencing) is a program to download and curate reference databases for eDNA metabarcoding analyses." | ||
dev_url: https://github.com/gjeunen/reference_database_creator |