Skip to content

Commit

Permalink
progress on #166 FragPipe
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKralCZ committed Jan 26, 2024
1 parent 40597ae commit a09d9d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 8 additions & 1 deletion 166_FragPipe/IonQuant-1.9.8-Java-11.eb
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,18 @@ checksums = ['98010f55d53c3fce786538da2976e1caaf688b29649d32e66ead8ba24a0db754']

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

modextrapaths = {'PATH': ['']}
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 | grep '^Usage'"]

moduleclass = 'bio'
3 changes: 0 additions & 3 deletions 166_FragPipe/MSFragger-3.8-Java-11.eb
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,11 @@ postinstallcmds = [
"chmod a+rx %(installdir)s/bin/%(namelower)s",
]

# modextrapaths = {'CLASSPATH': ''}

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

# sanity_check_commands = ['java -jar %(name)s-%(version)s.jar --help']
sanity_check_commands = ['%(namelower)s --help']

moduleclass = 'bio'

0 comments on commit a09d9d6

Please sign in to comment.