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.
add rbpbench meta yaml (bioconda#42720)
* add rbpbench meta yaml * add run exports
- 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 = "RBPBench" %} | ||
{% set version = "0.1" %} | ||
{% set sha256 = "ab8bd57b28ab8d349788450072cc2efe5385483d288efd0eec0634da52c161d3" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/michauhl/{{ name }}/archive/v{{ version }}.tar.gz | ||
sha256: "{{ sha256 }}" | ||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
script: $PYTHON -m pip install . --ignore-installed --no-deps -vv | ||
run_exports: | ||
- {{ pin_subpackage('rbpbench', max_pin="x.x") }} | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
- logomaker | ||
- markdown | ||
- meme | ||
- scipy | ||
- plotly | ||
- textdistance | ||
- venn | ||
- matplotlib-venn | ||
- infernal | ||
- bedtools | ||
|
||
test: | ||
commands: | ||
- rbpbench -h | ||
|
||
about: | ||
home: https://github.com/michauhl/RBPBench | ||
license: MIT | ||
license_file: LICENSE | ||
summary: Evaluate CLIP-seq and other genomic region data using a comprehensive collection of known RBP binding motifs |