ABGC modules: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
No edit summary
m (<source> to <pre> to fix code blocks)
 
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
All ABGC modules can be found in:
  /cm/shared/apps/WUR/ABGC/modulefiles
== Modules available for ABGC ==
* [[asreml_3.0 | asreml/3.0fl-64]]
* [[asreml_3.0 | asreml/3.0fl-64]]
* augustus/2.
* [[asreml_4.0 | asreml/4.0kr]]
* [[BLAST | BLAST+/2.2.28]]  
* [[asreml_4.1 | asreml/4.1.0]]
* [[blat_v35 |blat/v35]]
* [[Perl5.10_WUR_module | Perl/5.10.1_wur]]
* bwa/0.5.9 
* [[R3.0.2_WUR_module | R/3.0.2_wur]]
* [[bwa_7.5 | bwa/0.7.5a]]
 
* cegma/2.
== Adding a custom module directory to your environment ==
* [[exonerate_2.2.0 | exonerate/2.2.0-x86_64]]
To allow the <code>module</code> program to find the custom module directory, the location of that directory has to be added to <code>MODULEPATH</code> variable.  
* geneid/1.4.4    
 
* genewise/2.2.3-rc7   
<pre>
* hmmer/3.1b1
export MODULEPATH=$MODULEPATH:/cm/shared/apps/WUR/ABGC/modulefiles
* [[maker_2.2.8 | maker/2.28]]    
</pre>
* Perl/5.10.1_wur     
This can be made permanent by adding this line of code to the <code>.bash_profile</code> file in the root of your home folder. To then load the modified <code>MODULEPATH</code> variable you have to load  <code>.bash_profile</code> again:
* R/3.0.2_wur
<pre>
* [[RepeatMasker_4.0.3 | RepeatMasker/4.0.3]]
source .bash_profile
* RepeatModeler/1.0.7
</pre>
* snap/2013-11-29
This needs to be done only for terminals that are already open. Next time you login, <code>.bash_profile</code> will be loaded automatically.
 
You can check if the modules are found.
<pre>
module avail
</pre>
This should give output that includes something similar to this:
 
   ----------------------------------- /cm/shared/apps/WUR/ABGC/modulefiles -----------------------------------
  bwa/0.5.9  bwa/0.7.5a
 
== See also ==
* [[Globally_installed_software | Globally installed software]]
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]
* [[Setting local variables]]
* [[Installing_R_packages_locally | Installing R packages locally]]
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]
 
== External links ==

Latest revision as of 16:43, 15 June 2023

All ABGC modules can be found in:

 /cm/shared/apps/WUR/ABGC/modulefiles

Modules available for ABGC

Adding a custom module directory to your environment

To allow the module program to find the custom module directory, the location of that directory has to be added to MODULEPATH variable.

export MODULEPATH=$MODULEPATH:/cm/shared/apps/WUR/ABGC/modulefiles

This can be made permanent by adding this line of code to the .bash_profile file in the root of your home folder. To then load the modified MODULEPATH variable you have to load .bash_profile again:

source .bash_profile

This needs to be done only for terminals that are already open. Next time you login, .bash_profile will be loaded automatically.

You can check if the modules are found.

module avail

This should give output that includes something similar to this:

 ----------------------------------- /cm/shared/apps/WUR/ABGC/modulefiles -----------------------------------
 bwa/0.5.9  bwa/0.7.5a

See also

External links