<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.anunna.wur.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dawes0011</id>
	<title>HPCwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.anunna.wur.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dawes0011"/>
	<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/Special:Contributions/Dawes0011"/>
	<updated>2026-06-20T22:25:12Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Old_binaries&amp;diff=2244</id>
		<title>Old binaries</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Old_binaries&amp;diff=2244"/>
		<updated>2023-06-19T09:27:57Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On Linux, most binaries rely on shared libraries that are loaded by the OS before the binary is executed.&lt;br /&gt;
&lt;br /&gt;
This allows them to share common runtimes, and avoid having to redo the same work multiple times. This is useful for optimisation and security, as debugging only has to be done in one place for multiple applications.&lt;br /&gt;
&lt;br /&gt;
However, a significant number of these libraries are automatically inserted by the OS, and as the cluster upgrades and changes some of these will no longer be automatically available. This will make older installs fail to execute, giving, for instance, errors related to glibc, or missing symbols.&lt;br /&gt;
&lt;br /&gt;
Thankfully, the entire library from previous OS builds is made available on the shared filesystem, granting older binaries the ability to access them whilst also running on a younger OS.&lt;br /&gt;
&lt;br /&gt;
There is a special environment variable: &amp;lt;code&amp;gt;LD_LIBRARY_PATH&amp;lt;/code&amp;gt; which tells the linker (ld) where extra to go find libraries. We use this extensively in the underlying module system on Anunna to control which libraries can be used. One such module, &amp;lt;code&amp;gt;sl7_libs&amp;lt;/code&amp;gt; automatically adds the older libraries in to older binaries, and has been added as a prerequisite for most older installs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you&#039;ve compiled something yourself that isn&#039;t a module, you may find yourself needing this module. Simply:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
module load sl7-libs/main&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add this path.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Jupyter ==&lt;br /&gt;
&lt;br /&gt;
This may also extend to custom-built kernels on Jupyter. Here, however, you can&#039;t add this module, as instantiating a kernel is done though &amp;lt;code&amp;gt;kernel.json&amp;lt;/code&amp;gt; instead of bash.&lt;br /&gt;
&lt;br /&gt;
To add the needed libraries, you need to modify your notebook to look like the following:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;language&amp;quot;: &amp;quot;python&amp;quot;,&lt;br /&gt;
 &amp;quot;argv&amp;quot;: [&lt;br /&gt;
  &amp;quot;/path/to/my/venv/bin/python&amp;quot;,&lt;br /&gt;
  &amp;quot;-m&amp;quot;,&lt;br /&gt;
  &amp;quot;ipykernel&amp;quot;,&lt;br /&gt;
  &amp;quot;-f&amp;quot;,&lt;br /&gt;
  &amp;quot;{connection_file}&amp;quot;&lt;br /&gt;
 ],&lt;br /&gt;
 &amp;quot;display_name&amp;quot;: &amp;quot;myvenv&amp;quot;,&lt;br /&gt;
 &amp;quot;env&amp;quot; : {&amp;quot;LD_LIBRARY_PATH&amp;quot;: &amp;quot;/usr/lib:/usr/lib64:/usr/lib/x86_64-linux-gnu:/shared/legacyapps/sl7-libs/lib:/shared/legacyapps/sl7-libs/lib64&amp;quot; }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When editing JSON, please be mindful that all elements in an object must be separated by commas, and that only doublequotes may be used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To test your JSON, try the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
cat ~/.local.share/jupyter/kernels/mykernel/kernel.json | jq&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;jq&amp;lt;/code&amp;gt; repeats your JSON, then it can parse it and you are good to go.&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Old_binaries&amp;diff=2243</id>
		<title>Old binaries</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Old_binaries&amp;diff=2243"/>
		<updated>2023-06-19T09:27:26Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On Linux, most binaries rely on shared libraries that are loaded by the OS before the binary is executed.&lt;br /&gt;
&lt;br /&gt;
This allows them to share common runtimes, and avoid having to redo the same work multiple times. This is useful for optimisation and security, as debugging only has to be done in one place for multiple applications.&lt;br /&gt;
&lt;br /&gt;
However, a significant number of these libraries are automatically inserted by the OS, and as the cluster upgrades and changes some of these will no longer be automatically available. This will make older installs fail to execute, giving, for instance, errors related to glibc, or missing symbols.&lt;br /&gt;
&lt;br /&gt;
Thankfully, the entire library from previous OS builds is made available on the shared filesystem, granting older binaries the ability to access them whilst also running on a younger OS.&lt;br /&gt;
&lt;br /&gt;
There is a special environment variable: &amp;lt;code&amp;gt;LD_LIBRARY_PATH&amp;lt;/code&amp;gt; which tells the linker (ld) where extra to go find libraries. We use this extensively in the underlying module system on Anunna to control which libraries can be used. One such module, &amp;lt;code&amp;gt;sl7_libs&amp;lt;/code&amp;gt; automatically adds the older libraries in to older binaries, and has been added as a prerequisite for most older installs.&lt;br /&gt;
&lt;br /&gt;
If you&#039;ve compiled something yourself that isn&#039;t a module, you may find yourself needing this module. Simply:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
module load sl7-libs/main&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add this path.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Jupyter ==&lt;br /&gt;
&lt;br /&gt;
This may also extend to custom-built kernels on Jupyter. Here, however, you can&#039;t add this module, as instantiating a kernel is done though &amp;lt;code&amp;gt;kernel.json&amp;lt;/code&amp;gt; instead of bash.&lt;br /&gt;
&lt;br /&gt;
To add the needed libraries, you need to modify your notebook to look like the following:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;language&amp;quot;: &amp;quot;python&amp;quot;,&lt;br /&gt;
 &amp;quot;argv&amp;quot;: [&lt;br /&gt;
  &amp;quot;/path/to/my/venv/bin/python&amp;quot;,&lt;br /&gt;
  &amp;quot;-m&amp;quot;,&lt;br /&gt;
  &amp;quot;ipykernel&amp;quot;,&lt;br /&gt;
  &amp;quot;-f&amp;quot;,&lt;br /&gt;
  &amp;quot;{connection_file}&amp;quot;&lt;br /&gt;
 ],&lt;br /&gt;
 &amp;quot;display_name&amp;quot;: &amp;quot;myvenv&amp;quot;,&lt;br /&gt;
 &amp;quot;env&amp;quot; : {&amp;quot;LD_LIBRARY_PATH&amp;quot;: &amp;quot;/usr/lib:/usr/lib64:/usr/lib/x86_64-linux-gnu:/shared/legacyapps/sl7-libs/lib:/shared/legacyapps/sl7-libs/lib64&amp;quot; }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When editing JSON, please be mindful that all elements in an object must be separated by commas, and that only doublequotes may be used.&lt;br /&gt;
&lt;br /&gt;
To test your JSON, try the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
cat ~/.local.share/jupyter/kernels/mykernel/kernel.json | jq&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;jq&amp;lt;/code&amp;gt; repeats your JSON, then it can parse it and you are good to go.&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Old_binaries&amp;diff=2242</id>
		<title>Old binaries</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Old_binaries&amp;diff=2242"/>
		<updated>2023-06-19T09:27:09Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: Created page with &amp;quot;On Linux, most binaries rely on shared libraries that are loaded by the OS before the binary is executed.  This allows them to share common runtimes, and avoid having to redo the same work multiple times. This is useful for optimisation and security, as debugging only has to be done in one place for multiple applications.  However, a significant number of these libraries are automatically inserted by the OS, and as the cluster upgrades and changes some of these will no l...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On Linux, most binaries rely on shared libraries that are loaded by the OS before the binary is executed.&lt;br /&gt;
&lt;br /&gt;
This allows them to share common runtimes, and avoid having to redo the same work multiple times. This is useful for optimisation and security, as debugging only has to be done in one place for multiple applications.&lt;br /&gt;
&lt;br /&gt;
However, a significant number of these libraries are automatically inserted by the OS, and as the cluster upgrades and changes some of these will no longer be automatically available. This will make older installs fail to execute, giving, for instance, errors related to glibc, or missing symbols.&lt;br /&gt;
&lt;br /&gt;
Thankfully, the entire library from previous OS builds is made available on the shared filesystem, granting older binaries the ability to access them whilst also running on a younger OS.&lt;br /&gt;
&lt;br /&gt;
There is a special environment variable: &amp;lt;code&amp;gt;LD_LIBRARY_PATH&amp;lt;/code&amp;gt; which tells the linker (ld) where extra to go find libraries. We use this extensively in the underlying module system on Anunna to control which libraries can be used. One such module, &amp;lt;code&amp;gt;sl7_libs&amp;lt;/code&amp;gt; automatically adds the older libraries in to older binaries, and has been added as a prerequisite for most older installs.&lt;br /&gt;
&lt;br /&gt;
If you&#039;ve compiled something yourself that isn&#039;t a module, you may find yourself needing this module. Simply:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
module load sl7-libs/main&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add this path.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Jupyter ==&lt;br /&gt;
&lt;br /&gt;
This may also extend to custom-built kernels on Jupyter. Here, however, you can&#039;t add this module, as instantiating a kernel is done though &amp;lt;code&amp;gt;kernel.json&amp;lt;/code&amp;gt; instead of bash.&lt;br /&gt;
&lt;br /&gt;
To add the needed libraries, you need to modify your notebook to look like the following:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;language&amp;quot;: &amp;quot;python&amp;quot;,&lt;br /&gt;
 &amp;quot;argv&amp;quot;: [&lt;br /&gt;
  &amp;quot;/path/to/my/venv/bin/python&amp;quot;,&lt;br /&gt;
  &amp;quot;-m&amp;quot;,&lt;br /&gt;
  &amp;quot;ipykernel&amp;quot;,&lt;br /&gt;
  &amp;quot;-f&amp;quot;,&lt;br /&gt;
  &amp;quot;{connection_file}&amp;quot;&lt;br /&gt;
 ],&lt;br /&gt;
 &amp;quot;display_name&amp;quot;: &amp;quot;myvenv&amp;quot;,&lt;br /&gt;
 &amp;quot;env&amp;quot; : {&amp;quot;LD_LIBRARY_PATH&amp;quot;: &amp;quot;/usr/lib:/usr/lib64:/usr/lib/x86_64-linux-gnu:/shared/legacyapps/sl7-libs/lib:/shared/legacyapps/sl7-libs/lib64&amp;quot; }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When editing JSON, please be mindful that all elements in an object must be separated by commas, and that only doublequotes may be used.&lt;br /&gt;
&lt;br /&gt;
To test your JSON, try the following:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
cat ~/.local.share/jupyter/kernels/mykernel/kernel.json | jq&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;jq&amp;lt;/code&amp;gt; repeats your JSON, then it can parse it and you are good to go.&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=2241</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=2241"/>
		<updated>2023-06-19T09:11:41Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: /* Miscellaneous */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Anunna is a [http://en.wikipedia.org/wiki/High-performance_computing High Performance Computer] (HPC) infrastructure hosted by [http://www.wageningenur.nl/nl/activiteit/Opening-High-Performance-Computing-cluster-HPC.htm Wageningen University &amp;amp; Research Centre]. It is open for use for all WUR research groups as well as other organizations, including companies, that have collaborative projects with WUR. &lt;br /&gt;
&lt;br /&gt;
= Using Anunna =&lt;br /&gt;
* [[Tariffs | Costs associated with resource usage]]&lt;br /&gt;
&lt;br /&gt;
== Gaining access to Anunna==&lt;br /&gt;
Access to the cluster and file transfer are traditionally done via [http://en.wikipedia.org/wiki/Secure_Shell SSH and SFTP].&lt;br /&gt;
* [[log_in_to_B4F_cluster | Logging into cluster using ssh]]&lt;br /&gt;
* [[file_transfer | File transfer options]]&lt;br /&gt;
* [[Services | Alternative access methods, and extra features and services on Anunna]]&lt;br /&gt;
* [[Filesystems | Data storage methods on Anunna]]&lt;br /&gt;
&lt;br /&gt;
== Access Policy ==&lt;br /&gt;
[[Access_Policy | Main Article: Access Policy]]&lt;br /&gt;
&lt;br /&gt;
Access needs to be granted actively (by creation of an account on the cluster by FB-IT). Use of resources is limited by the scheduler. Depending on availability of queues (&#039;partitions&#039;) granted to a user, priority to the system&#039;s resources is regulated. Note that the use of Anunna is not free of charge. List price of CPU time and storage, and possible discounts on that list price for your organisation, can be retrieved from Shared Research Facilities or FB-IT.&lt;br /&gt;
&lt;br /&gt;
= Events =&lt;br /&gt;
&lt;br /&gt;
* [[Courses]] that have happened and are happening&lt;br /&gt;
* [[Downtime]] that will affect all users&lt;br /&gt;
* [[Meetings]] that may affect the policies of Anunna&lt;br /&gt;
&lt;br /&gt;
= Other Software =&lt;br /&gt;
&lt;br /&gt;
== Cluster Management Software and Scheduler ==&lt;br /&gt;
Anunna uses Bright Cluster Manager software for overall cluster management, and Slurm as job scheduler.&lt;br /&gt;
* [[BCM_on_B4F_cluster | Monitor cluster status with BCM]]&lt;br /&gt;
* [[Using_Slurm | Submit jobs with Slurm]]&lt;br /&gt;
* [[node_usage_graph | Be aware of how much work the cluster is under right now with &#039;node_usage_graph&#039;]]&lt;br /&gt;
* [[SLURM_Compare | Rosetta Stone of Workload Managers]]&lt;br /&gt;
&lt;br /&gt;
== Installation of software by users ==&lt;br /&gt;
&lt;br /&gt;
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
* [[Virtual_environment_Python_3.4_or_higher | Setting up and using a virtual environment for Python3.4 or higher ]]&lt;br /&gt;
* [[Installing WRF and WPS]]&lt;br /&gt;
* [[Running scripts on a fixed timeschedule (cron)]]&lt;br /&gt;
&lt;br /&gt;
== Installed software ==&lt;br /&gt;
&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
= Useful Notes = &lt;br /&gt;
&lt;br /&gt;
== Being in control of Environment parameters ==&lt;br /&gt;
&lt;br /&gt;
* [[Using_environment_modules | Using environment modules]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Setting_TMPDIR | Set a custom temporary directory location]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
== Controlling costs ==&lt;br /&gt;
&lt;br /&gt;
* [[SACCT | using SACCT to see your costs]]&lt;br /&gt;
* [[get_my_bill | using the &amp;quot;get_my_bill&amp;quot; script to estimate costs]]&lt;br /&gt;
&lt;br /&gt;
== Management ==&lt;br /&gt;
Product Owner of Anunna is Alexander van Ittersum (Wageningen UR,FB-IT, C&amp;amp;PS). [[User:dawes001 | Gwen Dawes (Wageningen UR, FB-IT, C&amp;amp;PS)]] and [[User:haars001 | Jan van Haarst (Wageningen UR,FB-IT, C&amp;amp;PS)]] are responsible for [[Maintenance_and_Management | Maintenance and Management]] of the cluster.&lt;br /&gt;
&lt;br /&gt;
* [[Roadmap | Ambitions regarding innovation, support and administration of Anunna ]]&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[History_of_the_Cluster | Historical information on the startup of Anunna]]&lt;br /&gt;
* [[Bioinformatics_tips_tricks_workflows | Bioinformatics tips, tricks, and workflows]]&lt;br /&gt;
* [[Parallel_R_code_on_SLURM | Running parallel R code on SLURM]]&lt;br /&gt;
* [[Convert_between_MediaWiki_and_other_formats | Convert between MediaWiki format and other formats]]&lt;br /&gt;
* [[Manual GitLab | GitLab: Create projects and add scripts]]&lt;br /&gt;
* [[Monitoring_executions | Monitoring job execution]]&lt;br /&gt;
* [[Shared_folders | Working with shared folders in the Lustre file system]]&lt;br /&gt;
* [[Old_binaries | Running older binaries on the updated OS]]&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
* [[Maintenance_and_Management | Maintenance and Management]]&lt;br /&gt;
* [[BCData | BCData]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[About_ABGC | About ABGC]]&lt;br /&gt;
* [[Computer_cluster | High Performance Computing @ABGC]]&lt;br /&gt;
* [[Lustre_PFS_layout | Lustre Parallel File System layout]]&lt;br /&gt;
&lt;br /&gt;
= External links =&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [https://www.wur.nl/en/Value-Creation-Cooperation/Facilities/Wageningen-Shared-Research-Facilities/Our-facilities/Show/High-Performance-Computing-Cluster-HPC-Anunna.htm SRF offers a HPC facilty]&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scientific_Linux Scientific Linux]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Cheatsheet Help with editing Wiki pages]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=2240</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=2240"/>
		<updated>2023-06-19T09:11:27Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: /* Miscellaneous */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Anunna is a [http://en.wikipedia.org/wiki/High-performance_computing High Performance Computer] (HPC) infrastructure hosted by [http://www.wageningenur.nl/nl/activiteit/Opening-High-Performance-Computing-cluster-HPC.htm Wageningen University &amp;amp; Research Centre]. It is open for use for all WUR research groups as well as other organizations, including companies, that have collaborative projects with WUR. &lt;br /&gt;
&lt;br /&gt;
= Using Anunna =&lt;br /&gt;
* [[Tariffs | Costs associated with resource usage]]&lt;br /&gt;
&lt;br /&gt;
== Gaining access to Anunna==&lt;br /&gt;
Access to the cluster and file transfer are traditionally done via [http://en.wikipedia.org/wiki/Secure_Shell SSH and SFTP].&lt;br /&gt;
* [[log_in_to_B4F_cluster | Logging into cluster using ssh]]&lt;br /&gt;
* [[file_transfer | File transfer options]]&lt;br /&gt;
* [[Services | Alternative access methods, and extra features and services on Anunna]]&lt;br /&gt;
* [[Filesystems | Data storage methods on Anunna]]&lt;br /&gt;
&lt;br /&gt;
== Access Policy ==&lt;br /&gt;
[[Access_Policy | Main Article: Access Policy]]&lt;br /&gt;
&lt;br /&gt;
Access needs to be granted actively (by creation of an account on the cluster by FB-IT). Use of resources is limited by the scheduler. Depending on availability of queues (&#039;partitions&#039;) granted to a user, priority to the system&#039;s resources is regulated. Note that the use of Anunna is not free of charge. List price of CPU time and storage, and possible discounts on that list price for your organisation, can be retrieved from Shared Research Facilities or FB-IT.&lt;br /&gt;
&lt;br /&gt;
= Events =&lt;br /&gt;
&lt;br /&gt;
* [[Courses]] that have happened and are happening&lt;br /&gt;
* [[Downtime]] that will affect all users&lt;br /&gt;
* [[Meetings]] that may affect the policies of Anunna&lt;br /&gt;
&lt;br /&gt;
= Other Software =&lt;br /&gt;
&lt;br /&gt;
== Cluster Management Software and Scheduler ==&lt;br /&gt;
Anunna uses Bright Cluster Manager software for overall cluster management, and Slurm as job scheduler.&lt;br /&gt;
* [[BCM_on_B4F_cluster | Monitor cluster status with BCM]]&lt;br /&gt;
* [[Using_Slurm | Submit jobs with Slurm]]&lt;br /&gt;
* [[node_usage_graph | Be aware of how much work the cluster is under right now with &#039;node_usage_graph&#039;]]&lt;br /&gt;
* [[SLURM_Compare | Rosetta Stone of Workload Managers]]&lt;br /&gt;
&lt;br /&gt;
== Installation of software by users ==&lt;br /&gt;
&lt;br /&gt;
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
* [[Virtual_environment_Python_3.4_or_higher | Setting up and using a virtual environment for Python3.4 or higher ]]&lt;br /&gt;
* [[Installing WRF and WPS]]&lt;br /&gt;
* [[Running scripts on a fixed timeschedule (cron)]]&lt;br /&gt;
&lt;br /&gt;
== Installed software ==&lt;br /&gt;
&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
= Useful Notes = &lt;br /&gt;
&lt;br /&gt;
== Being in control of Environment parameters ==&lt;br /&gt;
&lt;br /&gt;
* [[Using_environment_modules | Using environment modules]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Setting_TMPDIR | Set a custom temporary directory location]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
== Controlling costs ==&lt;br /&gt;
&lt;br /&gt;
* [[SACCT | using SACCT to see your costs]]&lt;br /&gt;
* [[get_my_bill | using the &amp;quot;get_my_bill&amp;quot; script to estimate costs]]&lt;br /&gt;
&lt;br /&gt;
== Management ==&lt;br /&gt;
Product Owner of Anunna is Alexander van Ittersum (Wageningen UR,FB-IT, C&amp;amp;PS). [[User:dawes001 | Gwen Dawes (Wageningen UR, FB-IT, C&amp;amp;PS)]] and [[User:haars001 | Jan van Haarst (Wageningen UR,FB-IT, C&amp;amp;PS)]] are responsible for [[Maintenance_and_Management | Maintenance and Management]] of the cluster.&lt;br /&gt;
&lt;br /&gt;
* [[Roadmap | Ambitions regarding innovation, support and administration of Anunna ]]&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[History_of_the_Cluster | Historical information on the startup of Anunna]]&lt;br /&gt;
* [[Bioinformatics_tips_tricks_workflows | Bioinformatics tips, tricks, and workflows]]&lt;br /&gt;
* [[Parallel_R_code_on_SLURM | Running parallel R code on SLURM]]&lt;br /&gt;
* [[Convert_between_MediaWiki_and_other_formats | Convert between MediaWiki format and other formats]]&lt;br /&gt;
* [[Manual GitLab | GitLab: Create projects and add scripts]]&lt;br /&gt;
* [[Monitoring_executions | Monitoring job execution]]&lt;br /&gt;
* [[Shared_folders | Working with shared folders in the Lustre file system]]&lt;br /&gt;
* [[Old_binaries | running older binaries on the updated OS]]&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
* [[Maintenance_and_Management | Maintenance and Management]]&lt;br /&gt;
* [[BCData | BCData]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[About_ABGC | About ABGC]]&lt;br /&gt;
* [[Computer_cluster | High Performance Computing @ABGC]]&lt;br /&gt;
* [[Lustre_PFS_layout | Lustre Parallel File System layout]]&lt;br /&gt;
&lt;br /&gt;
= External links =&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [https://www.wur.nl/en/Value-Creation-Cooperation/Facilities/Wageningen-Shared-Research-Facilities/Our-facilities/Show/High-Performance-Computing-Cluster-HPC-Anunna.htm SRF offers a HPC facilty]&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scientific_Linux Scientific Linux]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Cheatsheet Help with editing Wiki pages]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Storage_Systems_Overview&amp;diff=2239</id>
		<title>Storage Systems Overview</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Storage_Systems_Overview&amp;diff=2239"/>
		<updated>2023-06-16T09:04:11Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Anunna currently has multiple filesystem mounts that are available cluster-wide:&lt;br /&gt;
&lt;br /&gt;
== Global ==&lt;br /&gt;
* /home - This mount uses NFS to mount the home directories directly from nfs01. Each user has a 200G quota for this filesystem, as it is regularly backed up to tape, and can reliably be restored from up to a week&#039;s history.&lt;br /&gt;
&lt;br /&gt;
* /shared - This mount provides a consistent set of binaries for the entire cluster.&lt;br /&gt;
&lt;br /&gt;
* /lustre - This large mount uses the Lustre filesystem to provide files from multiple redundant servers. Access is provided per group, thus:&lt;br /&gt;
 /lustre/[level]/[partner]/[unit]&lt;br /&gt;
e.g.&lt;br /&gt;
 /lustre/backup/WUR/ABGC/&lt;br /&gt;
It comprises of two major parts (and some minor):&lt;br /&gt;
* /lustre/backup - In case of disaster, this data is stored a second time on a separate machine. Whilst this backup is purely in case of complete tragedy (such as some immense filesystem error, or multiple component failure), it can potentially be used to revert mistakes if you are very fast about reporting them. There is however no guarantee of this service.&lt;br /&gt;
* /lustre/nobackup - This is the &#039;normal&#039; filesystem for Lustre - no backups, just stored on the filesystem. Without having a backup needed, the cost of data here is not as much as under /lustre/backup, but in case of disaster cannot be recivered.&lt;br /&gt;
* /lustre/shared - Same as /lustre/backup, except publicly available. This is where truly shared data lives that isn&#039;t assigned to a specific group.&lt;br /&gt;
&lt;br /&gt;
And additionally:&lt;br /&gt;
* /lustre/scratch - A separated, low resilience filesystem. Files here may be removed after some time if the filesystem gets too full (Typically 30 days). You should tidy up this data yourself once work is complete.&lt;br /&gt;
&lt;br /&gt;
=== Private shared directories ===&lt;br /&gt;
If you are working with a group of users on a similar project, you might consider making a [[Shared_folders|Shared directory]] to coordinate. Information on how to do so is in the linked article.&lt;br /&gt;
&lt;br /&gt;
== Local ==&lt;br /&gt;
Specific to certain machines are some other filesystems that are available to you:&lt;br /&gt;
* /archive - an archive mount only accessible from the login nodes. Files here are sent to the Isilon for deeper storage. The cost of storing data here is much less than on the Lustre, but it cannot be used for compute work. This location is only available to WUR users. Files are able to be reverted via snapshot, and there is a separated backup, however this only comes in fortnightly (14 day) intervals.&lt;br /&gt;
&lt;br /&gt;
* /tmp - On each worker node there is a /tmp mount that can be used for temporary local caching. Be advised that you should clean this up, lest your files become a hindrance to other users. You can request a node with free space in your sbatch script like so:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#SBATCH --tmp=&amp;lt;required space&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* /dev/shm - On each worker you may also create a virtual filesystem directly into memory, for extremely fast data access. Be advised that this will count against the memory used for your job, but it is also the fastest available filesystem if needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Tariffs | Costs associated with resource usage]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://wiki.lustre.org/index.php/Main_Page Lustre website]&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Setting_up_Python_virtualenv&amp;diff=2238</id>
		<title>Setting up Python virtualenv</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Setting_up_Python_virtualenv&amp;diff=2238"/>
		<updated>2023-06-16T09:02:11Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;With many Python packages available, which are often in conflict or requiring different versions depending on application, installing and controlling packages and versions is not always easy. In addition, so many packages are often used only occasionally, that it is questionable whether a system administrator of a centralized server system or a High Performance Compute (HPC) infrastructure can be expected to resolve all issues posed by users of the infrastructure. Even on a local system with full administrative rights managing versions, dependencies, and package collisions is often very difficult. The solution is to use a virtual environment, in which a specific set of packages can then be installed. As many different virtual environments can be created, and used side-by-side, as is necessary. &lt;br /&gt;
&lt;br /&gt;
NOTE: as of Python 3.3 virtual environment support is built-in. See this page for an [[virtual_environment_Python_3.4_or_higher | alternative set-up of your virtual environment if using Python 3.4 or higher]].&lt;br /&gt;
&lt;br /&gt;
== Creating a new virtual environment ==&lt;br /&gt;
It is assumed that the appropriate &amp;lt;code&amp;gt;virtualenv&amp;lt;/code&amp;gt; executable for the Python version of choice is installed. A new virtual environment, in this case called &amp;lt;code&amp;gt;newenv&amp;lt;/code&amp;gt; is created like so:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module load python/my-favourite-version (e.g. 2.7.12)&lt;br /&gt;
virtualenv newenv&lt;br /&gt;
OR&lt;br /&gt;
pyvenv newenv (For versions &amp;gt;3.4)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When the new environment is created, one will see a message similar to this:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;  New python executable in newenv/bin/python3&lt;br /&gt;
  Also creating executable in newenv/bin/python&lt;br /&gt;
  Installing Setuptools.........................................................................done.&lt;br /&gt;
  Installing Pip................................................................................done.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Activating a virtual environment ==&lt;br /&gt;
Once the environment is created, each time the environment needs to be activated, the following command needs to be issued:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
source newenv/bin/activate&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This assumes that the folder that contains the virtual environment documents (in this case called &amp;lt;code&amp;gt;newenv&amp;lt;/code&amp;gt;), is in the present working directory.&lt;br /&gt;
When working on the virtual environment, the virtual environment name will be between brackets in front of the &amp;lt;code&amp;gt;user-host-prompt&amp;lt;/code&amp;gt; string.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;  (newenv)user@host:~$&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing modules on the virtual environment ==&lt;br /&gt;
Installing modules is the same as usual. The difference is that modules are in &amp;lt;code&amp;gt;/path/to/virtenv/lib&amp;lt;/code&amp;gt;, which may be living somewhere on your home directory. When working from the virtual environment, the default &amp;lt;code&amp;gt;pip&amp;lt;/code&amp;gt; will belong to the python version that is currently active. This means that the executable in &amp;lt;code&amp;gt;/path/to/virtenv/bin&amp;lt;/code&amp;gt; are in fact the first in the &amp;lt;code&amp;gt;$PATH&amp;lt;/code&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pip install numpy&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Similarly, installing packages from source works exactly the same as usual.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
python setup.py install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== deactivating a virtual environment ==&lt;br /&gt;
Quitting a virtual environment can be done by using the command &amp;lt;code&amp;gt;deactivate&amp;lt;/code&amp;gt;, which was loaded using the &amp;lt;code&amp;gt;source&amp;lt;/code&amp;gt; command upon activating the virtual environment.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
deactivate&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Virtualenv kernels in Jupyter ==&lt;br /&gt;
Want your own virtualenv kernel in a notebook? This can be done by making your own kernel specifications:&lt;br /&gt;
&lt;br /&gt;
(an alternative way to the manual way (using conda) is described [[Using conda to install a new kernel into your notebook|here ]])&lt;br /&gt;
&lt;br /&gt;
* Make sure you have the ipykernel module in your venv. Activate it and pip install it:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;source ~/path/to/my/virtualenv/bin/activate &amp;amp;&amp;amp; pip install ipykernel&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* Create the following directory path in your homedir if it doesn&#039;t already exist:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;mkdir -p ~/.local/share/jupyter/kernels/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* Think of a nice descriptive name that doesn&#039;t clash with one of the already present kernels. I&#039;ll use &#039;testing&#039;. Create this folder:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;mkdir ~/.local/share/jupyter/kernels/testing/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* Add this file to this folder:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;vi ~/.local/share/jupyter/kernels/testing/kernel.json &lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;language&amp;quot;: &amp;quot;python&amp;quot;,&lt;br /&gt;
 &amp;quot;argv&amp;quot;: [&lt;br /&gt;
  &amp;quot;/home/myhome/path/to/my/virtualenv/bin/python&amp;quot;,&lt;br /&gt;
  &amp;quot;-m&amp;quot;,&lt;br /&gt;
  &amp;quot;ipykernel&amp;quot;,&lt;br /&gt;
  &amp;quot;-f&amp;quot;,&lt;br /&gt;
  &amp;quot;{connection_file}&amp;quot;&lt;br /&gt;
 ],&lt;br /&gt;
 &amp;quot;display_name&amp;quot;: &amp;quot;testing&amp;quot;&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* Reload Jupyterhub page. testing should now exist in your kernels list.&lt;br /&gt;
&lt;br /&gt;
You can do more complex things with this, such as construct your own Spark environment. This relies on having the module findspark installed:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; vi ~/.local/share/jupyter/kernels/mysparkkernel/kernel.json &lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;language&amp;quot;: &amp;quot;python&amp;quot;,&lt;br /&gt;
 &amp;quot;env&amp;quot;: {&lt;br /&gt;
   &amp;quot;SPARK_HOME&amp;quot;:&lt;br /&gt;
     &amp;quot;/shared/apps/spark/my-spark-version&amp;quot;&lt;br /&gt;
 },&lt;br /&gt;
 &amp;quot;argv&amp;quot;: [&lt;br /&gt;
  &amp;quot;/home/myhome/my/spark/venv/bin/python&amp;quot;,&lt;br /&gt;
  &amp;quot;-m&amp;quot;,&lt;br /&gt;
  &amp;quot;ipykernel&amp;quot;,&lt;br /&gt;
  &amp;quot;-c&amp;quot;, &amp;quot;import findspark; findspark.init()&amp;quot;,&lt;br /&gt;
  &amp;quot;-f&amp;quot;,&lt;br /&gt;
  &amp;quot;{connection_file}&amp;quot;&lt;br /&gt;
 ],&lt;br /&gt;
 &amp;quot;display_name&amp;quot;: &amp;quot;My Spark kernel&amp;quot;&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
(You&#039;ll want to make sure your spark cluster has the same environment - start it after activating this venv inside your sbatch script)&lt;br /&gt;
&lt;br /&gt;
== Make IPython work under virtualenv ==&lt;br /&gt;
IPython may not work initially under a virtual environment. It may produce an error message like below:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;    File &amp;quot;/usr/bin/ipython&amp;quot;, line 11&lt;br /&gt;
    print &amp;quot;Could not start qtconsole. Please install ipython-qtconsole&amp;quot;&lt;br /&gt;
                                                                      ^&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This can be resolved by adding a soft link with the name &amp;lt;code&amp;gt;ipython&amp;lt;/code&amp;gt; to the &amp;lt;code&amp;gt;bin&amp;lt;/code&amp;gt; directory in the virtual environment folder.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ln -s /path/to/virtenv/bin/ipython3 /path/to/virtenv/bin/ipython&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [https://pypi.python.org/pypi/virtualenv Python3 documentation for virtualenv]&lt;br /&gt;
* [http://cemcfarland.wordpress.com/2013/03/09/getting-ipython3-working-inside-your-virtualenv/ Solving the IPython hickup under virtual environment]&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Performance_Optimization/Multiple_nodes_(MPI)&amp;diff=2237</id>
		<title>Performance Optimization/Multiple nodes (MPI)</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Performance_Optimization/Multiple_nodes_(MPI)&amp;diff=2237"/>
		<updated>2023-06-16T09:01:59Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A simple &#039;Hello World&#039; example ==&lt;br /&gt;
Consider the following simple MPI version, in C, of the &#039;Hello World&#039; example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&#039;cpp&#039;&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;mpi.h&amp;gt;&lt;br /&gt;
int main(int argc, char ** argv) {&lt;br /&gt;
  int size,rank,namelen;&lt;br /&gt;
  char processor_name[MPI_MAX_PROCESSOR_NAME];&lt;br /&gt;
  MPI_Init(&amp;amp;argc, &amp;amp;argv);&lt;br /&gt;
  MPI_Comm_rank(MPI_COMM_WORLD,&amp;amp;rank);&lt;br /&gt;
  MPI_Comm_size(MPI_COMM_WORLD,&amp;amp;size);&lt;br /&gt;
  MPI_Get_processor_name(processor_name, &amp;amp;namelen);&lt;br /&gt;
  printf(&amp;quot;Hello MPI! Process %d of %d on %s\n&amp;quot;, rank, size, processor_name);&lt;br /&gt;
  MPI_Finalize();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Before compiling, make sure that the compilers that are required available.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module list&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To avoid conflicts between libraries, the safest way is purging all modules:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
module purge&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The load both gcc and openmpi libraries. If modules were purged, then slurm needs to be reloaded too.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
module load gcc/4.8.1 openmpi/gcc/64/1.6.5 slurm/2.5.7&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Compile the &amp;lt;code&amp;gt;hello_mpi.c&amp;lt;/code&amp;gt; code.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
mpicc hello_mpi.c -o test_hello_world&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If desired, a list of libraries compiled into the executable can be viewed:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
ldd test_hello_world&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  linux-vdso.so.1 =&amp;gt;  (0x00002aaaaaacb000)&lt;br /&gt;
  libmpi.so.1 =&amp;gt; /shared/apps/openmpi/gcc/64/1.6.5/lib64/libmpi.so.1 (0x00002aaaaaccd000)&lt;br /&gt;
  libdl.so.2 =&amp;gt; /lib64/libdl.so.2 (0x00002aaaab080000)&lt;br /&gt;
  libm.so.6 =&amp;gt; /lib64/libm.so.6 (0x00002aaaab284000)&lt;br /&gt;
  libnuma.so.1 =&amp;gt; /usr/lib64/libnuma.so.1 (0x0000003e29400000)&lt;br /&gt;
  librt.so.1 =&amp;gt; /lib64/librt.so.1 (0x00002aaaab509000)&lt;br /&gt;
  libnsl.so.1 =&amp;gt; /lib64/libnsl.so.1 (0x00002aaaab711000)&lt;br /&gt;
  libutil.so.1 =&amp;gt; /lib64/libutil.so.1 (0x00002aaaab92a000)&lt;br /&gt;
  libpthread.so.0 =&amp;gt; /lib64/libpthread.so.0 (0x00002aaaabb2e000)&lt;br /&gt;
  libc.so.6 =&amp;gt; /lib64/libc.so.6 (0x00002aaaabd4b000)&lt;br /&gt;
  /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000)&lt;br /&gt;
&lt;br /&gt;
Running the executable on two nodes, with four tasks per node, can be done like this:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
srun --nodes=2 --ntasks-per-node=4 --mpi=openmpi ./test_hello_world&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will result in the following output:&lt;br /&gt;
  Hello MPI! Process 4 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 1 of 8 on node010&lt;br /&gt;
  Hello MPI! Process 7 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 6 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 5 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 2 of 8 on node010&lt;br /&gt;
  Hello MPI! Process 0 of 8 on node010&lt;br /&gt;
  Hello MPI! Process 3 of 8 on node010&lt;br /&gt;
&lt;br /&gt;
== A mvapich2 sbatch example ==&lt;br /&gt;
A mpi job using mvapich2 on 32 cores, using the normal compute nodes and the fast infiniband interconnect for RDMA traffic.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
$ module load mvapich2/gcc&lt;br /&gt;
$ vim batch.sh&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 #SBATCH --comment=projectx&lt;br /&gt;
 #SBATCH --time=30-0&lt;br /&gt;
 #SBATCH  -n 32&lt;br /&gt;
 #SBATCH --constraint=4gpercpu&lt;br /&gt;
 #SBATCH --output=output_%j.txt&lt;br /&gt;
 #SBATCH --error=error_output_%j.txt&lt;br /&gt;
 #SBATCH --job-name=MPItest&lt;br /&gt;
 #SBATCH --mail-type=ALL&lt;br /&gt;
 #SBATCH --mail-user=user@wur.nl&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Starting at `date`&amp;quot;&lt;br /&gt;
 echo &amp;quot;Running on hosts: $SLURM_NODELIST&amp;quot;&lt;br /&gt;
 echo &amp;quot;Running on $SLURM_NNODES nodes.&amp;quot;&lt;br /&gt;
 echo &amp;quot;Running on $SLURM_NPROCS processors.&amp;quot;&lt;br /&gt;
 echo &amp;quot;Current working directory is `pwd`&amp;quot;&lt;br /&gt;
 # echo &amp;quot;Env var MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE is $MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE&amp;quot;&lt;br /&gt;
 # export MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE=ib0&lt;br /&gt;
&lt;br /&gt;
 mpirun -iface ib0 -np 32 ./tmf_par.out -NX 480 -NY 240 -alpha  11 -chi 1.3 -psi_b 5e-2  -beta  0.0 -zeta 3.5 -kT 0.10 &lt;br /&gt;
&lt;br /&gt;
 echo &amp;quot;Program finished with exit code $? at: `date`&amp;quot;&lt;br /&gt;
&lt;br /&gt;
$ sbatch batch.sh&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Performance_Optimization/Multiple_nodes_(MPI)&amp;diff=2236</id>
		<title>Performance Optimization/Multiple nodes (MPI)</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Performance_Optimization/Multiple_nodes_(MPI)&amp;diff=2236"/>
		<updated>2023-06-16T09:01:42Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A simple &#039;Hello World&#039; example ==&lt;br /&gt;
Consider the following simple MPI version, in C, of the &#039;Hello World&#039; example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&#039;cpp&#039;&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
#include &amp;lt;mpi.h&amp;gt;&lt;br /&gt;
int main(int argc, char ** argv) {&lt;br /&gt;
  int size,rank,namelen;&lt;br /&gt;
  char processor_name[MPI_MAX_PROCESSOR_NAME];&lt;br /&gt;
  MPI_Init(&amp;amp;argc, &amp;amp;argv);&lt;br /&gt;
  MPI_Comm_rank(MPI_COMM_WORLD,&amp;amp;rank);&lt;br /&gt;
  MPI_Comm_size(MPI_COMM_WORLD,&amp;amp;size);&lt;br /&gt;
  MPI_Get_processor_name(processor_name, &amp;amp;namelen);&lt;br /&gt;
  printf(&amp;quot;Hello MPI! Process %d of %d on %s\n&amp;quot;, rank, size, processor_name);&lt;br /&gt;
  MPI_Finalize();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Before compiling, make sure that the compilers that are required available.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
module list&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To avoid conflicts between libraries, the safest way is purging all modules:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
module purge&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The load both gcc and openmpi libraries. If modules were purged, then slurm needs to be reloaded too.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
module load gcc/4.8.1 openmpi/gcc/64/1.6.5 slurm/2.5.7&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Compile the &amp;lt;code&amp;gt;hello_mpi.c&amp;lt;/code&amp;gt; code.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
mpicc hello_mpi.c -o test_hello_world&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If desired, a list of libraries compiled into the executable can be viewed:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
ldd test_hello_world&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  linux-vdso.so.1 =&amp;gt;  (0x00002aaaaaacb000)&lt;br /&gt;
  libmpi.so.1 =&amp;gt; /shared/apps/openmpi/gcc/64/1.6.5/lib64/libmpi.so.1 (0x00002aaaaaccd000)&lt;br /&gt;
  libdl.so.2 =&amp;gt; /lib64/libdl.so.2 (0x00002aaaab080000)&lt;br /&gt;
  libm.so.6 =&amp;gt; /lib64/libm.so.6 (0x00002aaaab284000)&lt;br /&gt;
  libnuma.so.1 =&amp;gt; /usr/lib64/libnuma.so.1 (0x0000003e29400000)&lt;br /&gt;
  librt.so.1 =&amp;gt; /lib64/librt.so.1 (0x00002aaaab509000)&lt;br /&gt;
  libnsl.so.1 =&amp;gt; /lib64/libnsl.so.1 (0x00002aaaab711000)&lt;br /&gt;
  libutil.so.1 =&amp;gt; /lib64/libutil.so.1 (0x00002aaaab92a000)&lt;br /&gt;
  libpthread.so.0 =&amp;gt; /lib64/libpthread.so.0 (0x00002aaaabb2e000)&lt;br /&gt;
  libc.so.6 =&amp;gt; /lib64/libc.so.6 (0x00002aaaabd4b000)&lt;br /&gt;
  /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000)&lt;br /&gt;
&lt;br /&gt;
Running the executable on two nodes, with four tasks per node, can be done like this:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
srun --nodes=2 --ntasks-per-node=4 --mpi=openmpi ./test_hello_world&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will result in the following output:&lt;br /&gt;
  Hello MPI! Process 4 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 1 of 8 on node010&lt;br /&gt;
  Hello MPI! Process 7 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 6 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 5 of 8 on node011&lt;br /&gt;
  Hello MPI! Process 2 of 8 on node010&lt;br /&gt;
  Hello MPI! Process 0 of 8 on node010&lt;br /&gt;
  Hello MPI! Process 3 of 8 on node010&lt;br /&gt;
&lt;br /&gt;
== A mvapich2 sbatch example ==&lt;br /&gt;
A mpi job using mvapich2 on 32 cores, using the normal compute nodes and the fast infiniband interconnect for RDMA traffic.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
$ module load mvapich2/gcc&lt;br /&gt;
$ vim batch.sh&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 #SBATCH --comment=projectx&lt;br /&gt;
 #SBATCH --time=30-0&lt;br /&gt;
 #SBATCH  -n 32&lt;br /&gt;
 #SBATCH --constraint=4gpercpu&lt;br /&gt;
 #SBATCH --output=output_%j.txt&lt;br /&gt;
 #SBATCH --error=error_output_%j.txt&lt;br /&gt;
 #SBATCH --job-name=MPItest&lt;br /&gt;
 #SBATCH --mail-type=ALL&lt;br /&gt;
 #SBATCH --mail-user=user@wur.nl&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Starting at `date`&amp;quot;&lt;br /&gt;
 echo &amp;quot;Running on hosts: $SLURM_NODELIST&amp;quot;&lt;br /&gt;
 echo &amp;quot;Running on $SLURM_NNODES nodes.&amp;quot;&lt;br /&gt;
 echo &amp;quot;Running on $SLURM_NPROCS processors.&amp;quot;&lt;br /&gt;
 echo &amp;quot;Current working directory is `pwd`&amp;quot;&lt;br /&gt;
 # echo &amp;quot;Env var MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE is $MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE&amp;quot;&lt;br /&gt;
 # export MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE=ib0&lt;br /&gt;
&lt;br /&gt;
 mpirun -iface ib0 -np 32 ./tmf_par.out -NX 480 -NY 240 -alpha  11 -chi 1.3 -psi_b 5e-2  -beta  0.0 -zeta 3.5 -kT 0.10 &lt;br /&gt;
&lt;br /&gt;
 echo &amp;quot;Program finished with exit code $? at: `date`&amp;quot;&lt;br /&gt;
&lt;br /&gt;
$ sbatch batch.sh&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=ABGC/JBrowse&amp;diff=2235</id>
		<title>ABGC/JBrowse</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=ABGC/JBrowse&amp;diff=2235"/>
		<updated>2023-06-16T09:01:30Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Typical commands used to set up a JBrowse === &lt;br /&gt;
&lt;br /&gt;
Author: Martijn Derks&lt;br /&gt;
&lt;br /&gt;
* JBrowse is available for multiple species:&lt;br /&gt;
** https://jbrowse.hpcagrogenomics.wur.nl/pig/&lt;br /&gt;
** https://jbrowse.hpcagrogenomics.wur.nl/chicken/&lt;br /&gt;
** https://jbrowse.hpcagrogenomics.wur.nl/cattle/&lt;br /&gt;
** https://jbrowse.hpcagrogenomics.wur.nl/turkey/&lt;br /&gt;
** https://jbrowse.hpcagrogenomics.wur.nl/Cyprinus_carpio/&lt;br /&gt;
* Users are free to add usefull commands to this tutorial&lt;br /&gt;
&lt;br /&gt;
=== Install JBrowse ===&lt;br /&gt;
&lt;br /&gt;
Download the latest JBrowse here: http://jbrowse.org/&lt;br /&gt;
&lt;br /&gt;
Make a directory in &amp;lt;code&amp;gt;/shared/apps/jbrowse/&amp;lt;/code&amp;gt; for your species of interested (e.g. &amp;lt;code&amp;gt;mkdir Cyprinus_carpio&amp;lt;/code&amp;gt;). Move the downloaded JBrowse source files there. All further procedures detailed in this Wiki page assume working from that directory (NOTE: if your species of interest is already there, contact the maintainer of that JBrowse instance).&lt;br /&gt;
Run the setup script to install perl dependencies and required modules&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
unzip JBrowse-1.12.0.zip&lt;br /&gt;
mv JBrowse-1.12.0/* $PWD&lt;br /&gt;
./setup.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Add reference sequence ===&lt;br /&gt;
&lt;br /&gt;
Example code for chicken genome&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/prepare-refseqs.pl --fasta /lustre/nobackup/WUR/ABGC/shared/public_data_store/genomes/chicken/Ensembl74/Gallus_gallus.Galgal4.74.dna.toplevel.fa&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To remove tracks use following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/remove-track.pl -D --trackLabel &#039;trackname&#039;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Add annotation files (GFF/BED)===&lt;br /&gt;
&lt;br /&gt;
Data can be downloaded from the Ensembl FTP site: http://www.ensembl.org/info/data/ftp/index.html&lt;br /&gt;
&lt;br /&gt;
Add gene features:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/flatfile-to-json.pl --key &amp;quot;Genes&amp;quot; --type gene --config &#039;{ &amp;quot;category&amp;quot;: &amp;quot;GalGal4.83 Annotation&amp;quot; }&#039; --trackLabel Genes --gff ../ensembl_data/Gallus_gallus.Galgal4.83.gff3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add corresponding transcripts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/flatfile-to-json.pl --key &amp;quot;Transcripts&amp;quot; --className transcript --subfeatureClasses &#039;{&amp;quot;exon&amp;quot;: &amp;quot;exon&amp;quot;, &amp;quot;CDS&amp;quot;: &amp;quot;CDS&amp;quot;, &amp;quot;five_prime_UTR&amp;quot;: &amp;quot;five_prime_UTR&amp;quot;, &amp;quot;three_prime_UTR&amp;quot;: &amp;quot;three_prime_UTR&amp;quot;}&#039; --config &#039;{ &amp;quot;category&amp;quot;: &amp;quot;GalGal4.83 Annotation&amp;quot; }&#039; --type transcript --trackLabel Transcripts --gff ../ensembl_data/Gallus_gallus.Galgal4.83.gff3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Alignment tracks (BAM)===&lt;br /&gt;
&lt;br /&gt;
You can load single BAM-files by following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/add-bam-track --label &amp;lt;label&amp;gt; --bam_url &amp;lt;url&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To load multiple BAM files present in a certain directory use:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
for bam in /&amp;lt;dir&amp;gt;*.bam; do&lt;br /&gt;
        ln -s $bam track_symlinks/ ## Make symlinks from the BAM files&lt;br /&gt;
        ln -s $bam.bai track_symlinks/ ## Make symlinks to the BAM index files&lt;br /&gt;
        tissue=`echo $bam | rev | cut -c 5- | cut -d&#039;/&#039; -f1 | rev` ## USe the name of the file without .bam as trackLabel&lt;br /&gt;
        &lt;br /&gt;
        ## Add BAM in alignment mode (Alignments2)&lt;br /&gt;
        echo &#039;{&lt;br /&gt;
                &amp;quot;label&amp;quot; : &amp;quot;&#039;${tissue}&#039;_alignment&amp;quot;,&lt;br /&gt;
                &amp;quot;key&amp;quot; : &amp;quot;&#039;${tissue}&#039;_alignment&amp;quot;,&lt;br /&gt;
                &amp;quot;storeClass&amp;quot; : &amp;quot;JBrowse/Store/SeqFeature/BAM&amp;quot;,&lt;br /&gt;
                &amp;quot;urlTemplate&amp;quot; : &amp;quot;../track_symlinks/&#039;${tissue}&#039;&amp;quot;,&lt;br /&gt;
                &amp;quot;category&amp;quot; : &amp;quot;3. RNA-seq alignments&amp;quot;,&lt;br /&gt;
                &amp;quot;type&amp;quot; : &amp;quot;Alignments2&amp;quot;&lt;br /&gt;
        }&#039; | bin/add-track-json.pl data/trackList.json&lt;br /&gt;
&lt;br /&gt;
        ## Add BAM in coverage mode (SNPCoverage)&lt;br /&gt;
        echo &#039;{&lt;br /&gt;
                &amp;quot;label&amp;quot; : &amp;quot;&#039;${tissue}&#039;_coverage&amp;quot;,&lt;br /&gt;
                &amp;quot;key&amp;quot; : &amp;quot;&#039;${tissue}&#039;_coverage&amp;quot;,&lt;br /&gt;
                &amp;quot;storeClass&amp;quot; : &amp;quot;JBrowse/Store/SeqFeature/BAM&amp;quot;,&lt;br /&gt;
                &amp;quot;urlTemplate&amp;quot; : &amp;quot;../track_symlinks/&#039;${tissue}&#039;&amp;quot;,&lt;br /&gt;
                &amp;quot;category&amp;quot; : &amp;quot;3. RNA-seq alignments&amp;quot;,&lt;br /&gt;
                &amp;quot;type&amp;quot; : &amp;quot;SNPCoverage&amp;quot;&lt;br /&gt;
        }&#039; | bin/add-track-json.pl data/trackList.json&lt;br /&gt;
&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure the BAM file can be read by a everybody if not use:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
chmod +r &amp;lt;BAM_file&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure that all directoryies in the full path of the BAMfile are executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
chmod +x &amp;lt;dir&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Variant tracks (VCF)===&lt;br /&gt;
&lt;br /&gt;
To load a VCF file in JBrowse make sure the file is gzipped and indexed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tabix -p vcf Gallus_gallus_incl_consequences.vcf.gz&lt;br /&gt;
&lt;br /&gt;
echo &#039; {&lt;br /&gt;
       &amp;quot;label&amp;quot; : &amp;quot;Gallus_gallus_incl_consequences&amp;quot;,&lt;br /&gt;
       &amp;quot;key&amp;quot; : &amp;quot;Gallus_gallus_incl_consequences&amp;quot;,&lt;br /&gt;
       &amp;quot;storeClass&amp;quot; : &amp;quot;JBrowse/Store/SeqFeature/VCFTabix&amp;quot;,&lt;br /&gt;
       &amp;quot;urlTemplate&amp;quot; : &amp;quot;../../ensembl_data/VCF/Gallus_gallus_incl_consequences.vcf.gz&amp;quot;,&lt;br /&gt;
       &amp;quot;category&amp;quot; : &amp;quot;2. Variants&amp;quot;,&lt;br /&gt;
       &amp;quot;type&amp;quot; : &amp;quot;HTMLVariants&amp;quot;&lt;br /&gt;
     } &#039; | bin/add-track-json.pl data/trackList.json&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Wiggle/BigWig tracks (WIG)===&lt;br /&gt;
&lt;br /&gt;
You can load single BigWig-files by following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/add-bw-track --label &amp;lt;label&amp;gt; --bw_url &amp;lt;url&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Evidence tracks===&lt;br /&gt;
&lt;br /&gt;
Evidence tracks can be loaded in bed, gff and gbk format using &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bin/flatfile-to-json.pl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Examples are given above.&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Get_my_bill&amp;diff=2233</id>
		<title>Get my bill</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Get_my_bill&amp;diff=2233"/>
		<updated>2023-06-16T09:01:06Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To estimate costs over a certain time-period the following script can be invoked:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module load anunna&lt;br /&gt;
get_my_bill&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The script will, by default, report the cost over the current month, until present. The output will look similar to this:&lt;br /&gt;
 &lt;br /&gt;
  !!! These results are advisory only !!!&lt;br /&gt;
  User: user001&lt;br /&gt;
  Currently run jobs this month: 1038&lt;br /&gt;
  Total cost so far: 25.19 EUR&lt;br /&gt;
  For account: 12345&lt;br /&gt;
  Jobs: 0 Cost: 0.00 EUR&lt;br /&gt;
  For account: project2&lt;br /&gt;
  Jobs: 104 Cost: 4.61 EUR&lt;br /&gt;
  For account: 56789&lt;br /&gt;
  Jobs: 74 Cost: 6.59 EUR&lt;br /&gt;
  For account: project 4&lt;br /&gt;
  Jobs: 19 Cost: 2.09 EUR&lt;br /&gt;
  For account: project5&lt;br /&gt;
  Jobs: 80 Cost: 0.04 EUR&lt;br /&gt;
  For account: project6&lt;br /&gt;
  Jobs: 738 Cost: 11.86 EUR&lt;br /&gt;
  For account: project7&lt;br /&gt;
  Jobs: 1 Cost: 0.01 EUR&lt;br /&gt;
  For account: project8&lt;br /&gt;
  Jobs: 22 Cost: 0.00 EUR&lt;br /&gt;
  Type            Time                                Current Use Current Cost EUR                &lt;br /&gt;
  home            2015-02-13 23:54:53                    7.131 GB 0.00                            &lt;br /&gt;
  backup          2015-02-06 06:02:43                    4.000 kB 0.00                            &lt;br /&gt;
  nobackup        2015-02-10 10:45:29                    5.348 TB 29.48                           &lt;br /&gt;
  scratch         2015-02-08 13:48:40                    0.233 TB 0.00                            &lt;br /&gt;
  Total this month: 54.67 EUR&lt;br /&gt;
&lt;br /&gt;
The script provides options in addition to the defaults, which can be invoked as follows:&lt;br /&gt;
Options:&lt;br /&gt;
  -h - Show this help message&lt;br /&gt;
  -g - Show results for your entire group&lt;br /&gt;
  -d [disk|compute] - get extra detail on disk/compute usages&lt;br /&gt;
  -t YYYY-MM - Show results for specific month&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Main_Page | Main page AgHPC Wiki]]&lt;br /&gt;
* [[Main_Page#Controlling_costs | Controlling costs @ AgHPC Wiki]]&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Storage_Systems_Overview&amp;diff=2229</id>
		<title>Storage Systems Overview</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Storage_Systems_Overview&amp;diff=2229"/>
		<updated>2023-06-16T08:59:44Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Anunna currently has multiple filesystem mounts that are available cluster-wide:&lt;br /&gt;
&lt;br /&gt;
== Global ==&lt;br /&gt;
* /home - This mount uses NFS to mount the home directories directly from nfs01. Each user has a 200G quota for this filesystem, as it is regularly backed up to tape, and can reliably be restored from up to a week&#039;s history.&lt;br /&gt;
&lt;br /&gt;
* /shared - This mount provides a consistent set of binaries for the entire cluster.&lt;br /&gt;
&lt;br /&gt;
* /lustre - This large mount uses the Lustre filesystem to provide files from multiple redundant servers. Access is provided per group, thus:&lt;br /&gt;
 /lustre/[level]/[partner]/[unit]&lt;br /&gt;
e.g.&lt;br /&gt;
 /lustre/backup/WUR/ABGC/&lt;br /&gt;
It comprises of three major parts (and some minor):&lt;br /&gt;
* /lustre/backup - In case of disaster, this data is stored a second time on a separate machine. Whilst this backup is purely in case of complete tragedy (such as some immense filesystem error, or multiple component failure), it can potentially be used to revert mistakes if you are very fast about reporting them. There is however no guarantee of this service.&lt;br /&gt;
* /lustre/nobackup - This is the &#039;normal&#039; filesystem for Lustre - no backups, just stored on the filesystem. Without having a backup needed, the cost of data here is not as much as under /lustre/backup, but in case of disaster cannot be recivered.&lt;br /&gt;
* /lustre/scratch - Files here may be removed after some time if the filesystem gets too full (Typically 30 days). You should tidy up this data yourself once work is complete.&lt;br /&gt;
* /lustre/shared - Same as /lustre/backup, except publicly available. This is where truly shared data lives that isn&#039;t assigned to a specific group.&lt;br /&gt;
&lt;br /&gt;
=== Private shared directories ===&lt;br /&gt;
If you are working with a group of users on a similar project, you might consider making a [[Shared_folders|Shared directory]] to coordinate. Information on how to do so is in the linked article.&lt;br /&gt;
&lt;br /&gt;
== Local ==&lt;br /&gt;
Specific to certain machines are some other filesystems that are available to you:&lt;br /&gt;
* /archive - an archive mount only accessible from the login nodes. Files here are sent to the Isilon for deeper storage. The cost of storing data here is much less than on the Lustre, but it cannot be used for compute work. This location is only available to WUR users. Files are able to be reverted via snapshot, and there is a separated backup, however this only comes in fortnightly (14 day) intervals.&lt;br /&gt;
&lt;br /&gt;
* /tmp - On each worker node there is a /tmp mount that can be used for temporary local caching. Be advised that you should clean this up, lest your files become a hindrance to other users. You can request a node with free space in your sbatch script like so:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
#SBATCH --tmp=&amp;lt;required space&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* /dev/shm - On each worker you may also create a virtual filesystem directly into memory, for extremely fast data access. Be advised that this will count against the memory used for your job, but it is also the fastest available filesystem if needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Tariffs | Costs associated with resource usage]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://wiki.lustre.org/index.php/Main_Page Lustre website]&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Environment_Modules&amp;diff=2228</id>
		<title>Environment Modules</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Environment_Modules&amp;diff=2228"/>
		<updated>2023-06-16T08:59:32Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Preface ==&lt;br /&gt;
Environment modules [http://modules.sourceforge.net] are a smart way to provide interchangeable blocks of executables and reproducible environments for use in an HPC. It&#039;s also the only way to provide simultaneous versions of the same software without collisions, as each module is housed entirely in its own subfolder structure.&lt;br /&gt;
&lt;br /&gt;
== Using modules ==&lt;br /&gt;
The module executable is automatically provided to you upon login. Most users have some modules automatically loaded as well; to see these, use&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module list&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should be able to see which modules are loaded.&lt;br /&gt;
&lt;br /&gt;
One of the most important modules to load is &#039;shared&#039; - this is Anunna specific, as it will extend the MODULEPATH environment variable to use modules present in /shared as well as /cm/local/ . Without this, many modules will not be available to you.&lt;br /&gt;
&lt;br /&gt;
== Loading modules ==&lt;br /&gt;
Availability of (different versions of) software can be checked by the following command:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module avail&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, you should be able to find the basic module slurm. This provides the path to the sbatch, srun, etc. executables for job submission. To load this, simply:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module load slurm&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And you will see that it will automatically load the latest version - no need to write out any further.&lt;br /&gt;
&lt;br /&gt;
Many of the hand-installed programs have a path such as:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;hdf5/gcc/64/1.8.14&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Which translates into:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;SOFTWARE/COMPILER/BITS/VERSION&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can elect to load this to various levels:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module load hdf5               # loads the latest version, not caring for compiler&lt;br /&gt;
module load hdf5/gcc           # loads the latest gcc-compiled version, not caring for 32/64 bits (default 64)&lt;br /&gt;
module load hdf5/gcc/64        # loads the latest 64-bit gcc-compiled version&lt;br /&gt;
module load hdf5/gcc/64/1.8.14 # loads this specific version of hdf5&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows your job scripts to either automatically be upgraded when the latest executables are installed, or elect to use only one specific version of a piece of code.&lt;br /&gt;
&lt;br /&gt;
== Switching modules ==&lt;br /&gt;
&lt;br /&gt;
If you want to remove a module, simply&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module unload module/1&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
This will remove the executable path from your environment. It&#039;ll also follow the same logic as above, i.e. you can unload all loaded slurm modules independent of version by just unloading the base module name. You can then load up a new one. You can do this in one command, with:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module switch module/1 module/2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some modules will not allow themselves to be loaded when another one is loaded, for instance, for sanity reasons it&#039;s not possible to load two java modules at the same time. Trying to do this will give:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;Module &#039;module/2&#039; conflicts with the currently loaded module(s) &#039;module/1&#039;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
If you&#039;re seeing this, you must unload or switch your modules rather than overloading them:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;module switch module/2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
This works if both modules have the same base path.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* http://modules.sourceforge.net&lt;br /&gt;
* http://www.admin-magazine.com/HPC/Articles/Environment-Modules&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Using_environment_modules&amp;diff=2226</id>
		<title>Using environment modules</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Using_environment_modules&amp;diff=2226"/>
		<updated>2023-06-16T08:59:02Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Environment Modules ===&lt;br /&gt;
[http://modules.sourceforge.net/ Environment modules] are a simple way to allow multiple potentially clashing programs to coexist on a large shared machine such as an HPC. It allows a user to specify exactly which programs are loaded, and even which version of each program, whilst simultaneously allowing the administrator the ability to automatically configure the appropriate environment variables for the system itself.&lt;br /&gt;
&lt;br /&gt;
== Viewing Modules ==&lt;br /&gt;
Upon logging in to Anunna, you should find that when you do:&lt;br /&gt;
  module list&lt;br /&gt;
&lt;br /&gt;
You will see something like this:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
-bash-4.1$ module list&lt;br /&gt;
Currently Loaded Modulefiles:&lt;br /&gt;
  1) shared        2) slurm/2.5.7&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a list of all loaded modules in your shell session. To get a list of all available modules, simply&lt;br /&gt;
   module available&lt;br /&gt;
&lt;br /&gt;
And this will show you the (very exhaustive) list of modules on Anunna:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source  lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
-bash-4.1$ module avail&lt;br /&gt;
&lt;br /&gt;
---------------------------- /shared/modulefiles ----------------------------&lt;br /&gt;
acml/gcc/64/5.3.1                     netcdf/gcc/64/4.1.3&lt;br /&gt;
acml/gcc/fma4/5.3.1                   netcdf/gcc/64/4.3.0&lt;br /&gt;
acml/gcc/mp/64/5.3.1                  netcdf/gcc/64/4.3.2&lt;br /&gt;
acml/gcc/mp/fma4/5.3.1                netcdf/gcc/64/4.3.3&lt;br /&gt;
acml/gcc-int64/64/5.3.1               netcdf/gcc/64/4.3.3.1&lt;br /&gt;
acml/gcc-int64/fma4/5.3.1             netcdf/intel/64/4.1.3&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Let&#039;s look at each of these module names. Each module is named for the application it provides, plus a subfolder of which compiler it was compiled with (if compiled), the number of address bits or options (if compiled), and the version.&lt;br /&gt;
&lt;br /&gt;
If you want to see a list for a specific module, you can&lt;br /&gt;
  module avail netcdf&lt;br /&gt;
&lt;br /&gt;
And the complete list of versions will be shown.&lt;br /&gt;
&lt;br /&gt;
== Loading Modules ==&lt;br /&gt;
To load a module, simply&lt;br /&gt;
  module load foo&lt;br /&gt;
&lt;br /&gt;
And the most recent version of module foo will automatically be loaded. If foo is compiled, it will automatically select the gcc version. If you want to specify a certain version, then&lt;br /&gt;
  module load foo/gcc/64/1.0.0&lt;br /&gt;
&lt;br /&gt;
Will load foo version 1, compiled with gcc. Be advised that this may not always work, as some modules are not compatible with each other, but a message will be shown if this is the case. Additionally, some modules will automatically load other modules with them for them to operate.&lt;br /&gt;
&lt;br /&gt;
== Unloading Modules ==&lt;br /&gt;
If you want to remove a module that you&#039;ve loaded, then&lt;br /&gt;
  module unload foo&lt;br /&gt;
&lt;br /&gt;
Will remove all module foo&#039;s loaded.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Consider this simple python3 script that should calculate Pi to 1 million digits:&lt;br /&gt;
&amp;lt;source lang=&#039;python&#039;&amp;gt;&lt;br /&gt;
from decimal import *&lt;br /&gt;
D=Decimal&lt;br /&gt;
getcontext().prec=10000000&lt;br /&gt;
p=sum(D(1)/16**k*(D(4)/(8*k+1)-D(2)/(8*k+4)-D(1)/(8*k+5)-D(1)/(8*k+6))for k in range(411))&lt;br /&gt;
print(str(p)[:10000002])&lt;br /&gt;
&amp;lt;/source&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This script will not run at all in the default 2.4 version of Python on the cluster. In order for this script to run you must use Python3. To do this, first list all versions of Python:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
-bash-4.1$ module avail python&lt;br /&gt;
&lt;br /&gt;
---------------------------- /shared/modulefiles ----------------------------&lt;br /&gt;
python/2.7.6 python/3.3.3 python/3.4.2&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you can load the specific version you need:&lt;br /&gt;
  module load python/3.3.3&lt;br /&gt;
&lt;br /&gt;
Now you have access to the executable python3.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Environment_Modules | Environment Modules]]&lt;br /&gt;
* [[Control_R_environment_using_modules | Control R environment using modules]]&lt;br /&gt;
* [[Create_shortcut_log-in_command | Create a shortcut for the ssh log-in command]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* http://modules.sourceforge.net &lt;br /&gt;
* https://modules.readthedocs.io/en/latest/ (documentation)&lt;br /&gt;
* http://www.admin-magazine.com/HPC/Articles/Environment-Modules&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Node_usage_graph&amp;diff=2223</id>
		<title>Node usage graph</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Node_usage_graph&amp;diff=2223"/>
		<updated>2023-06-16T08:55:36Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There is a graphing tool that uses elements directly from sacct to display information about the current cluster usage, node_usage_graph (located at in the anunna module ).&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[user@login0 ~]# module load anunna&lt;br /&gt;
[user@login0 ~]# usage_graph&lt;br /&gt;
node:   |0%                                                                             100%|&lt;br /&gt;
fat001: DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
fat002: CCCCCCCCC                                                                            &lt;br /&gt;
        MMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm                                       &lt;br /&gt;
node001:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node002:cccccccccc                                                                           &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmm                                           &lt;br /&gt;
node003:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC           &lt;br /&gt;
        MM                                                                                   &lt;br /&gt;
node004:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                      &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node005:CCCCCCCCCC                                                                           &lt;br /&gt;
                                                                                             &lt;br /&gt;
node006:CCCCCCCCCC                                                                           &lt;br /&gt;
                                                                                             &lt;br /&gt;
node007:CCCCCCCCCC                                                                           &lt;br /&gt;
                                                                                             &lt;br /&gt;
node008:CCCCCCCCCCccccc                                                                      &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMM                                                                &lt;br /&gt;
node009:cccccccccc                                                                           &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM                                           &lt;br /&gt;
node010:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node011:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node012:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node013:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node014:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node015:CCCCC                                                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm &lt;br /&gt;
node016:CCCCCCCCCCCCCCCCCCCCC                                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm &lt;br /&gt;
node017:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node018:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node019:CCCCC                                                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm &lt;br /&gt;
node020:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node021:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node022:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node023:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node024:CCCCCCCCCCCCCCC                                                                      &lt;br /&gt;
                                                                                             &lt;br /&gt;
node025:CCCCCCCCCCCCCCCCCCCCC                                                                &lt;br /&gt;
                                                                                             &lt;br /&gt;
node026:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
                                                                                             &lt;br /&gt;
node027:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
                                                                                             &lt;br /&gt;
node028:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC&lt;br /&gt;
        MMM                                                                                  &lt;br /&gt;
node029:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node030:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node031:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node032:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node033:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node034:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node035:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node036:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node037:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node038:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node039:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node040:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
node041:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCcccccc                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMM                                                               &lt;br /&gt;
node042:RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR&lt;br /&gt;
        RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR&lt;br /&gt;
node049:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
node050:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                      &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node051:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node052:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
        MMMMMMmmmmmmmmmmmmmmm                                                                &lt;br /&gt;
node053:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node054:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This gives an overview of the current per-node resource usage. There are four types of letter:&lt;br /&gt;
* M: Memory reserved and in use&lt;br /&gt;
* m: Memory reserved and not in use&lt;br /&gt;
* C: CPU reserved and in use&lt;br /&gt;
* c: CPU reserved and not in use&lt;br /&gt;
* D: Drained node (not available for submission for some adminstrative reason&lt;br /&gt;
* R: Reserved node&lt;br /&gt;
&lt;br /&gt;
It cannot however give you an indication of how much the queue is right now for any node. for that, squeue is a better resource.&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Node_usage_graph&amp;diff=2222</id>
		<title>Node usage graph</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Node_usage_graph&amp;diff=2222"/>
		<updated>2023-06-16T08:55:20Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There is a graphing tool that uses elements directly from sacct to display information about the current cluster usage, node_usage_graph (located at /cm/shared/apps/accounting/node_usage_graph ).&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[user@login0 ~]# module load anunna&lt;br /&gt;
[user@login0 ~]# usage_graph&lt;br /&gt;
node:   |0%                                                                             100%|&lt;br /&gt;
fat001: DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
fat002: CCCCCCCCC                                                                            &lt;br /&gt;
        MMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm                                       &lt;br /&gt;
node001:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node002:cccccccccc                                                                           &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmm                                           &lt;br /&gt;
node003:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC           &lt;br /&gt;
        MM                                                                                   &lt;br /&gt;
node004:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                      &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node005:CCCCCCCCCC                                                                           &lt;br /&gt;
                                                                                             &lt;br /&gt;
node006:CCCCCCCCCC                                                                           &lt;br /&gt;
                                                                                             &lt;br /&gt;
node007:CCCCCCCCCC                                                                           &lt;br /&gt;
                                                                                             &lt;br /&gt;
node008:CCCCCCCCCCccccc                                                                      &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMM                                                                &lt;br /&gt;
node009:cccccccccc                                                                           &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM                                           &lt;br /&gt;
node010:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node011:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node012:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node013:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node014:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node015:CCCCC                                                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm &lt;br /&gt;
node016:CCCCCCCCCCCCCCCCCCCCC                                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm &lt;br /&gt;
node017:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node018:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node019:CCCCC                                                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm &lt;br /&gt;
node020:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node021:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node022:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node023:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node024:CCCCCCCCCCCCCCC                                                                      &lt;br /&gt;
                                                                                             &lt;br /&gt;
node025:CCCCCCCCCCCCCCCCCCCCC                                                                &lt;br /&gt;
                                                                                             &lt;br /&gt;
node026:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
                                                                                             &lt;br /&gt;
node027:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
                                                                                             &lt;br /&gt;
node028:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC&lt;br /&gt;
        MMM                                                                                  &lt;br /&gt;
node029:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node030:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node031:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node032:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node033:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node034:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node035:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node036:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node037:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node038:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node039:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node040:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
node041:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCcccccc                                                &lt;br /&gt;
        MMMMMMMMMMMMMMMMMMMMMM                                                               &lt;br /&gt;
node042:RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR&lt;br /&gt;
        RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR&lt;br /&gt;
node049:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
node050:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                      &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node051:                                                                                     &lt;br /&gt;
                                                                                             &lt;br /&gt;
node052:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
        MMMMMMmmmmmmmmmmmmmmm                                                                &lt;br /&gt;
node053:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC                                                &lt;br /&gt;
        M                                                                                    &lt;br /&gt;
node054:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
        DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This gives an overview of the current per-node resource usage. There are four types of letter:&lt;br /&gt;
* M: Memory reserved and in use&lt;br /&gt;
* m: Memory reserved and not in use&lt;br /&gt;
* C: CPU reserved and in use&lt;br /&gt;
* c: CPU reserved and not in use&lt;br /&gt;
* D: Drained node (not available for submission for some adminstrative reason&lt;br /&gt;
* R: Reserved node&lt;br /&gt;
&lt;br /&gt;
It cannot however give you an indication of how much the queue is right now for any node. for that, squeue is a better resource.&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=2183</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=2183"/>
		<updated>2023-01-27T14:40:32Z</updated>

		<summary type="html">&lt;p&gt;Dawes0011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Anunna is a [http://en.wikipedia.org/wiki/High-performance_computing High Performance Computer] (HPC) infrastructure hosted by [http://www.wageningenur.nl/nl/activiteit/Opening-High-Performance-Computing-cluster-HPC.htm Wageningen University &amp;amp; Research Centre]. It is open for use for all WUR research groups as well as other organizations, including companies, that have collaborative projects with WUR. &lt;br /&gt;
&lt;br /&gt;
= Using Anunna =&lt;br /&gt;
* [[Tariffs | Costs associated with resource usage]]&lt;br /&gt;
&lt;br /&gt;
== Gaining access to Anunna==&lt;br /&gt;
Access to the cluster and file transfer are traditionally done via [http://en.wikipedia.org/wiki/Secure_Shell SSH and SFTP].&lt;br /&gt;
* [[log_in_to_B4F_cluster | Logging into cluster using ssh]]&lt;br /&gt;
* [[file_transfer | File transfer options]]&lt;br /&gt;
* [[Services | Alternative access methods, and extra features and services on Anunna]]&lt;br /&gt;
* [[Filesystems | Data storage methods on Anunna]]&lt;br /&gt;
&lt;br /&gt;
== Access Policy ==&lt;br /&gt;
[[Access_Policy | Main Article: Access Policy]]&lt;br /&gt;
&lt;br /&gt;
Access needs to be granted actively (by creation of an account on the cluster by FB-IT). Use of resources is limited by the scheduler. Depending on availability of queues (&#039;partitions&#039;) granted to a user, priority to the system&#039;s resources is regulated. Note that the use of Anunna is not free of charge. List price of CPU time and storage, and possible discounts on that list price for your organisation, can be retrieved from Shared Research Facilities or FB-IT.&lt;br /&gt;
&lt;br /&gt;
= Events =&lt;br /&gt;
&lt;br /&gt;
* [[Courses]] that have happened and are happening&lt;br /&gt;
* [[Downtime]] that will affect all users&lt;br /&gt;
* [[Meetings]] that may affect the policies of Anunna&lt;br /&gt;
&lt;br /&gt;
= Other Software =&lt;br /&gt;
&lt;br /&gt;
== Cluster Management Software and Scheduler ==&lt;br /&gt;
Anunna uses Bright Cluster Manager software for overall cluster management, and Slurm as job scheduler.&lt;br /&gt;
* [[BCM_on_B4F_cluster | Monitor cluster status with BCM]]&lt;br /&gt;
* [[Using_Slurm | Submit jobs with Slurm]]&lt;br /&gt;
* [[node_usage_graph | Be aware of how much work the cluster is under right now with &#039;node_usage_graph&#039;]]&lt;br /&gt;
* [[SLURM_Compare | Rosetta Stone of Workload Managers]]&lt;br /&gt;
&lt;br /&gt;
== Installation of software by users ==&lt;br /&gt;
&lt;br /&gt;
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
* [[Virtual_environment_Python_3.4_or_higher | Setting up and using a virtual environment for Python3.4 or higher ]]&lt;br /&gt;
* [[Installing WRF and WPS]]&lt;br /&gt;
* [[Running scripts on a fixed timeschedule (cron)]]&lt;br /&gt;
&lt;br /&gt;
== Installed software ==&lt;br /&gt;
&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
= Useful Notes = &lt;br /&gt;
&lt;br /&gt;
== Being in control of Environment parameters ==&lt;br /&gt;
&lt;br /&gt;
* [[Using_environment_modules | Using environment modules]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Setting_TMPDIR | Set a custom temporary directory location]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
== Controlling costs ==&lt;br /&gt;
&lt;br /&gt;
* [[SACCT | using SACCT to see your costs]]&lt;br /&gt;
* [[get_my_bill | using the &amp;quot;get_my_bill&amp;quot; script to estimate costs]]&lt;br /&gt;
&lt;br /&gt;
== Management ==&lt;br /&gt;
Product Owner of Anunna is Alexander van Ittersum (Wageningen UR,FB-IT, C&amp;amp;PS). [[User:dawes001 | Gwen Dawes (Wageningen UR, FB-IT, C&amp;amp;PS)]] and [[User:haars001 | Jan van Haarst (Wageningen UR,FB-IT, C&amp;amp;PS)]] are responsible for [[Maintenance_and_Management | Maintenance and Management]] of the cluster.&lt;br /&gt;
&lt;br /&gt;
* [[Roadmap | Ambitions regarding innovation, support and administration of Anunna ]]&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[History_of_the_Cluster | Historical information on the startup of Anunna]]&lt;br /&gt;
* [[Bioinformatics_tips_tricks_workflows | Bioinformatics tips, tricks, and workflows]]&lt;br /&gt;
* [[Parallel_R_code_on_SLURM | Running parallel R code on SLURM]]&lt;br /&gt;
* [[Convert_between_MediaWiki_and_other_formats | Convert between MediaWiki format and other formats]]&lt;br /&gt;
* [[Manual GitLab | GitLab: Create projects and add scripts]]&lt;br /&gt;
* [[Monitoring_executions | Monitoring job execution]]&lt;br /&gt;
* [[Shared_folders | Working with shared folders in the Lustre file system]]&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
* [[Maintenance_and_Management | Maintenance and Management]]&lt;br /&gt;
* [[BCData | BCData]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[About_ABGC | About ABGC]]&lt;br /&gt;
* [[Computer_cluster | High Performance Computing @ABGC]]&lt;br /&gt;
* [[Lustre_PFS_layout | Lustre Parallel File System layout]]&lt;br /&gt;
&lt;br /&gt;
= External links =&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [https://www.wur.nl/en/Value-Creation-Cooperation/Facilities/Wageningen-Shared-Research-Facilities/Our-facilities/Show/High-Performance-Computing-Cluster-HPC-Anunna.htm SRF offers a HPC facilty]&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scientific_Linux Scientific Linux]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Cheatsheet Help with editing Wiki pages]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dawes0011</name></author>
	</entry>
</feed>