From 0821339677f84820e0422b945d2843475b373b97 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 10 Aug 2022 10:29:58 +0200 Subject: [PATCH] adding easyconfigs: Pysam-0.19.1-GCC-11.3.0.eb --- .../p/Pysam/Pysam-0.19.1-GCC-11.3.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/p/Pysam/Pysam-0.19.1-GCC-11.3.0.eb diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.19.1-GCC-11.3.0.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.19.1-GCC-11.3.0.eb new file mode 100644 index 00000000000..ba8af04da92 --- /dev/null +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.19.1-GCC-11.3.0.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonPackage' + +name = 'Pysam' +version = '0.19.1' + +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': 'GCC', 'version': '11.3.0'} + +source_urls = ['https://github.com/pysam-developers/pysam/archive/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['c33a51324fc4191bbfb135e93bf0c9b85ac9dad1320fb852a8af47c38626e37a'] + +dependencies = [ + ('Python', '3.10.4'), + ('ncurses', '6.3'), + ('cURL', '7.83.0'), + ('XZ', '5.2.5'), +] + +download_dep_fail = True +use_pip = True + +sanity_pip_check = True + +moduleclass = 'bio'