-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13487 from SethosII/20210723080035_new_pr_gffread…
…0126 {bio}[GCC/10.3.0] gffread v0.12.6
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
easybuild/easyconfigs/g/gffread/gffread-0.12.7-GCC-10.3.0.eb
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,32 @@ | ||
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
easyblock = 'MakeCp' | ||
|
||
name = 'gffread' | ||
version = '0.12.7' | ||
|
||
homepage = 'https://ccb.jhu.edu/software/stringtie/gff.shtml#gffread' | ||
description = """GFF/GTF parsing utility providing format conversions, | ||
region filtering, FASTA sequence extraction and more.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '10.3.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = ['https://github.com/gpertea/%(namelower)s/releases/download/v%(version)s/'] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['bfde1c857495e578f5b3af3c007a9aa40593e69450eafcc6a42c3e8ef08ed1f5'] | ||
|
||
buildopts = " release" | ||
|
||
files_to_copy = [ | ||
(['%(name)s'], 'bin'), | ||
'LICENSE', | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/%(name)s'], | ||
'dirs': [] | ||
} | ||
|
||
sanity_check_commands = ['%(name)s'] | ||
|
||
moduleclass = 'bio' |