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}[foss/2023b] qcat v1.1.0 #21445

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
35 changes: 35 additions & 0 deletions easybuild/easyconfigs/q/qcat/qcat-1.1.0-foss-2023b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Author: Pavel Grochal (INUITS)
# License: GPLv2
# Update: Petr Král (INUITS)
easyblock = 'PythonPackage'

name = 'qcat'
version = '1.1.0'

homepage = 'https://github.com/nanoporetech/qcat'
description = "qcat is a Python command-line tool for demultiplexing Oxford Nanopore reads from FASTQ files"

toolchain = {'name': 'foss', 'version': '2023b'}

sources = [SOURCE_TAR_GZ]
checksums = ['56f225321a48eef43e2b83a33cbbb47bf1b1edcd569f3db4d088a1bc0199e20a']

dependencies = [
('Python', '3.11.5'),
('Biopython', '1.84'),
('python-parasail', '1.3.4'),
('PyYAML', '6.0.1'),
]

download_dep_fail = True
use_pip = True
sanity_pip_check = True

sanity_check_paths = {
'files': ['bin/qcat'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}

sanity_check_commands = ["qcat --help"]

moduleclass = 'bio'
Loading