Skip to content

LieberInstitute/jhpce_module_source

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e1d3fe9 · Jan 8, 2025
Jul 26, 2024
Feb 19, 2021
Sep 27, 2023
Jun 30, 2023
Oct 5, 2023
Feb 27, 2024
Dec 6, 2024
Aug 29, 2019
Sep 24, 2024
Aug 28, 2023
Feb 19, 2021
Dec 6, 2019
Aug 28, 2023
Oct 10, 2024
Mar 21, 2024
Jul 31, 2024
Oct 24, 2024
Jul 28, 2023
Feb 8, 2024
Jul 26, 2024
Sep 6, 2024
Aug 6, 2024
Mar 22, 2024
Aug 29, 2023
Nov 30, 2023
Aug 29, 2019
Mar 10, 2023
Jun 6, 2022
Oct 29, 2024
Jun 16, 2020
Aug 28, 2023
Aug 28, 2023
Oct 30, 2023
Jun 29, 2023
Apr 17, 2024
Jul 26, 2024
Mar 26, 2024
Aug 31, 2023
Aug 29, 2023
Jan 5, 2024
Jul 26, 2024
Jan 30, 2024
May 19, 2023
Jun 6, 2022
Sep 24, 2023
Oct 16, 2024
Sep 19, 2024
May 2, 2024
Jul 6, 2023
Sep 16, 2021
Jun 29, 2023
Sep 22, 2023
Jun 29, 2023
Aug 28, 2023
Aug 28, 2023
Mar 20, 2024
Nov 21, 2024
Sep 22, 2021
Oct 11, 2024
Apr 11, 2024
Jun 30, 2023
Jul 10, 2023
Nov 15, 2023
Aug 31, 2023
Sep 26, 2023
Aug 28, 2023
Jul 27, 2021
Jul 26, 2024
Jan 8, 2025
Jun 30, 2023
Jul 14, 2023
Jun 6, 2024
Sep 19, 2024
Mar 28, 2024
Aug 22, 2023
Jul 26, 2024
Mar 6, 2024
Sep 24, 2023

Repository files navigation

JHPCE module source

This repository contains the module source files for modules contributed to JHPCE mostly by members of the R/Bioconductor-powered Team Data Science at the Lieber Institute for Brain Development. Though other people from LIBD can contribute to these modules and request to be added to the lieber_modules user group as detailed here.

The configuration files are hosted in the jhpce_module_config GitHub repository.

Questions

If you have any questions, please send an email to the JHPCE bithelp mailing list described at Ways to Seek Help and Support.

Usage

See the jhpce_module_config repository.

Create a new module

Step 1. Create a directory in lowercase with the name of the source you are installing. In this example, we'll install HISAT2 version 2.2.1.

mkdir hisat2

Step 2. Create a nested directory with the version number of the software you are installing. In this example, that would be 2.2.1.

mkdir hisat2/2.2.1

Step 3. Copy and rename the template README.md

cp README_template.md hisat2/2.2.1/README.md

Step 4. Edit the template README.md in the new directory and install the software. Make sure that any information for reproducing the installation process is documented. As an example, check the hisat2/2.2.1/README.md file.

Step 5. Make sure that the permissions are set correctly at the end.

## Use 7 for group: so Nick and Leo can edit the files
chmod 775 -R hisat2/2.2.1/

Contributors

Current

Former

JHPCE location

/jhpce/shared/libd/core

Useful aliases for your ~/.bashrc file:

## Creating modules
# https://lmod.readthedocs.io/en/latest/050_lua_modulefiles.html
alias modsrc="cd /jhpce/shared/libd/core"
alias modlua="cd /jhpce/shared/libd/modulefiles"