-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05d589d
commit 37b9558
Showing
7 changed files
with
172 additions
and
156 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
This file was deleted.
Oops, something went wrong.
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,75 @@ | ||
easyblock = 'Bundle' | ||
|
||
name = 'Transrate' | ||
version = '1.0.3' | ||
|
||
homepage = 'https://hibberdlab.com/transrate' | ||
description = """Transrate is software for de-novo transcriptome assembly quality analysis. | ||
It examines your assembly in detail and compares it to experimental evidence such as the sequencing reads, | ||
reporting quality scores for contigs and assemblies. This allows you to choose between assemblers and parameters, | ||
filter out the bad contigs from an assembly, and help decide when to stop trying to improve the assembly.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '12.3.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('Ruby', '3.3.0'), | ||
] | ||
|
||
default_easyblock = 'RubyGem' | ||
|
||
default_component_specs = { | ||
'source_urls': ['https://rubygems.org/downloads/'], | ||
'sources': ['%(name)s-%(version)s.gem'], | ||
} | ||
|
||
components = [ | ||
('colorize', '0.7.7', { | ||
'checksums': ['d6ab95a5fcdea3c36c3327d38c1e79e2950ee1788506d8489ae35db330937a99'], | ||
}), | ||
('facade', '1.2.1', { | ||
'checksums': ['0764de5519088227675a2a67da23322500c3c507b89486d91296e031d87d036e'], | ||
}), | ||
('pathname2', '1.8.4', { | ||
'checksums': ['1711264f3f7c1b380f96e1f0383b135d9703488f7b1acf66346a176efc257b7a'], | ||
}), | ||
('fixwhich', '1.0.2', { | ||
'checksums': ['c6a8f796a7eb60ffbc29f0d2af85461761a36c2864d25e445ff18bfbd1657078'], | ||
}), | ||
('bindeps', '1.2.1', { | ||
'checksums': ['3c11d75aa722bed67246852bb430a182361a128910d384b664b91f3e65bc34b5'], | ||
}), | ||
('yell', '2.2.2', { | ||
'checksums': ['1d166f3cc3b6dc49a59778ea7156ed6d8de794c15106d48ffd6cbb061b9b26bc'], | ||
}), | ||
('bio', '1.6.0.pre.20181210', { | ||
'checksums': ['c4114aeb99b012f90660b92ead4ca88c1578fd58252ed3ec46eb45dc4a2c6cc9'], | ||
}), | ||
('threach', '0.2.0', { | ||
'checksums': ['432cbf3569bf9b09e26f93d0959fd6fb911c71e790e8a4cc4d1110e139a2ffca'], | ||
}), | ||
('trollop', '2.9.10', { | ||
'checksums': ['ceca2d91f349163d6ee3e792d356d4ded7472e6da31ac6dcc5956d1b03607bf7'], | ||
}), | ||
('crb-blast', '0.6.9', { | ||
'checksums': ['69c346e7d83efe9b9a383a39b57e7cce186a82b7074f275b14906f8f05678e3e'], | ||
}), | ||
('%(namelower)', version, { | ||
'preinstallopts': """sed -i "s/'yell', '~> 2.0',/'yell',/g" transrate.gemspec && """, | ||
'checksums': ['2ccb101cfab5a33586ea9e62af2b2f14caf6bc016724d1fef796b427e39fe100'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/%(namelower)s'], | ||
'dirs': ['gems/%(namelower)s-%(version)s'], | ||
} | ||
|
||
sanity_check_commands = ["%(namelower)s --help"] | ||
|
||
modextrapaths = {'GEM_PATH': ['']} | ||
|
||
moduleclass = 'bio' |
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,31 @@ | ||
easyblock = 'RubyGem' | ||
|
||
name = 'colorize' | ||
version = '0.7.7' | ||
|
||
homepage = 'https://github.com/fazibear/colorize' | ||
description = """Ruby gem for colorizing text using ANSI escape sequences. | ||
Extends String class or add a ColorizedString with methods to set the text color, background color and text effects.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://rubygems.org/downloads/'] | ||
sources = ['%(name)s-%(version)s.gem'] | ||
checksums = ['d6ab95a5fcdea3c36c3327d38c1e79e2950ee1788506d8489ae35db330937a99'] | ||
|
||
gem_file = '%(name)s-%(version)s.gem' | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('Ruby', '3.3.0'), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['gems/%(namelower)s-%(version)s'], | ||
} | ||
|
||
moduleclass = 'lib' |
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
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
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,30 @@ | ||
easyblock = 'RubyGem' | ||
|
||
name = 'yell' | ||
version = '2.2.2' | ||
|
||
homepage = 'https://github.com/rudionrails/yell' | ||
description = """Yell - Your Extensible Logging Library is a comprehensive logging replacement for Ruby.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://rubygems.org/downloads/'] | ||
sources = ['%(name)s-%(version)s.gem'] | ||
checksums = ['1d166f3cc3b6dc49a59778ea7156ed6d8de794c15106d48ffd6cbb061b9b26bc'] | ||
|
||
gem_file = '%(name)s-%(version)s.gem' | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('Ruby', '3.3.0'), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['gems/%(namelower)s-%(version)s'], | ||
} | ||
|
||
moduleclass = 'lib' |