-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added java 17, 18 and fixed nextflow 22.10.7
- Loading branch information
Showing
5 changed files
with
129 additions
and
13 deletions.
There are no files selected for viewing
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,10 @@ | ||
bin | ||
conf | ||
include | ||
jmods | ||
legal | ||
lib | ||
LICENSE | ||
man | ||
README | ||
release |
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,49 @@ | ||
# Installation | ||
|
||
```bash | ||
## Commands used for installing the software | ||
|
||
MODSRC=/jhpce/shared/libd/core | ||
VER='17' | ||
mkdir -p $MODSRC/java | ||
cd $MODSRC/java | ||
wget -O- https://download.oracle.com/java/17/archive/jdk-17.0.9_linux-x64_bin.tar.gz | tar xvzf - | ||
mv jdk-17.0.9 $VER | ||
cd $VER | ||
## Ignore all downloaded/installed files | ||
echo "bin conf include jmods legal lib LICENSE man README release" | tr " " "\n" > .gitignore | ||
|
||
chmod -R a+rX $MODSRC/java/$VER | ||
|
||
## Version control files | ||
git add .gitignore | ||
git add README.md | ||
``` | ||
|
||
# Reproducibility | ||
|
||
```bash | ||
## Evaluate the following commands | ||
module list | ||
date | ||
echo "User: ${USER}" | ||
echo "Hostname: ${HOSTNAME}" | ||
``` | ||
|
||
```bash | ||
## copy paste the output from the previous commands | ||
$ module list | ||
|
||
Currently Loaded Modules: | ||
1) JHPCE_ROCKY9_DEFAULT_ENV 2) JHPCE_tools/3.0 | ||
|
||
$ date | ||
|
||
Mon Oct 30 01:41:44 PM EDT 2023 | ||
|
||
$ echo "User: ${USER}" | ||
User: gpertea1 | ||
|
||
$ echo "Hostname: ${HOSTNAME}" | ||
Hostname: compute-148.cm.cluster | ||
``` |
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,10 @@ | ||
bin | ||
conf | ||
include | ||
jmods | ||
legal | ||
lib | ||
LICENSE | ||
man | ||
README | ||
release |
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,48 @@ | ||
# Installation | ||
|
||
```bash | ||
## Commands used for installing the software | ||
|
||
MODSRC=/jhpce/shared/libd/core | ||
VER='18' | ||
mkdir -p $MODSRC/java | ||
cd $MODSRC/java | ||
wget -O- https://download.oracle.com/java/18/archive/jdk-18.0.2.1_linux-x64_bin.tar.gz | tar xvzf - | ||
mv jdk-18.0.2.1 $VER | ||
cd $VER | ||
## Ignore all downloaded/installed files | ||
echo "bin conf include jmods legal lib LICENSE man README release" | tr " " "\n" > .gitignore | ||
chmod -R a+rX $MODSRC/java/$VER | ||
|
||
## Version control files | ||
git add .gitignore | ||
git add README.md | ||
``` | ||
|
||
# Reproducibility | ||
|
||
```bash | ||
## Evaluate the following commands | ||
module list | ||
date | ||
echo "User: ${USER}" | ||
echo "Hostname: ${HOSTNAME}" | ||
``` | ||
|
||
```bash | ||
## copy paste the output from the previous commands | ||
$ module list | ||
|
||
Currently Loaded Modules: | ||
1) JHPCE_ROCKY9_DEFAULT_ENV 2) JHPCE_tools/3.0 | ||
|
||
$ date | ||
|
||
Mon Oct 30 01:41:44 PM EDT 2023 | ||
|
||
$ echo "User: ${USER}" | ||
User: gpertea1 | ||
|
||
$ echo "Hostname: ${HOSTNAME}" | ||
Hostname: compute-148.cm.cluster | ||
``` |
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