ComputeVM: FastQC-0.11.3-Java-1.7.0_76.eb

File FastQC-0.11.3-Java-1.7.0_76.eb, 930 bytes (added by george, 9 years ago)
Line 
1name = 'FastQC'
2namelower = name.lower()
3version = '0.11.3'
4
5homepage = 'http://www.bioinformatics.babraham.ac.uk/projects/fastqc/'
6description = """FastQC - A Quality Control application for FastQ files."""
7
8toolchain = {'name': 'dummy', 'version': 'dummy'}
9easyblock = 'PackedBinary'
10
11java = 'Java'
12javaver = '1.7.0_76'
13versionsuffix = '-%s-%s' % (java, javaver)
14
15dependencies = [(java, javaver)]
16
17#
18# Example URL:
19# http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.3.zip
20#
21source_urls = [('http://www.bioinformatics.babraham.ac.uk/projects/%s' % namelower)]
22sources = [('%s_v%s.zip' % (namelower, version))]
23
24sanity_check_paths = {
25    'files': ["fastqc" ],
26    'dirs': []
27}
28
29#
30# Make FastQC binary (perl start script) executable.
31# (Mode may by masked by umask.)
32#
33postinstallcmds = ['chmod 775 %(installdir)s/%(namelower)s']
34
35sanity_check_commands = [('%(namelower)s', '--version')]
36
37moduleclass = 'bio'