Skip to content
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
easyblock = 'Tarball'

name = 'BUSCO'
version = '1.22'
versionsuffix = '-Python-%(pyver)s'

homepage = 'http://busco.ezlab.org/'
description = "BUSCO: assessing genome assembly and annotation completeness with single-copy orthologs"

toolchain = {'name': 'intel', 'version': '2017a'}


Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

drop duplicate empty line please

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@boegel done

source_urls = ['http://busco.ezlab.org/v1/files/']
sources = ['%(name)s_v%(version)s.tar.gz']

checksums = ['86088bbd2128ea04ad9e1b2ebd18201f4c79a48a161ba2593feb12abb8a2d0e2']

dependencies = [
('Python', '2.7.13'),
('BLAST+', '2.6.0', versionsuffix),
('HMMER', '3.1b2'),
('AUGUSTUS', '3.2.3', versionsuffix),
('EMBOSS', '6.6.0', '-X11-20170314'),
]

postinstallcmds = ['chmod +x %(installdir)s/*.py']

sanity_check_paths = {
'files': ['BUSCO_v1.22.py'],

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hajgato please use %(version)s rather than hardcoding the version?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@boegel done

'dirs': ['sample_data'],
}

modextrapaths = {'PATH': '.'}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need to use '.', '' works fine

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@boegel done


moduleclass = 'bio'