-
Notifications
You must be signed in to change notification settings - Fork 704
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}[system/system] nullarbor v2.0.20191013 #9778
Closed
manifestoso
wants to merge
1
commit into
easybuilders:develop
from
DeepThoughtHPC:20200124131343_new_pr_nullarbor2020191013
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
easybuild/easyconfigs/n/nullarbor/nullarbor-2.0.20191013.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,45 @@ | ||
## | ||
# This is a contribution from DeepThought HPC Service, Flinders University, Adelaide, Australia | ||
# Homepage: https://staff.flinders.edu.au/research/deep-thought | ||
# | ||
# Authors:: Robert Qiao <rob.qiao@flinders.edu.au> | ||
# License:: GPLv2.0 | ||
# | ||
# Notes:: This is a conda version installation | ||
## | ||
|
||
easyblock = 'Conda' | ||
|
||
name = 'nullarbor' | ||
version = '2.0.20191013' | ||
|
||
homepage = 'https://github.com/tseemann/nullarbor' | ||
description = """ | ||
Pipeline to generate complete public health microbiology reports from sequenced isolates | ||
""" | ||
|
||
toolchain = SYSTEM | ||
|
||
channels = ['conda-forge', 'bioconda'] | ||
|
||
requirements = '%(name)s=%(version)s python=3.6' | ||
|
||
dependencies = [ | ||
('Miniconda3', '4.7.10', '', True) | ||
] | ||
|
||
sanity_check_commands = [('nullarbor.pl', '-h')] | ||
|
||
sanity_check_paths = { | ||
'files': [ | ||
'bin/nullarbor.pl', | ||
'bin/nullarbor-json.pl', | ||
'bin/nullarbor-report.pl'], | ||
'dirs': [ | ||
'bin', | ||
'perl5', | ||
'binaries', | ||
'plugins'], | ||
} | ||
|
||
moduleclass = 'bio' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is
nullarbor.pl --check
, but if fails with missing databases, should those also be installed?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@migueldiascosta Thx for pointing
--check
option. I think it's a duplicate feature assanity_check
checks dir/perl5
which containsperl
modules,files
checks all binaries.You probably are right, a more explicit option can be invoked to check each required
perl
modules.A complete
nullarbor
has two partsframework
anddataset
, this easyconfig only caterframework
part. Given the referencedatabase
is of a reasonable size24G
altogether and different research may use different reference databases, I would prefer to leave this part to the individual institution. I can append a few lines of instructions at the end, see what you @migueldiascosta think.