forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR bioconda#33989, commits were: * Update meta.yaml * Update meta.yaml added "noarch: python to build section" * Update meta.yaml deleted empty reference to dev_url * created notramp recipe with skeleton and edit
- Loading branch information
Showing
1 changed file
with
44 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,44 @@ | ||
{% set name = "notramp" %} | ||
{% set version = "1.0.5" %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" | ||
sha256: de54fae8cc4c66dcd8abc94ae88957aa533cb8e2e6764e847afa26fbe4b36ec9 | ||
|
||
build: | ||
number: 0 | ||
entry_points: | ||
- notramp = notramp.notramp_main:run_notramp | ||
script: "{{ PYTHON }} -m pip install . -vv" | ||
noarch: python | ||
|
||
requirements: | ||
host: | ||
- pip | ||
- python | ||
run: | ||
- psutil | ||
- python | ||
- minimap2 | ||
|
||
test: | ||
imports: | ||
- notramp | ||
commands: | ||
- notramp --help | ||
|
||
about: | ||
home: "https://github.com/simakro/NoTrAmp.git" | ||
license: BSD-2 | ||
license_family: BSD | ||
license_file: LICENSE | ||
summary: "Normalization and Trimming of long-read (ONT, PB) amplicon sequencing data" | ||
doc_url: "https://github.com/simakro/NoTrAmp/blob/main/README.md" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- 74452164 |