modified: q/Qualimap/Qualimap-2.2.1.eb

modified:   r/R/R-3.5.3-intel-2017a.eb
	new file:   t/Trilinos/Trilinos-12.14.1-epetra_hdf5.patch
	modified:   t/Trilinos/Trilinos-12.14.1-intel-2017c-Py-2.7.eb
This commit is contained in:
Lukáš Krupčík 2019-04-25 09:29:06 +02:00
parent 14ce73fefa
commit 40aaee4349
4 changed files with 35 additions and 6 deletions

View File

@ -11,13 +11,14 @@ description = """Qualimap 2 is a platform-independent application written in
interface to facilitate the quality control of alignment sequencing data and its
derivatives like feature counts."""
toolchain = {'name': 'dummy', 'version': ''}
toolchain = {'name': 'intel', 'version': '2017a'}
sources = ['qualimap_v2.2.1.zip']
source_urls = ['https://bitbucket.org/kokonech/qualimap/downloads']
dependencies = [
('Java', '1.8.0_121'),
('Java', '1.8.0_121', '', True),
('R', '3.5.3'),
]
cmds_map = [('.*', "./compile.sh")]

View File

@ -2075,6 +2075,23 @@ exts_list = [
('BiocGenerics', '0.28.0'),
('Biobase', '2.42.0'),
('NOISeq', '2.26.1'),
('S4Vectors', '0.20.1'),
('IRanges', '2.16.0'),
('GenomeInfoDbData', '1.2.0'),
('GenomeInfoDb', '1.18.2'),
('zlibbioc', '1.28.0'),
('XVector', '0.22.0'),
('GenomicRanges', '1.34.0'),
('Biostrings', '2.50.2'),
('BiocParallel', '1.16.6'),
('Rsamtools', '1.34.1'),
('DelayedArray', '0.8.0'),
('SummarizedExperiment', '1.12.0'),
('GenomicAlignments', '1.18.1'),
('rtracklayer', '1.42.2'),
('BSgenome', '1.50.0'),
('gsmoothr', '0.1.7'),
('limma', '3.14.4'),
]
moduleclass = 'lang'

View File

@ -0,0 +1,10 @@
--- packages/epetraext/test/inout/CMakeLists.txt.orig 2019-04-24 13:19:22.095883629 +0200
+++ packages/epetraext/test/inout/CMakeLists.txt 2019-04-24 13:19:36.249871114 +0200
@@ -11,6 +11,7 @@
TRIBITS_ADD_EXECUTABLE_AND_TEST(
inout_hdf5_test
+ EXCLUDE_IF_NOT_TRUE ${PACKAGE_NAME}_ENABLE_HDF5
SOURCES
EpetraExt_HDF5_UnitTest.cpp
COMM serial mpi

View File

@ -14,14 +14,15 @@ toolchainopts = {'usempi': True, 'pic': True, 'strict': True}
source_urls = ['https://github.com/trilinos/Trilinos/archive/']
sources = ['%(namelower)s-release-12-14-1.tar.gz']
#patches = [
patches = [
('Trilinos-12.14.1-epetra_hdf5.patch'),
# ('Trilinos-12.12.1_fix-CEpetra-LAPACK.patch', 'packages/CTrilinos'),
# 'Trilinos-12.12.1_muelu-fix-function-signature.patch',
# 'Trilinos-12.12.1_fix-Sundance.patch',
#]
]
#configopts = '-D EpetraExt_inout_hdf5_test_MPI_4_DISABLE=ON'
configopts = '-DEpetraExt_ENABLE_HDF5=OFF'
configopts = '-DThyraEpetraAdapters_TestThyraDebugHang_MPI_4_DISABLE=ON '
configopts += '-DEpetraExt_ENABLE_HDF5=OFF '
builddependencies = [
('CMake', '3.13.1', '', True),