Skip to content

Commit

Permalink
Merge pull request easybuilders#19811 from PetrKralCZ/20240208100552_…
Browse files Browse the repository at this point in the history
…new_pr_MSFragger40

{bio}[system/system] MSFragger v4.0 w/ Java 11
  • Loading branch information
boegel authored Mar 5, 2024
2 parents 36c6186 + 81382eb commit 5829a14
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions easybuild/easyconfigs/m/MSFragger/MSFragger-4.0-Java-11.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
easyblock = 'Tarball'

name = 'MSFragger'
version = '4.0'
versionsuffix = '-Java-%(javaver)s'

homepage = 'https://msfragger.nesvilab.org/'
description = """MSFragger is an ultrafast database search tool for peptide identification
in mass spectrometry-based proteomics. It has demonstrated excellent performance across a wide
range of datasets and applications. MSFragger is suitable for standard shotgun proteomics
analyses as well as large datasets (including timsTOF PASEF data), enzyme unconstrained
searches (e.g., peptidome), open database searches (e.g., precursor mass tolerance set
to hundreds of Daltons) for identification of modified peptides, and glycopeptide
identification (N-linked and O-linked)."""

toolchain = SYSTEM

sources = ['%(name)s-%(version)s.zip']
checksums = ['25bdab705c4ac97729d1da8d7a075e3920d8a447596fa52eff8e564606d1720e']

download_instructions = 'Manual download required, see http://msfragger-upgrader.nesvilab.org/upgrader/'

dependencies = [('Java', '11')]

postinstallcmds = [
"mkdir -p %(installdir)s/bin",
"echo '#!/bin/sh' > %(installdir)s/bin/%(namelower)s",
"echo 'java -jar %(installdir)s/%(name)s-%(version)s.jar $@' >> %(installdir)s/bin/%(namelower)s",
"chmod a+rx %(installdir)s/bin/%(namelower)s",
]

sanity_check_paths = {
'files': ['%(name)s-%(version)s.jar'],
'dirs': [],
}

sanity_check_commands = ['%(namelower)s --help']

moduleclass = 'bio'

0 comments on commit 5829a14

Please sign in to comment.