Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SSR_VibraProfiler recipe #53634

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions recipes/ssr_vibraprofiler/meta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "ssr_vibraprofiler" %}
{% set version = "1.20" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/Olcat35412/SSR_VibraProfiler/archive/refs/tags/{{ version }}.tar.gz
sha256: f912a00b084dc90af8576a4d688bf768df8fb817867580b0ace2755965fa6887

build:
number: 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
number: 1
number: 1
noarch: python

script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed"
entry_points:
- SSR_VibraProfiler_model_build=ssr_vibraprofiler.model_build:main
- SSR_VibraProfiler_evaluation=ssr_vibraprofiler.evaluation:main
- SSR_VibraProfiler_model_predict=ssr_vibraprofiler.predict:main
- SSR_VibraProfiler_cross_validation=ssr_vibraprofiler.cross_validation:main

requirements:
host:
- python
- pip
run:
- python
- numpy = 1.26.4
- pandas = 1.3.1
- scikit-learn = 0.24.2
- matplotlib = 3.8.0

test:
commands:
- SSR_VibraProfiler_model_build --help
- SSR_VibraProfiler_evaluation --help
imports:
- ssr_vibraprofiler

about:
home: https://github.com/Olcat35412/SSR_VibraProfiler
license: MIT
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add license_file too

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! I will add license_file

summary: A software for constructing DNA fingerprint databases for plant varieties.
doc_url: https://github.com/Olcat35412/SSR_VibraProfiler_manual/SSR_VibraProfiler_manual/
dev_url: https://github.com/Olcat35412/SSR_VibraProfiler

Loading