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}[GCC/13.3.0] Sabre v2013-09-28 #22222

Merged
Merged
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
38 changes: 38 additions & 0 deletions easybuild/easyconfigs/s/Sabre/Sabre-2013-09-28-GCC-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
easyblock = 'MakeCp'

name = 'Sabre'
local_commit = '039a55e'
version = '2013-09-28'

homepage = 'https://github.com/najoshi/sabre'
description = """Sabre is a tool that will demultiplex barcoded reads
into separate files. It will work on both single-end and paired-end
data in fastq format. It simply compares the provided barcodes with
each read and separates the read into its appropriate barcode file,
after stripping the barcode from the read (and also stripping
the quality values of the barcode bases)."""

toolchain = {'name': 'GCC', 'version': '13.3.0'}

source_urls = ['https://github.com/najoshi/sabre/archive/']
sources = [{'download_filename': '%s.tar.gz' % local_commit, 'filename': SOURCE_TAR_GZ}]
checksums = ['8101eda078eded6c755d607a83ad5c659023dad9f0f2dadc11445c0ca305bf02']

dependencies = [
('zlib', '1.3.1'),
]

buildopts = 'CC="$CC" CFLAGS="$CFLAGS"'

files_to_copy = [
(['sabre'], 'bin'),
]

sanity_check_paths = {
'files': ['bin/sabre'],
'dirs': []
}

sanity_check_commands = ['sabre --help']

moduleclass = 'bio'