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

Adding recipe for clinvar-tsv. #12481

Merged
merged 1 commit into from
Dec 5, 2018
Merged
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
38 changes: 38 additions & 0 deletions recipes/clinvar-tsv/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{% set version = "0.1.0" %}

package:
name: clinvar-tsv
version: "{{ version }}"

source:
url: https://github.com/bihealth/clinvar-tsv/archive/v{{ version }}.tar.gz
sha256: 212cced3c4a05eaf7f686d0d76f5cd294c7181529596de6d8a6282bef54ad9dd

build:
number: 0
noarch: python
script: python -m pip install --no-deps --ignore-installed .
entry_points:
- clinvar_tsv = clinvar_tsv.__main__:main

requirements:
host:
- python >=3.5
- pip
- setuptools
run:
- python >=3.5
- snakemake-minimal >=5.3.0
- pysam >=0.15.1

test:
imports:
- clinvar_tsv
commands:
- clinvar_tsv --version
- clinvar_tsv --version | grep "{{ version }}"

about:
home: https://github.com/bihealth/clinvar-tsv
license: MIT
summary: A Snakemake-based program to download ClinVar and convert to easy-to-use TSV files.