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 CIAlign recipe to Bioconda #34567

Merged
merged 5 commits into from
May 1, 2022
Merged
Show file tree
Hide file tree
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
41 changes: 41 additions & 0 deletions recipes/cialign/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% set name = "cialign" %}
{% set version = "1.0.18" %}

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

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: bb0b0645ac7d94b7101b712ce0913b8096c1ebee72a4d7fd1209cbdaabf4adb1

build:
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
noarch: python

requirements:
host:
- configargparse
- matplotlib-base
- numpy
- pillow
- pip
- python>=3.6
run:
- configargparse
- matplotlib-base
- numpy
- pillow
- python>=3.6

test:
imports:
- CIAlign
- tests

about:
home: "https://github.com/KatyBrown/CIAlign"
license: MIT
license_family: MIT
summary: "Toolkit for cleaning and interpreting multiple sequence alignments"
8 changes: 8 additions & 0 deletions recipes/cialign/run_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import unittest
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
return test_suite

if __name__ == '__main__':
my_test_suite()