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

{bio}[foss/2023b] CrossMap 0.7.3 #22089

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
35 changes: 35 additions & 0 deletions easybuild/easyconfigs/b/bx-python/bx-python-0.13.0-foss-2023b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
easyblock = 'PythonBundle'

name = 'bx-python'
version = '0.13.0'

homepage = 'https://github.com/bxlab/bx-python'
description = """The bx-python project is a Python library and associated set of scripts to allow for rapid
implementation of genome scale analyses."""

toolchain = {'name': 'foss', 'version': '2023b'}

dependencies = [
('Python', '3.11.5'),
('LZO', '2.10'),
('SciPy-bundle', '2023.11'),
]

use_pip = True
sanity_pip_check = True

exts_list = [
('python-lzo', '1.15', {
'modulename': 'lzo',
'preinstallopts': "export PREFIX=$EBROOTLZO && ",
'checksums': ['a57aaa00c5c3a0515dd9f7426ba2cf601767dc19dc023d8b99d4a13b0a327b49'],
}),
('bx_python', version, {
'modulename': 'bx',
'checksums': ['ce04696543367efc6b7995d9463efeda691b9a58f6f55a7bd831e642159b0644'],
}),
]

sanity_check_commands = ['bnMapper.py --help']

moduleclass = 'bio'
42 changes: 42 additions & 0 deletions easybuild/easyconfigs/c/CrossMap/CrossMap-0.7.3-foss-2023b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
easyblock = 'PythonPackage'

name = 'CrossMap'
version = '0.7.3'

homepage = 'https://crossmap.readthedocs.io/'
description = """CrossMap is a program for genome coordinates conversion
between different assemblies (such as hg18 (NCBI36) <=> hg19 (GRCh37)).
It supports commonly used file formats including BAM, CRAM, SAM, Wiggle,
BigWig, BED, GFF, GTF and VCF."""

toolchain = {'name': 'foss', 'version': '2023b'}

# 0.7.3 download from PyPi reports version of 0.7.0. Download from github to
# find latest version
local_commit = '8a230bd19a334b545b9ef68cc594b7fb6cbc84e8'

source_urls = ['https://github.com/liguowang/CrossMap/archive']
sources = [{'download_filename': '%s.tar.gz' % local_commit, 'filename': SOURCE_TAR_GZ}]
checksums = ['d33b0da3cf9d44e077a23fc6ab89a41a1d8abb0fcd62e1334c86e1027c647f4c']

dependencies = [
('Python', '3.11.5'),
('bx-python', '0.13.0'),
('pyBigWig', '0.3.23'),
('Pysam', '0.22.0'),
]

use_pip = True
download_dep_fail = True
sanity_pip_check = True

sanity_check_commands = [('CrossMap', '--help')]

sanity_check_paths = {
'files': ['bin/CrossMap'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}

options = {'modulename': 'cmmodule'}

moduleclass = 'bio'
29 changes: 29 additions & 0 deletions easybuild/easyconfigs/p/pyBigWig/pyBigWig-0.3.23-gfbf-2023b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
easyblock = 'PythonPackage'

name = 'pyBigWig'
version = '0.3.23'

homepage = 'https://github.com/deeptools/pyBigWig'
description = """A python extension, written in C, for quick access to bigBed
files and access to and creation of bigWig files."""

toolchain = {'name': 'gfbf', 'version': '2023b'}

sources = [SOURCELOWER_TAR_GZ]
checksums = ['b780c2b77f024c7967d7bd2eca0fa39a4d939c86b807135960e26faafafbec84']

dependencies = [
('Python', '3.11.5'),
('cURL', '8.3.0'),
('NSS', '3.94'), # provides libfreebl3
('SciPy-bundle', '2023.11'), # optional, for numpy support
]

use_pip = True
download_dep_fail = True

options = {'modulename': name}

sanity_pip_check = True

moduleclass = 'bio'
Loading