-
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.
- Loading branch information
Ivan Cao-Berg
committed
May 8, 2024
1 parent
9412fd0
commit 05a4e33
Showing
1 changed file
with
39 additions
and
0 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,39 @@ | ||
-- | ||
-- canu 1.5 modulefile | ||
-- | ||
-- "URL: https://www.psc.edu/resources/software" | ||
-- "Category: Utilities" | ||
-- "Description: ." | ||
-- "Keywords: singularity bioinformatics" | ||
|
||
whatis("Name: canu") | ||
whatis("Version: 1.5") | ||
whatis("Category: Utilities") | ||
whatis("URL: https://www.psc.edu/resources/software") | ||
whatis("Description: A single molecule sequence assembler for genomes large and small.") | ||
whatis("Keywords: singularity bioinformatics") | ||
|
||
help([[ | ||
A single molecule sequence assembler for genomes large and small. | ||
To load the module, type | ||
> module load canu/1.5 | ||
To unload the module, type | ||
> module unload canu/1.5 | ||
For help, type | ||
> canu -h | ||
Tools included in this module are | ||
* canu | ||
]]) | ||
|
||
local package = "canu" | ||
local version = "1.5" | ||
local base = pathJoin("/opt/packages",package,version) | ||
prepend_path("PATH", base) |