easyconfigs-it4i/ARCHIVE/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb
Lukas Krupcik 182459da35 deleted: "a/ANSYS/\\"
deleted:    a/Anaconda2/Anaconda2-4.4.0.eb
	deleted:    a/Anaconda3/Anaconda3-2019.10.eb
	deleted:    a/Anaconda3/Anaconda3-4.4.0.eb
	deleted:    a/Anaconda3/Anaconda3-5.3.1.eb
	deleted:    a/Autotools/Autotools-20150215-GCC-6.3.0-2.27.eb
	deleted:    a/Autotools/Autotools-20170619.eb
	deleted:    a/Autotools/Autotools-20180311.eb
2022-05-05 11:22:37 +02:00

49 lines
1.3 KiB
Plaintext

# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
# Author: Pablo Escobar Lopez
# sciCORE - University of Basel
# SIB Swiss Institute of Bioinformatics
easyblock = 'Bundle'
name = 'Pysam'
version = '0.9.0'
versionsuffix = '-Python-%(local_pyver)s'
homepage = 'https://github.com/pysam-developers/pysam'
description = """Pysam is a python module for reading and manipulating Samfiles.
It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix."""
toolchain = {'name': 'goolf', 'version': '1.7.20'}
parallel = 1
dependencies = [
('Python', '2.7.11'),
('ncurses', '5.9'),
('zlib', '1.2.8'),
('cURL', '7.44.0'),
]
# this is a bundle of Python packages
exts_defaultclass = 'PythonPackage'
exts_filter = ("python -c 'import %(ext_name)s'", '')
exts_list = [
('Cython', '0.23.4', {
'source_urls': ['http://cython.org/release/'],
}),
('pysam', version, {
'source_tmpl': 'v%(version)s.tar.gz',
'source_urls': ['https://github.com/pysam-developers/pysam/archive/'],
}),
]
modextrapaths = {
'PYTHONPATH': ['lib/python%(local_pyshortver)s/site-packages'],
}
sanity_check_paths = {'files': [], 'dirs': [
'lib/python%(local_pyshortver)s/site-packages/pysam-%(version)s-py%(local_pyshortver)s-linux-x86_64.egg'], }
moduleclass = 'bio'