forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: BWA-0.7.18-GCCcore-12.3.0.eb
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
## | ||
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
# | ||
# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA | ||
# Authors:: George Tsouloupas <g.tsouloupas@cyi.ac.cy>, Fotis Georgatos <fotis@cern.ch> | ||
# License:: MIT/GPL | ||
# $Id$ | ||
# | ||
# This work implements a part of the HPCBIOS project and is a component of the policy: | ||
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html | ||
# | ||
# Version >= 0.7.15 | ||
# Author: Adam Huffman | ||
# The Francis Crick Institute | ||
# | ||
# Note that upstream development is mainly at: https://github.com/lh3/bwa | ||
# | ||
# 0.7.18 | ||
# Erica Bianco (HPCNow!) | ||
## | ||
|
||
name = 'BWA' | ||
version = '0.7.18' | ||
|
||
homepage = 'http://bio-bwa.sourceforge.net/' | ||
description = """ | ||
Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively | ||
short nucleotide sequences against a long reference sequence such as the human | ||
genome. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = ['https://github.com/lh3/%(name)s/archive/'] | ||
sources = ['v%(version)s.tar.gz'] | ||
checksums = ['194788087f7b9a77c0114aa481b2ef21439f6abab72488c83917302e8d0e7870'] | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
|
||
dependencies = [ | ||
('Perl', '5.36.1'), | ||
('zlib', '1.2.13'), | ||
] | ||
|
||
# Allow use of x86 intrinsics on PPC | ||
prebuildopts = 'export CFLAGS="$CFLAGS -fcommon -DNO_WARN_X86_INTRINSICS" && ' | ||
prebuildopts += "sed -i 's|^CC=|#CC=|g' Makefile && " | ||
prebuildopts += "sed -i 's|^CFLAGS=|#CFLAGS=|g' Makefile && " | ||
prebuildopts += "sed -i 's|^LIBS=|LIBS= $(LDFLAGS) |g' Makefile && " | ||
|
||
moduleclass = 'bio' |